Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
nu11secur1ty
GitHub Repository: nu11secur1ty/Kali-Linux
Path: blob/master/Soof-SMS/nozzle.py
1303 views
1
#!/usr/bin/python
2
#nozzle 2024 by nu11secur1ty
3
4
import requests
5
import os
6
import colorama
7
from colorama import Fore, Back, Style
8
9
print(Fore.RED + 'WARNING: Only one SMS for one number daily and WITHOUT adding URL address, for security reasons!\n')
10
print(Style.RESET_ALL)
11
12
13
print(Fore.GREEN + "Give the target phone, for example: +5525255255252\n")
14
phone = input()
15
print(Style.RESET_ALL)
16
17
18
print(Fore.YELLOW + "the message:\n")
19
mess = input()
20
print(Style.RESET_ALL)
21
22
## Sending of the message
23
## When you have a key you can put it on 'key': 'YOUR_KEY'
24
resp = requests.post('https://textbelt.com/text', {
25
'phone': phone,
26
'message': mess,
27
'key': 'textbelt',
28
})
29
print(resp.json())
30
31