├── README.md ├── index.html ├── main.py └── requirements.txt /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | # AnonymousSMS 4 | ### Send Messages to your friends, Anonymously. 5 | ##### ⚠ Warning! This tool was created solely for educational purposes; I am not liable for your actions! ⚠ 6 | 7 |
8 | 9 | ## Installation 10 | To use the tool, execute the following commands: 11 | ```bash 12 | $ git clone https://github.com/AbdulRKB/Anonymous-SMS.git 13 | $ cd Anonymous-SMS 14 | $ pip install -r requirements.txt 15 | $ python main.py 16 | ``` 17 | 18 | 19 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ASMS 7 | 96 | 97 | 98 |

Anonymous SMS

99 |
100 |
101 |
102 | 103 | 104 |
105 |
106 | 107 | 108 |
109 | 110 |
111 | 146 | 147 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import requests, click 2 | 3 | class SMS: 4 | def __init__(self, number, text): 5 | self.number = number 6 | self.text = text 7 | self.url = "https://textbelt.com/text" 8 | self.data = {"phone": number, "message": text, "key": "textbelt"} 9 | 10 | def sendSMS(self): 11 | res = requests.post(self.url, data=self.data).json() 12 | if res['success']: 13 | click.secho("[+] Sent Message Successfully!", fg="green") 14 | else: 15 | click.secho("[-] Couldn't Send Message!", fg="red") 16 | click.secho('[-] '+res['error'], fg="red") 17 | 18 | def main(): 19 | try: 20 | NUMBER = click.prompt('Enter Number (Include country code, e.g. +92)', type=str) 21 | TEXT = str(input("Enter Message: ")) 22 | except: 23 | click.secho("\n[-] Good bye!", fg="red") 24 | exit(0) 25 | sms = SMS(NUMBER, TEXT) 26 | if click.confirm('Do you want to send the message?'): 27 | sms.sendSMS() 28 | else: 29 | click.secho("[-] Good bye!", fg="red") 30 | exit(0) 31 | 32 | 33 | if __name__ == '__main__': 34 | main() -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click==8.1.3 2 | requests==2.28.1 3 | --------------------------------------------------------------------------------