You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A python tool to automate all the efforts that you put on finding the xmlrpc.php file on all of your targets subdomains and then finding the vulnerable methods and then finding the reports on hackerone and medium writeups.
print(f"{Fore.GREEN}[!] {Fore.RED}Potential: {Fore.BLUE} Accounts can be cracked by taking advantage of this method {Fore.GREEN}[!]")
40
+
else:
41
+
print(f"{Fore.GREEN}[!] Method wp.getUserBlogs not found [!]")
42
+
43
+
inp=input("Do you want to check all the available XMLRPC methods that are allowed? (y/any key) : ")
44
+
45
+
ifinp=='y':
46
+
ask=input("Do you want to save this response in a file for futher testing? (y/any key) : ")
47
+
ifask=="y":
48
+
filename=input("Enter the filename for output : ")
49
+
try:
50
+
op=open(filename, "a")
51
+
op.write(postresp)
52
+
print(postresp)
53
+
print(f"\n[I] output saved to {filename} [I]")
54
+
except:
55
+
print(f"{Fore.RED}[!] Unable to open/create a file in this directory. [!]\nTry:\n\t1. Changing the directory.\n\t2. Run this script as root(if not running).")
print("The tool is already configured!\nrun the command rpcscan -h to see help menu.\nNote: If you are not able to run the tool run the command python3 setup.py -r .")
36
+
sys.exit(1)
37
+
except:
38
+
pass
39
+
40
+
currentdir=os.getcwd()
41
+
42
+
try:
43
+
open("rpcscan.py")
44
+
except:
45
+
print("[-] rpcscan.py not found [-]")
46
+
ask=input("Do you want to download rpcscan.py? (y/n) ")
print("The tool is already configured!\nrun the command rpcscan -h to see help menu.\nNote: If you are not able to run the tool run the command python3 setup.py -r .")
35
+
sys.exit(1)
36
+
except:
37
+
pass
38
+
39
+
currentdir=os.getcwd()
40
+
41
+
try:
42
+
open("rpcscan.py")
43
+
except:
44
+
print("[-] rpcscan.py not found [-]")
45
+
ask=input("Do you want to download rpcscan.py? (y/n) ")
0 commit comments