-
Notifications
You must be signed in to change notification settings - Fork 0
/
sms_spoofy.py
79 lines (66 loc) · 2.1 KB
/
sms_spoofy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import os
import sys
import time
from time import sleep
import requests
from os import system
#This script is developed by prachanda.
#This is created for educational purposes only.
#You won't find anything to make this script work.You have to contact me first!
url = "https://citialerts.in/spoof/sendsms.php"
try:
request = requests.get(url, timeout=3)
except (requests.ConnectionError, requests.Timeout) as exception:
print("[!] Oops, It looks like you have no Internet [!]")
sys.exit()
import requests
R = '\033[1;31m'
G = '\033[1;32m'
Y = '\033[1;33m'
C = '\033[1;36m'
W = '\033[1;37m'
def hprint(s):
for c in s + '\n':
sys.stdout.write(c)
sys.stdout.flush()
time.sleep(8.0 / 100)
logo = """
\033[1;32m ____ ____ ___ ___ _____ __ __
\033[1;32m/ ___| | _ \ / _ \ / _ \ | ___| \ \ / /
\033[1;32m\___ \ | |_) | | | | | | | | | | |_ \ V /
\033[1;32m ___) | | __/ | |_| | | |_| | | _| | |
\033[1;32m|____/ |_| \___/ \___/ |_| |_|
\033[1;36m [\033[1;37m+\033[1;36m]\033[1;32m DEVELOPED BY akaprachan \033[1;31m(\033[1;33mprachanda\033[1;31m)
\033[1;36m [\033[1;37m+\033[1;36m]\033[1;32m MADE IN \033[1;31m(\033[1;33mNEPAL\033[1;31m)
"""
system("clear")
print (logo)
hprint(G + ' Starting Spoofy for Sending sms ...')
sleep(2)
print ("")
license = input(G + " Enter License Key" + C + " --> " + Y)
print ("")
name = input(G + " Enter Sender's ID" + C + " --> " + Y)
print ("")
recipient = input(G + " Enter Receiver's number(+1..)" + C + " --> " + Y)
print ("")
message = input(G + " Enter the Message" + C + " --> " + Y)
print("")
myobj = {
'license': (None, license),
'from': (None, name),
'recipient': (None, recipient),
'message': (None, message),
'submit': (None, "submit"),
}
x = requests.post(url, files = myobj)
print(x.text)
response = requests.post('https://citialerts.in/spoof/sendsms.php', files=myobj)
hprint(C + ' Sending email to ' + recipient + ' ...')
print("")
print(G + " " + response.text)
print("")
if "BTC" in response.text:
print(R + " Talk Live With Me --> https://t.me/akaprachanda")
else:
print("")