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) ")
Copy file name to clipboardExpand all lines: SCRIPTS.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,3 +98,4 @@
98
98
| 64\. | RapidScan | The Multi-Tool Web Vulnerability Scanner | [Take me](./RapidScan)
99
99
| 64\. | CredPhish | CredPhish is a PowerShell script designed to invoke credential prompts and exfiltrate passwords. | [Take me](./CredPhish)
100
100
| 64\. | WebStor | This script is designed to perform reconnaissance and vulnerability assessment across websites within an organization's networks | [Take me](./WebStor)
101
+
| 65\. | RPCScan | A python tool to automate all the efforts that you put on finding the xmlrpc | [Take me](./RPCScan)
0 commit comments