@@ -247,7 +247,7 @@ def dracnmap(self):
247
247
def ports (self ):
248
248
self .clear_scr ()
249
249
target = input ('Select a Target IP: ' )
250
- subprocess .run (["sudo nmap" , f" -O -Pn { target } " ])
250
+ subprocess .run (["sudo" , " nmap" , "-O" , " -Pn" , f" { target } " ])
251
251
input ('\n Press Enter to back...' )
252
252
self .info ()
253
253
@@ -380,7 +380,7 @@ def striker(self):
380
380
if choice == "2" :
381
381
site = input ("Enter Site Name (example.com) >> " )
382
382
os .system (f"cd Striker" )
383
- subprocess .run (["sudo python3 striker.py" , f"{ site } " ])
383
+ subprocess .run (["sudo" , " python3" , " striker.py" , f"{ site } " ])
384
384
self .striker ()
385
385
386
386
if choice == "99" :
@@ -428,8 +428,7 @@ def portscanner(self):
428
428
429
429
if choice == "2" :
430
430
ip = input ("Enter Ip >> " )
431
- os .system (f"cd rang3r" )
432
- subprocess .run (["sudo python rang3r.py" , f"--ip { ip } " ])
431
+ subprocess .run (["sudo" , "python" , "./rang3r/rang3r.py" , "--ip" , f"{ ip } " ])
433
432
self .portscanner ()
434
433
435
434
if choice == "99" :
@@ -1644,12 +1643,12 @@ def steganohide(self):
1644
1643
if choice_run == "1" :
1645
1644
file_hide = input ("Enter Filename you want to Embed (1.txt) >> " )
1646
1645
file_to_be_hide = input ("Enter Cover Filename(test.jpeg) >> " )
1647
- subprocess .run (["steghide" , "embed" , f "-cf { file_to_be_hide } " , f "-ef { file_hide } " ])
1646
+ subprocess .run (["steghide" , "embed" , "-cf" , f" { file_to_be_hide } " , "-ef" , f" { file_hide } " ])
1648
1647
self .steganohide ()
1649
1648
1650
1649
if choice_run == "2" :
1651
1650
from_file = input ("Enter Filename From Extract Data >> " )
1652
- subprocess .run ([f "steghide extract" , f" -sf { from_file } " ])
1651
+ subprocess .run (["steghide" , " extract" , " -sf" , f" { from_file } " ])
1653
1652
self .steganohide ()
1654
1653
1655
1654
if choice_run == '99' :
@@ -1672,7 +1671,7 @@ def stegnocracker(self):
1672
1671
if choice == "2" :
1673
1672
filename = input ("Enter Filename:- " )
1674
1673
passfile = input ("Enter Wordlist Filename:- " )
1675
- subprocess .run (["stegcracker" , f" { filename } { passfile } " ])
1674
+ subprocess .run (["stegcracker" , f"{ filename } " , f" { passfile } " ])
1676
1675
self .stegnocracker ()
1677
1676
1678
1677
if choice == "99" :
@@ -1921,7 +1920,7 @@ def instabrute(self):
1921
1920
name = input ("Enter Username >> " )
1922
1921
wordlist = input ("Enter wordword list >> " )
1923
1922
os .system (f"cd instaBrute" )
1924
- subprocess .run (["sudo python instaBrute.py" , f" -u { name } -d { wordlist } " ])
1923
+ subprocess .run (["sudo" , " python" , " instaBrute.py" , "-u" , f" { name } " , "-d" , f" { wordlist } " ])
1925
1924
self .instabrute ()
1926
1925
1927
1926
if choice == "99" :
@@ -1962,7 +1961,7 @@ def faceshell(self):
1962
1961
name = input ("Enter Username >> " )
1963
1962
wordlist = input ("Enter Wordlist >> " )
1964
1963
os .system ("cd Brute_Force" )
1965
- subprocess .run ("python3 Brute_Force.py" , f" -f { name } -l { wordlist } " )
1964
+ subprocess .run ("python3" , " Brute_Force.py" , "-f" , f" { name } " , "-l" , f" { wordlist } " )
1966
1965
self .faceshell ()
1967
1966
1968
1967
if choice == "99" :
@@ -2382,7 +2381,7 @@ def sherlock(self):
2382
2381
if choice == "2" :
2383
2382
name = input ("Enter Username >> " )
2384
2383
os .system ("cd sherlock" )
2385
- subprocess .run (["sudo python3 sherlock" , f" { name } " ])
2384
+ subprocess .run (["sudo" , " python3" , " sherlock" , f"{ name } " ])
2386
2385
self .sherlock ()
2387
2386
2388
2387
if choice == "99" :
@@ -2401,7 +2400,7 @@ def socialscan(self):
2401
2400
2402
2401
if choice == "2" :
2403
2402
name = input ("Enter Username or Emailid (if both then please space between email & username) >> " )
2404
- subprocess .run (["sudo socialscan" , f" { name } " ])
2403
+ subprocess .run (["sudo" , " socialscan" , f"{ name } " ])
2405
2404
self .socialscan ()
2406
2405
2407
2406
if choice == "99" :
@@ -2576,7 +2575,7 @@ def apk2gold(self):
2576
2575
2577
2576
if choice == "2" :
2578
2577
uinput = input ("Enter (.apk) File >> " )
2579
- subprocess .run (["sudo apk2gold" , " {0}" .format (uinput )])
2578
+ subprocess .run (["sudo" , " apk2gold" , "{0}" .format (uinput )])
2580
2579
2581
2580
if choice == "99" :
2582
2581
self .reversetool ()
@@ -2635,7 +2634,7 @@ def slowloris(self):
2635
2634
2636
2635
if choice == "2" :
2637
2636
target_site = input ("Enter Target Site:- " )
2638
- subprocess .run (["slowloris" , f" { target_site } " ])
2637
+ subprocess .run (["slowloris" , f"{ target_site } " ])
2639
2638
self .slowloris ()
2640
2639
2641
2640
if choice == "99" :
@@ -2658,7 +2657,7 @@ def asyncrone(self):
2658
2657
target_ip = input ("Enter Target IP >> " )
2659
2658
target_port = input ("Enter Target port >> " )
2660
2659
os .system (f"cd aSYNcrone" )
2661
- subprocess .run (["sudo ./aSYNcrone" , f" { source_port } { target_ip } { target_port } 1000" ])
2660
+ subprocess .run (["sudo" , " ./aSYNcrone" , f"{ source_port } " , f" { target_ip } " , f" { target_port } " , " 1000" ])
2662
2661
self .asyncrone ()
2663
2662
2664
2663
if choice == "99" :
@@ -2930,7 +2929,7 @@ def xsscon(self):
2930
2929
if choice == "2" :
2931
2930
website = input ("Enter Website >> " )
2932
2931
os .system ("cd XSSCon" )
2933
- subprocess .run (["python3 xsscon.py" , f" -u { website } " ])
2932
+ subprocess .run (["python3" , " xsscon.py" , "-u" , f" { website } " ])
2934
2933
self .xsscon ()
2935
2934
2936
2935
if choice == "99" :
0 commit comments