<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Abysssec Security Research &#187; news</title>
	<atom:link href="http://www.abysssec.com/blog/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.abysssec.com/blog</link>
	<description>Security Researches , Advisories , Coding , Projects , Reversing , Exploitation , Fuzzing</description>
	<lastBuildDate>Tue, 31 Jan 2012 15:52:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>bypassing all anti-virus in the world (Good Bye Detection , Hello Infection)</title>
		<link>http://www.abysssec.com/blog/2011/09/25/bypassing-all-anti-virus-in-the-world-good-bye-detection-hello-infection/</link>
		<comments>http://www.abysssec.com/blog/2011/09/25/bypassing-all-anti-virus-in-the-world-good-bye-detection-hello-infection/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 20:54:55 +0000</pubDate>
		<dc:creator>shahin</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[Pen-test Method]]></category>
		<category><![CDATA[reversing]]></category>
		<category><![CDATA[0/35]]></category>
		<category><![CDATA[100% FUD]]></category>
		<category><![CDATA[Anti virus]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[crypt]]></category>
		<category><![CDATA[Crypter]]></category>
		<category><![CDATA[FUD]]></category>
		<category><![CDATA[heuristic]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[proactive defense]]></category>
		<category><![CDATA[runtime]]></category>
		<category><![CDATA[scantime]]></category>
		<category><![CDATA[sonar]]></category>
		<category><![CDATA[VampCrypt]]></category>

		<guid isPermaLink="false">http://www.abysssec.com/blog/?p=1363</guid>
		<description><![CDATA[hello to all readers Introduction as  you may read in @abysssec in twitter  actually in past a few months we did a cool research on bypassing anti-viruses and got really great result . Bypassing anti-viruses is not a new topic and it’s still about encrypting / decrypting  of a program to being hide from AV [...]]]></description>
			<content:encoded><![CDATA[<p>hello to all readers</p>
<h2>Introduction</h2>
<p>as  you may read in @abysssec in twitter  actually in past a few months we did a cool research on bypassing anti-viruses and got really great result .</p>
<p>Bypassing anti-viruses is not a new topic and it’s still about encrypting / decrypting  of a program to being hide from AV eyes. In past it was really, really easy task to do but AV’s getting smarter and bypassing all anti-viruses with some really unique methods that each of them use is not funny and neither easy to do.</p>
<p>before i go feature i like to have a simple glossary for unfamiliar readers.</p>
<h2>Glossary</h2>
<p>Crypter : the program (mostly GUI) will crypt the malware / bot to make it hide from anti-viruses</p>
<p>Stub : the Decryptor of crypted program</p>
<p>FUD : Fully Un Detectable (FUD = no AV detect)</p>
<p>RUNPE : run the PE without headers in memory</p>
<p>USG : unique stub generator. (make unique stubs)</p>
<p>Binder: will join two file will drop in hdd or mem</p>
<p>Pumper: will increase size of tool</p>
<p>EOF  : end of file(in crypter it need to preserve)</p>
<p>Cloner : will clone the file (Decryptor like in HDD)</p>
<p>Icon Changer: will change the final exe icon</p>
<p>well there are two also different kind of crypters scan time and run time. The good crypter is run time one because as it name says the scan time crypter is just FUD at scan time and when you run it and after real malware decrypted  it will be detect  so not that useful. And the real crypter is the runtime one.</p>
<h2>How it works ?</h2>
<p>if we remove all complex technical info for bypassing all 35 anti-virus around the world it works really sample.</p>
<p>&nbsp;</p>
<p style="text-align: center;"><img class="aligncenter" title="encryption" src="http://img38.imageshack.us/img38/1530/encryption.png" alt="" width="398" height="217" /></p>
<p style="text-align: center;"><img class="aligncenter" title="Decryption" src="http://img263.imageshack.us/img263/6300/decryption.png" alt="" width="398" height="176" /></p>
<p>it simply encrypt  program, decrypt, and  then run it in memory. encryption algorithm is not important and sample ideas are enough to make a crypter fud</p>
<p>but some of mostly used alghortims are :</p>
<div>I. RC4</div>
<div>II. AES</div>
<div>III.DES</div>
<div>IV. TEA</div>
<div>V. XOR</div>
<div>VI. CryptoAPI</div>
<div>VII. blowfish</div>
<div>note that there is important part in your job and that is run the malware safely in memory after decrypting it , and this is done by RunPE . the idea of RunPE comes from great PoC by Tan Chew Keong called dynamic forking of win32 exe : <a href="http://www.security.org.sg/code/loadexe.html">http://www.security.org.sg/code/loadexe.html</a></div>
<p>steps and idea are really sample :</p>
<p>CreateProcess</p>
<p>Find Base address</p>
<p>Virtualalloc</p>
<p>Align sections</p>
<p>Fix thread context</p>
<p>Resume thread</p>
<p>but this is not easy to hide this kind of API chaining from anti-viruses .</p>
<p>so we finished our research by writing a new fud crypter and our crypter is unique and different with public ones .</p>
<p>our crypter is unique and can bypass all 35 exist av right now .</p>
<p>here is list of AV we fully tested our crypters on them .</p>
<pre> - Ad-Aware
 - AhnLab V3 Internet Security
 - ArcaVir
 - Avast
 - Avast 5
 - AVG Free
 - AntiVir (Avira)
 - BitDefender
 - BullGuard
 - VirusBuster Internet Security
 - Clam Antivirus
 - COMODO Internet Security
 - Dr.Web
 - eTrust-Vet
 - F-PROT Antivirus
 - F-Secure Internet Security
 - G Data
 - IKARUS Security
 - Kaspersky Antivirus
 - McAfee
 - MS Security Essentials
 - ESET NOD32
 - Norman
 - Norton Antivirus
 - Panda Security
 - A-Squared
 - Quick Heal Antivirus
 - Rising Antivirus
 - Solo Antivirus
 - Sophos
 - Trend Micro Internet Security
 - VBA32 Antivirus
 - Vexira Antivirus
 - Webroot Internet Security
 - Zoner AntiVirus</pre>
<p>we even tested 10 year ago malware and our crypter can hide them from any anti-virus system .</p>
<p>our crypter comes with some unique features here is some of them</p>
<p>&nbsp;</p>
<pre> - FUD 0 / 35 detection</pre>
<pre> - EOF support</pre>
<pre> - Coded in C/ASM Stub and GUI In C#
 - Compatible with Win 2k/XP/7 x32 and x64
 - Ability of bypassing heuristic and emulators (Kaspersky pro-acvtive defense , Nod32 advanced heuristic , Norton Sonar, Avira heuristic)
 - Command line support
 - Unicode support (chines , russian and so on)
 - Right-to-Left Exploit after crypting you can have .mp3 , doc , pdf , avi or anything as output !!!
 - inbuilt scanner and scanning with 35 anti-virus after cryptring
 - advanced file binder with drop in disk and memory
 - Anti-debug
 - Anti-sandbox
 - advanced encryption : Double XOR , RC4, AES256
 - Advanced resource storage : unique method</pre>
<p>here is some screen shot of GUI :</p>
<p style="text-align: center;"> <img class="aligncenter" title="main" src="http://img821.imageshack.us/img821/5753/77969111.png" alt="" width="236" height="354" /></p>
<p style="text-align: center;"><img class="aligncenter" title="crypter-main" src="http://img829.imageshack.us/img829/6604/52669995.png" alt="" width="236" height="354" /></p>
<p>&nbsp;</p>
<p style="text-align: center;"><img class="aligncenter" title="crypter-extenction-exploit" src="http://img202.imageshack.us/img202/5251/79635338.png" alt="" width="236" height="354" /></p>
<p>&nbsp;</p>
<p style="text-align: center;"> <img class="aligncenter" title="antis" src="http://img607.imageshack.us/img607/3291/13548031.png" alt="" width="236" height="354" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>and finally you can see the actual work in a demo here :</p>
<p><a href="http://abysssec.com/files/VampCrypt.rar  ">http://abysssec.com/files/VampCrypt.rar</a></p>
<p>as we don&#8217;t want harm anyone if you are :</p>
<p>- penetration testing company</p>
<p>- anti virus / IDS company</p>
<p>- any legit company who needs it</p>
<p><strong>&#8221; please note that WE DON&#8221;T give tool / technology to PERSON . ONLY VERIFIED COMPANY &#8221;  </strong></p>
<p>contact : info [at] abysssec.com</p>
<p>and as always you can follow @abysssec in twitter</p>
<p>happy fudding .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abysssec.com/blog/2011/09/25/bypassing-all-anti-virus-in-the-world-good-bye-detection-hello-infection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DEP/ASLR bypass using 3rd party + Clarification</title>
		<link>http://www.abysssec.com/blog/2011/07/03/depaslr-bypass-using-3rd-party-clarification/</link>
		<comments>http://www.abysssec.com/blog/2011/07/03/depaslr-bypass-using-3rd-party-clarification/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 10:04:16 +0000</pubDate>
		<dc:creator>shahin</dc:creator>
				<category><![CDATA[advisory]]></category>
		<category><![CDATA[Exploits / BUG Decryption]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Arashi]]></category>
		<category><![CDATA[ASLR]]></category>
		<category><![CDATA[Bounty]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[Clarification]]></category>
		<category><![CDATA[DEP]]></category>
		<category><![CDATA[exploiting]]></category>
		<category><![CDATA[Ikazuchi]]></category>
		<category><![CDATA[ROP]]></category>
		<category><![CDATA[Sugokunai]]></category>
		<category><![CDATA[tatsumaki]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://www.abysssec.com/blog/?p=1329</guid>
		<description><![CDATA[hello again to all of our great readers . is this post we are going to do some clarification also share and drop some random 0day DEP/ASLR bypass using 3rd parties . due to there is lots of things to say we wrote all the notes as an article called &#8220;The Arashi&#8221;. &#160; Table of [...]]]></description>
			<content:encoded><![CDATA[<p>hello again to all of our great readers .</p>
<p>is this post we are going to do some clarification also share and drop some random 0day DEP/ASLR bypass using 3rd parties .</p>
<p>due to there is lots of things to say we wrote all the notes as an article called &#8220;The Arashi&#8221;.</p>
<p>&nbsp;</p>
<p><img class="aligncenter" title="Storm" src="http://www.puppetgov.com/wp-content/uploads/2010/01/storm.jpg" alt="" width="350" height="308" /></p>
<p>Table of content :</p>
<p>===============================================================</p>
<p>Introduction and warning</p>
<p style="text-align: left;">The Story of Sayonara</p>
<p style="text-align: left;">First Method: ASLR Bitter</p>
<p style="text-align: left;">Second Method: Process Explorer</p>
<p style="text-align: left;">Narly Windbg Extension</p>
<p style="text-align: left;">Mona / PVEFindAddr</p>
<p style="text-align: left;">Ropping this fun DLL</p>
<p style="text-align: left;">First 0day tatsumaki</p>
<p style="text-align: left;">Second (half) 0day Ikazuchi</p>
<p style="text-align: left;">Third 0day Sugokunai</p>
<p style="text-align: left;">Final Note</p>
<p style="text-align: left;">===============================================================</p>
<p style="text-align: left;">and finally  here you can download it from  : <a title="The Arashi" href="http://abysssec.com/files/The_Arashi.pdf" target="_blank">here</a></p>
<p style="text-align: left;"><span style="text-decoration: underline;">note that the offer in paper will be expire in 10 day so if you are verified and need one of modules let us know . </span></p>
<p style="text-align: left;"><span style="text-decoration: underline;">as always feel free to contact us : info [at] abysssec.com</span></p>
<p style="text-align: left;">and also follow @abysssec in twitter</p>
<p style="text-align: left;">&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abysssec.com/blog/2011/07/03/depaslr-bypass-using-3rd-party-clarification/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hacking / Exploiting / Cheating in Online Games</title>
		<link>http://www.abysssec.com/blog/2011/03/21/hacking-exploiting-cheating-in-online-games/</link>
		<comments>http://www.abysssec.com/blog/2011/03/21/hacking-exploiting-cheating-in-online-games/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 15:00:39 +0000</pubDate>
		<dc:creator>shahin</dc:creator>
				<category><![CDATA[advisory]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[reversing]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[aimbot]]></category>
		<category><![CDATA[Aimbot.dll]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[cheat]]></category>
		<category><![CDATA[counter strike]]></category>
		<category><![CDATA[cs 1.6]]></category>
		<category><![CDATA[flashhack]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[half-life]]></category>
		<category><![CDATA[hook]]></category>
		<category><![CDATA[noflash]]></category>
		<category><![CDATA[nosmoke]]></category>
		<category><![CDATA[ring0]]></category>
		<category><![CDATA[shahin]]></category>
		<category><![CDATA[smokehack]]></category>
		<category><![CDATA[speedhack]]></category>
		<category><![CDATA[SXE 11.6]]></category>
		<category><![CDATA[SXE 11.6 Fix 2]]></category>
		<category><![CDATA[SXE-Injected]]></category>
		<category><![CDATA[unhook]]></category>
		<category><![CDATA[VAC]]></category>
		<category><![CDATA[VAC 2]]></category>
		<category><![CDATA[Valve Anti Cheat]]></category>
		<category><![CDATA[wallhack]]></category>
		<category><![CDATA[world of warcraft]]></category>
		<category><![CDATA[wow]]></category>
		<category><![CDATA[WPE]]></category>

		<guid isPermaLink="false">http://www.abysssec.com/blog/?p=1263</guid>
		<description><![CDATA[Hello to all readers. we know that there are thousands and millions of online game players around and we guess lots of them may like to cheat this is our totally offensive research that we did to present in immunity infiltrate and as we missed that so here we go . &#160; This research is about hacking [...]]]></description>
			<content:encoded><![CDATA[<p>Hello to all readers.</p>
<p>we know that there are thousands and millions of online game players around and we guess lots of them may like to cheat this is our totally offensive research that we did to present in <a href="https://www.immunityinc.com/infiltrate/" target="_blank"> <span style="color: #ff0000;"><strong>immunity infiltrate</strong></span></a> and as we missed that so here we go .</p>
<p>&nbsp;</p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2011/03/3-21-2011-6-01-12-PM1.png"><img class="aligncenter" title="3-21-2011 6-01-12 PM" src="http://www.abysssec.com/blog/wp-content/uploads/2011/03/3-21-2011-6-01-12-PM1-300x148.png" alt="" width="300" height="148" /></a></p>
<p>This research is about hacking /exploiting / cheating in online games and is sponsored by <span style="color: #ff0000;"><strong><a href="https://www.immunityinc.com/" target="_blank">immunity</a></strong></span>.</p>
<p>&nbsp;</p>
<p>This is a six part talk and contains:</p>
<p>&nbsp;</p>
<p>Part I   : introduction</p>
<p>Part II: Hacking Online Game Servers</p>
<p>Part III: Exploiting Online Games</p>
<p>Part IV: Cheating in Online games</p>
<p>Part V   : Creating your own cheats</p>
<p>Part VI: Bypassing anti-cheat engines</p>
<p>&nbsp;</p>
<p>Real world cheating is mainly focused on in this talk as it&#8217;s fun and legal.<br />
During this talk we will have a tour into all the ways to manipulate an online game<br />
and we will end up with bypassing the latest anti-cheating technologies and<br />
manipulating the game to our heart&#8217;s desire.</p>
<p>&nbsp;</p>
<p>Our case studies are:</p>
<p>&nbsp;</p>
<p>1 -counter strike (half-life) as game:</p>
<p>&nbsp;</p>
<p style="text-align: center;"><img class="aligncenter" title="Cstrike" src="http://www.straferight.com/photopost/data/500/counter-strike-logo.jpg" alt="" width="240" height="241" /></p>
<p>2- SXE-Injected and Valve-anti cheat (VAC) as anti-cheat engines</p>
<p style="text-align: center;"><img class="aligncenter" title="SXE-Injected" src="http://www.asosyalgenclik.net/sxe.png" alt="" width="240" height="240" /></p>
<p>Our codes will be release soon as soon we can but if you are hurry to use some cheats you can find almost all necessary codes in slides also there is two demos for proofing our research. We really enjoyed this research and it’s done from our side hope you enjoy too.</p>
<p>&nbsp;</p>
<p>You can download slides here:</p>
<p>ppt : <a href="http://www.abysssec.com/blog/wp-content/uploads/2011/03/Exploiting-Online-Games.pptx" target="_blank">Exploiting-Online-Games</a></p>
<p>Font : <a href="http://www.abysssec.com/blog/wp-content/uploads/2011/03/Purisa.zip" target="_blank">in case if you have problem with embedded one </a></p>
<p>PDF : <a href="http://www.abysssec.com/blog/wp-content/uploads/2011/03/Exploiting-Online-Games.pdf" target="_blank">Exploiting-Online-Games</a></p>
<p>PS 1 : video demos are ready but due to those are huge we need to find a better way to compress them after that we will post them here.</p>
<p>PS 2 : Tools will be release after a while .</p>
<p>For getting updates about tools / videos please follow @abysssec in twitter.</p>
<p>&nbsp;</p>
<p>For any question please contact:</p>
<p>&nbsp;</p>
<p>Shahin [at] abysssec.com</p>
<p>&nbsp;</p>
<p>For any other requirement please contact:</p>
<p>&nbsp;</p>
<p>Info [at] abysssec.com</p>
<p>&nbsp;</p>
<p>Kind Regards</p>
<p style="text-align: left;">&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abysssec.com/blog/2011/03/21/hacking-exploiting-cheating-in-online-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MOAUB – Day by Day</title>
		<link>http://www.abysssec.com/blog/2010/09/01/moaub-1/</link>
		<comments>http://www.abysssec.com/blog/2010/09/01/moaub-1/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 11:46:26 +0000</pubDate>
		<dc:creator>shahin</dc:creator>
				<category><![CDATA[advisory]]></category>
		<category><![CDATA[Exploits / BUG Decryption]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[reversing]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[0day]]></category>
		<category><![CDATA[binary analysis]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[exploit-db]]></category>
		<category><![CDATA[metasploit]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[MOAUB]]></category>
		<category><![CDATA[shahin]]></category>
		<category><![CDATA[shahin ramezany]]></category>

		<guid isPermaLink="false">http://www.abysssec.com/blog/?p=1212</guid>
		<description><![CDATA[Yes ! finally MOAUB (Month of Abysssec Undisclosed Bugs) started and finished as well. Good Or Bad we released lots of 0days and binary analyses during a month (September) and you can use these info for owning websites UN-patched clients  or writing more secure applications . here is summary: Day1: Binary Analysis: MOAUB #1 &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Yes ! finally MOAUB (Month of Abysssec Undisclosed Bugs) started and finished as well.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.exploit-db.com/images/MOAUB/MOAUB-1.png" alt="Month of all User Bugs" /></p>
<p>Good Or Bad we released lots of 0days and binary analyses during a month (September) and you can use these info for owning websites UN-patched clients  or writing more secure applications .</p>
<p>here is summary:</p>
<p><strong>Day1:</strong></p>
<p>Binary Analysis:</p>
<p><strong><a href="http://www.exploit-db.com/exploits/14853">MOAUB #1 &#8211; Adobe Acrobat Reader and Flash Player “newclass” invalid pointer</a></strong></p>
<p><strong><a href="http://www.exploit-db.com/download_pdf/14863">MOAUB #1 &#8211; Adobe Acrobat Reader and Flash Player “newclass” invalid pointer &#8211; Binary Analysis</a></strong><strong> </strong></p>
<p><strong>0day:</strong></p>
<p><strong><a href="http://www.exploit-db.com/exploits/14854">MOAUB #1 &#8211; Cpanel PHP Restriction Bypass Vulnerability 0day</a></strong></p>
<p><strong><a href="http://www.exploit-db.com/download_pdf/14864">MOAUB #1 &#8211; Cpanel PHP Restriction Bypass Vulnerability 0day</a></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day2:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/14869">MOAUB #2 &#8211; Apple QuickTime FlashPix NumberOfTiles Remote Code Execution Vulnerability</a></p>
<p><a href="http://www.exploit-db.com/download_pdf/14871">MOAUB #2 &#8211; Apple QuickTime FlashPix NumberOfTiles Vulnerability &#8211; Binary Analysis</a></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/14870">MOAUB #2 &#8211; Rainbowportal Multiple Remote Vulnerabilities</a></p>
<p><a href="http://www.exploit-db.com/download_pdf/14872">MOAUB #2 &#8211; Rainbowportal Multiple Remote Vulnerabilities – 0day</a><strong> </strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day3:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/14878">MOAUB #3 &#8211; Trend Micro Internet Security Pro 2010 ActiveX extSetOwner Remote Code Execution</a><strong> </strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/14881">MOAUB #3 &#8211; Trend Micro Internet Security Pro 2010 ActiveX extSetOwner &#8211; Binary Analysis</a><strong> </strong></p>
<p><strong>0day:</strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/14879">MOAUB #3 &#8211; Visinia 1.3 Multiple Vulnerabilities</a></span><strong> </strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/14880">MOAUB #3 &#8211; Visinia CMS Multiple Vulnerabilities &#8211; 0day</a><strong> </strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day4:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/14886">MOAUB #4 &#8211; Movie Maker Remote Code Execution (MS10-016)</a><strong> </strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/14889">MOAUB #4 – Movie Maker Remote Code Execution (MS10-016) &#8211; Binary Analysis</a></span><strong> </strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/14887">MOAUB #4 &#8211; syndeocms 2.8.02 Multiple Vulnerabilities</a><strong> </strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/14888">MOAUB #4 – Syndeocms 2.8.02 Multiple Vulnerabilities &#8211; 0day</a><strong> </strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day5:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/14895">MOAUB #5 &#8211; Microsoft MPEG Layer-3 Remote Command Execution Exploit</a><strong> </strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/14899">MOAUB #5 &#8211; Microsoft MPEG Layer-3 Remote Command Execution &#8211; Binary Analysis</a><strong> </strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/14898">MOAUB #5 &#8211; IfNuke Multiple Remote Vulnerabilities 0day</a><strong> </strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/14900">MOAUB #5 &#8211; IfNuke Multiple Remote Vulnerabilities 0day</a><strong> </strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day6:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/14916">MOAUB #6 &#8211; HP OpenView NNM webappmon.exe execvp_nc Remote Code Execution</a><strong> </strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/14918">MOAUB #6 – HP OpenView NNM webappmon execvp_nc Remote Code Execution &#8211; Binary Analysis</a><strong> </strong></p>
<p><strong>0day:</strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/14915">MOAUB #6 &#8211; InterPhoto Gallery Multiple Remote Vulnerabilities</a></span><strong> </strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/14917">MOAUB #6 – InterPhoto Gallery Multiple Remote Vulnerabilities &#8211; 0day</a></span><strong> </strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day7:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/14928">MOAUB #7 &#8211; Novell Netware NWFTPD RMD/RNFR/DELE Argument Parsing Buffer overflow</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/14930">MOAUB #7 &#8211; Novell Netware NWFTPD RMD/RNFR/DELE Argument Parsing Buffer overflow</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/14927">MOAUB #7 &#8211; DynPage &lt;= v1.0 Multiple Remote Vulnerabilities &#8211; 0day</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/14929">MOAUB #7 &#8211; DynPage &lt;= v1.0 Multiple Remote Vulnerabilities &#8211; 0day</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day8:</strong></p>
<p>Binary Analysis:</p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/14944">MOAUB #8 &#8211; Microsoft Office Visio DXF File Stack based Overflow</a></span><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/14946">MOAUB #8 &#8211; Microsoft Office Visio DXF File Stack based Overflow &#8211; Binary Analysis</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/14943">MOAUB #8 &#8211; Sirang Web-Based D-Control Multiple Remote Vulnerabilities</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/14945">MOAUB #8 – Sirang Web-Based D-Control Multiple Remote Vulnerabilities &#8211; 0 day</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day9:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/download_pdf/14950">MOAUB #9 &#8211; Mozilla Firefox XSLT Sort Remote Code Execution Vulnerability</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/14949">MOAUB #9 &#8211; Mozilla Firefox XSLT Sort Remote Code Execution Vulnerability</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/14948">FestOS CMS 2.3b Multiple Remote Vulnerabilities</a></span><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/14951">MOAUB #9 – FestOS CMS 2.3b Multiple Remote Vulnerabilities</a></span><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day10:</strong></p>
<p>Binary Analysis:</p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/14956">MOAUB #10 &#8211; Excel RTD Memory Corruption</a></span><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/14966">MOAUB #10 &#8211; Excel RTD Memory Corruption</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/14954">MOAUB #10 &#8211; aradBlog Multiple Remote Vulnerabilities</a></span><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/14957">MOAUB #10 &#8211; aradBlog Multiple Remote Vulnerabilities</a></span><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day11:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/download_pdf/14972">MOAUB #11 &#8211; Microsoft Office Word 2007 sprmCMajority Buffer Overflow</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/14971">MOAUB #11 &#8211; Microsoft Office Word 2007 sprmCMajority Buffer Overflow</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/14969">MOAUB #11 &#8211; ASP Nuke SQL Injection Vulnerability</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/14970">MOAUB #11 &#8211; ASP Nuke Sql Injection Vulnerability</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day12:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/14982">MOAUB #12 &#8211; Adobe Acrobat and Reader &#8220;pushstring&#8221; Memory Corruption</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/14983">MOAUB #12 &#8211; Adobe Acrobat and Reader “pushstring” Memory Corruption</a><strong></strong></p>
<p><strong>0day:</strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/14980">MOAUB #12 &#8211; eshtery CMS SQL Injection Vulnerability</a></span><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/14981">MOAUB #12 &#8211; eshtery CMS SQL Injection Vulnerability</a></span><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day13:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/14992">MOAUB #13 &#8211; RealPlayer FLV Parsing Integer Overflow</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/14994">MOAUB #13 &#8211; RealPlayer FLV Parsing Integer Overflow</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/14991">MOAUB #13 &#8211; Luftguitar CMS Vulnerability: Upload Arbitrary File</a></span><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/14993">MOAUB #13 &#8211; Luftguitar CMS Vulnerability: Upload Arbitrary File</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day14:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/download_pdf/15002">MOAUB #14 &#8211; Novell iPrint Client Browser Plugin ExecuteRequest debug Parameter Stack Overflow</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/exploits/15001">MOAUB #14 &#8211; Novell iPrint Client Browser Plugin ExecuteRequest debug Stack Overflow</a><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/14999">MOAUB #14 &#8211; FreeDiscussionForums v1.0 Multiple Remote Vulnerabilities</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15000">MOAUB #14 &#8211; FreeDiscussionForums v1.0 Multiple Remote Vulnerabilities</a></span><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day15:</strong></p>
<p>Binary Analysis:</p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/15008">MOAUB #15 &#8211; Ipswitch Imail Server List Mailer Reply-To Address Memory Corruption</a></span><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15009">MOAUB #15 &#8211; Ipswitch Imail Server List Mailer Reply-To Address Memory Corruption</a><strong></strong></p>
<p><strong>0day:</strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/15011">MOAUB #15 &#8211; PHP MicroCMS 1.0.1 Multiple Remote Vulnerabilities</a></span><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15012">MOAUB #15 &#8211; PHP MicroCMS 1.0.1 Multiple Remote Vulnerabilities</a></span><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day16:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/15019">MOAUB #16 &#8211; Microsoft Excel HFPicture Record Parsing Remote Code Execution Vulnerability</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15021">MOAUB #16 &#8211; Microsoft Excel HFPicture Record Parsing Remote Code Execution Vulnerability</a><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15020">MOAUB #16 &#8211; mojoportal Multiple Remote Vulnerabilities</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/exploits/15018">MOAUB #16 &#8211; mojoportal Multiple Remote Vulnerabilities</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day17:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/15027">MOAUB #17 &#8211; Firefox Plugin Parameter EnsureCachedAttrParamArrays Remote Code Execution</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15028">MOAUB #17 &#8211; Firefox Plugin Parameter EnsureCachedAttrParamArrays Remote Code Execution</a><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15030">MOAUB #17 &#8211; phpmyfamily Multiple Remote Vulnerabilities</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/15029">MOAUB #17 &#8211; phpmyfamily Multiple Remote Vulnerabilities</a></span><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day18:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/15035">MOAUB #18 &#8211; Apple QuickTime FLI LinePacket Remote Code Execution Vulnerability</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15036">MOAUB #18 &#8211; Apple QuickTime FLI LinePacket Remote Code Execution Vulnerability</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/15037">MOAUB #18 &#8211; CMSimple XSRF Vulnerability</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15038">MOAUB #18- CMSimple XSRF Vulnerability</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day19:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/15042">MOAUB #19 &#8211; Novell iPrint Client Browser Plugin call-back-url Stack Overflow</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15043">MOAUB #19 &#8211; Novell iPrint Client Browser Plugin call-back-url Stack Overflow</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/15044">MOAUB #19 &#8211; JMD-CMS Multiple Remote Vulnerabilities</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15045">MOAUB #19 &#8211; JMD-CMS Multiple Remote Vulnerabilities</a></span><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day20:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/15056">MOAUB #20 &#8211; Java CMM readMabCurveData Stack Overflow</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15057">MOAUB #20 &#8211; Java CMM readMabCurveData Stack Overflow</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15059">MOAUB #20 &#8211; VWD-CMS CSRF Vulnerability</a></span><strong></strong></p>
<p><a href="http://www.exploit-db.com/exploits/15058">MOAUB #20 &#8211; VWD-CMS CSRF Vulnerability</a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong> </strong></p>
<p><strong>Day21:</strong></p>
<p>Binary Analysis:</p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15066">MOAUB #21 &#8211; Microsoft Excel WOPT Record Parsing Heap Memory Corruption</a></span><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/15065">MOAUB #21 &#8211; Microsoft Excel WOPT Record Parsing Heap Memory Corruption</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/15067">MOAUB #21 &#8211; Personal.Net Portal Multiple Vulnerabilities</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15068">MOAUB #21 &#8211; Personal.Net Portal Multiple Vulnerabilities</a></span><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day22:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/15076">MOAUB #22 &#8211; Adobe Shockwave Director tSAC Chunk Memory Corruption</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15077">MOAUB #22 &#8211; Adobe Shockwave Director tSAC Chunk Memory Corruption</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15079">MOAUB #22 &#8211; gausCMS Multiple Vulnerabilities</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/exploits/15078">MOAUB #22 &#8211; gausCMS Multiple Vulnerabilities</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day23:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/15086">MOAUB #23 &#8211; Adobe Acrobat Reader and Flash &#8216;newfunction&#8217; Remote Code Execution Vulnerability</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15087">MOAUB #23 &#8211; Adobe Acrobat Reader and Flash &#8216;newfunction&#8217; Remote Code Execution Vulnerability</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15089">MOAUB #23 &#8211; Microsoft Excel HFPicture Record Parsing Memory Corruption (0day)</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/exploits/15088">MOAUB #23 &#8211; Microsoft Excel HFPicture Record Parsing Memory Corruption (0day)</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day24:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/15094">MOAUB #24 &#8211; Microsoft Excel OBJ Record Stack Overflow</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15095">MOAUB #24 &#8211; Microsoft Excel OBJ Record Stack Overflow</a><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/15096">MOAUB #24 &#8211; Microsoft MPEG Layer-3 Audio Decoder Division By Zero</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15097">MOAUB #24 &#8211; Microsoft MPEG Layer-3 Audio Decoder Division By Zero</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day</strong><strong>25</strong><strong>:</strong></p>
<p>Binary Analysis:</p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/15104">MOAUB #25 &#8211; Mozilla Firefox CSS font-face Remote Code Execution Vulnerability</a></span><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15105">MOAUB #25 &#8211; Mozilla Firefox CSS font-face Remote Code Execution Vulnerability</a><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/15106">MOAUB #25 &#8211; VisualSite CMS v1.3 Multiple Vulnerabilities</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15107">MOAUB #25 &#8211; VisualSite CMS v1.3 Multiple Vulnerabilities</a></span><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day</strong><strong>26</strong><strong>:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/15112">MOAUB #26 &#8211; Microsoft Cinepak Codec CVDecompress Heap Overflow</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15113">MOAUB #26 &#8211; Microsoft Cinepak Codec CVDecompress Heap Overflow</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/15114">MOAUB #26 &#8211; Zenphoto Config Update and Command Execute Vulnerability</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15115">MOAUB #26 &#8211; Zenphoto Config Update and Command Execute Vulnerability</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day</strong><strong>27</strong><strong>:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/15122">MOAUB #27 &#8211; Microsoft Internet Explorer MSHTML Findtext Processing Issue</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/download_pdf/15123">MOAUB #27 &#8211; Microsoft Internet Explorer MSHTML Findtext Processing Issue</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15125">MOAUB #27 &#8211; ndCMS Sql Injection Vulnerability</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/exploits/15124">MOAUB #27 &#8211; ndCMS Sql Injection Vulnerability</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day</strong><strong>28</strong><strong>:</strong></p>
<p>0day:</p>
<p><a href="http://www.exploit-db.com/download_pdf/15142">MOAUB #28 &#8211; JE CMS 1.0.0 Bypass Authentication by SQL Injection Vulnerability</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/15141">MOAUB #28 &#8211; JE CMS 1.0.0 Bypass Authentication by SQL Injection Vulnerability</a></span><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/15139">MOAUB #28 &#8211; AtomatiCMS Upload Arbitrary File Vulnerability</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15140">MOAUB #28 &#8211; AtomatiCMS Upload Arbitrary File Vulnerability</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day29:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/download_pdf/15149">MOAUB #29 &#8211; Microsoft Excel SxView Record Parsing Heap Memory Corruption</a><strong></strong></p>
<p><span style="text-decoration: underline;"><a href="http://www.exploit-db.com/exploits/15148">MOAUB #29 &#8211; Microsoft Excel SxView Record Parsing Heap Memory Corruption</a></span><strong></strong></p>
<p><strong> </strong></p>
<p><strong>Day30:</strong></p>
<p>Binary Analysis:</p>
<p><a href="http://www.exploit-db.com/exploits/15158">MOAUB #30 &#8211; Microsoft Unicode Scripts Processor Remote Code Execution</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15159">MOAUB #30 &#8211; Microsoft Unicode Scripts Processor Remote Code Execution</a><strong></strong></p>
<p><strong>0day:</strong></p>
<p><a href="http://www.exploit-db.com/exploits/15160">MOAUB #30 &#8211; ASPMass Shopping Cart Vulnerability File Upload CSRF</a><strong></strong></p>
<p><a href="http://www.exploit-db.com/download_pdf/15161">MOAUB #30 &#8211; ASPMass Shopping Cart Vulnerability File Upload CSRF</a><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Press :</p>
<div id="_mcePaste"><a title="Exploit-Database" href="http://www.exploit-db.com/moaub-0days-binary-analysis-exploit-pocs/" target="_blank">Exploit-Database</a></div>
<div id="_mcePaste"><a title="Dark-Reading" href="http://www.darkreading.com/vulnerability_management/security/vulnerabilities/showArticle.jhtml?articleID=227300290" target="_blank">Dark-Reading</a></div>
<div id="_mcePaste"><a title="Network-Asia" href="http://security.networksasia.net/content/abysssec-outs-linux-vulnerability" target="_blank">NetworkAsia</a></div>
<div id="_mcePaste"><a title="ITBusinessedge" href="http://www.itbusinessedge.com/cm/blogs/poremba/get-out-the-bug-spray-september-is-the-month-of-bugs" target="_blank">ITBusinessedge</a></div>
<div id="_mcePaste"><a title="ComputerWorld" href="http://www.computerworld.com/s/article/9182999/Researchers_slate_month_of_bugs_launch_for_Wednesday" target="_blank">ComputerWorld</a></div>
<div id="_mcePaste"><a title="Theinquirer" href="http://www.theinquirer.net/inquirer/news/1730813/researchers-launch-bug-hunt?WT.rss_f=Home&amp;WT.rss_a=Researchers+launch+a+bug+hunt" target="_blank">Theinquirer</a></div>
<div>And &#8230;</div>
<div>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
</div>
<p>PS : during these project and maybe we made some technical and non-technical mistakes due to complexly and compaction of this work and we hope we can fix some of them.</p>
<p style="text-align: left;">at end we are happy with result and your kind feedback.</p>
<p style="text-align: left;">for sure we will have really more interesting projects soon as soon possible and we think you will like them as well .</p>
<p style="text-align: left;">please follow me on twitter with @abysssec for other news projects and stay tunned for more projects .</p>
<p style="text-align: left;">as always finally if you have any question feel free to contact :</p>
<p>shahin [at] abysssec.com</p>
<p style="text-align: left;">info [at] abysssec.com</p>
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://www.abysssec.com/blog/2010/09/01/moaub-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Month of Abysssec Undisclosed bugs coming !</title>
		<link>http://www.abysssec.com/blog/2010/08/17/month-of-abysssec-undisclosed-bugs-coming/</link>
		<comments>http://www.abysssec.com/blog/2010/08/17/month-of-abysssec-undisclosed-bugs-coming/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 19:26:18 +0000</pubDate>
		<dc:creator>shahin</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[0day]]></category>
		<category><![CDATA[binary analysis]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[exploit-db]]></category>
		<category><![CDATA[metasploit]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[MOAUB]]></category>
		<category><![CDATA[shahin]]></category>
		<category><![CDATA[shahin ramezany]]></category>

		<guid isPermaLink="false">http://www.abysssec.com/blog/?p=1204</guid>
		<description><![CDATA[hello to all after a while we have big surprise for you . We are about to unleash our Month Of Abysssec Undisclosed Bugs on exploit-db. Starting on the 1st of September, we will release a collection of 0days,  web application vulnerabilities, and detailed binary analysis (and pocs) for recently released advisories by vendors such as Microsoft, Mozilla, Sun, Apple, Adobe, HP, Novel, etc. [...]]]></description>
			<content:encoded><![CDATA[<p>hello to all after a while we have big surprise for you .</p>
<p><img class="aligncenter" title="MOUAB" src="http://www.exploit-db.com/images/MOAUB/MOAUB-0.png" alt="" width="600" height="220" /></p>
<p>We are about to unleash our <span style="color: #ff0000;">Month Of Abysssec Undisclosed Bugs </span>on exploit-db. Starting on the 1st of September, we will release a collection of 0days,  web application vulnerabilities, and detailed binary analysis (and pocs) for recently released advisories by vendors such as <span style="color: #ff0000;">Microsoft</span>, <span style="color: #ff0000;">Mozilla</span>, <span style="color: #ff0000;">Sun</span>, <span style="color: #ff0000;">Apple</span>, <span style="color: #ff0000;">Adobe</span>,<span style="color: #ff0000;"> HP</span>, <span style="color: #ff0000;">Novel</span>, etc. The 0day collection includes PoCs and Exploits for <span style="color: #ff6600;">Microsoft Excel</span>, <span style="color: #ff6600;">Internet Explorer</span>,<span style="color: #ff6600;">Microsoft codecs</span>, <span style="color: #ff6600;">Cpanel </span>and others.  The MOAUB will be hosted on the <a href="http://exploit-db.com">Exploit Databas</a>e, and will be updated on a daily basis. Get your hard-hats on, your VM’s and debugging tools organized – it’s gonna be a an intensive ride!</p>
<p>this is link on exploit-db  :</p>
<p><a href="http://www.exploit-db.com/moaub-0days-binary-analysis-exploit-pocs/">http://www.exploit-db.com/moaub-0days-binary-analysis-exploit-pocs/</a></p>
<p>Follow <a title="Abysssec Security Team" rel="nofollow" href="http://twitter.com/Abysssec" target="_blank">Abysssec</a> twitter to keep updated!</p>
<p>stay tunned .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abysssec.com/blog/2010/08/17/month-of-abysssec-undisclosed-bugs-coming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Past, Present, Future of Windows Exploitation</title>
		<link>http://www.abysssec.com/blog/2010/05/08/past-present-future-of-windows-exploitation/</link>
		<comments>http://www.abysssec.com/blog/2010/05/08/past-present-future-of-windows-exploitation/#comments</comments>
		<pubDate>Fri, 07 May 2010 19:33:10 +0000</pubDate>
		<dc:creator>shahin</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[alex]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[ASLR]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[buffer overflow]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[dave]]></category>
		<category><![CDATA[david]]></category>
		<category><![CDATA[DEP]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[exploitation]]></category>
		<category><![CDATA[gs]]></category>
		<category><![CDATA[heap]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[mark]]></category>
		<category><![CDATA[metasploit]]></category>
		<category><![CDATA[moore]]></category>
		<category><![CDATA[NX]]></category>
		<category><![CDATA[overflow]]></category>
		<category><![CDATA[pool]]></category>
		<category><![CDATA[reverse engineering]]></category>
		<category><![CDATA[reversing]]></category>
		<category><![CDATA[safeseh]]></category>
		<category><![CDATA[sotirov]]></category>
		<category><![CDATA[stack]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[worm]]></category>

		<guid isPermaLink="false">http://www.abysssec.com/blog/?p=1081</guid>
		<description><![CDATA[hi all this is v0.1 of this post and in this post i&#8217;m going to have a review and brief history on exploitation with focus on windows . this post will be  done III part : part I     : brief history of buffer overflow part II   : history of windows exploitation from windows 2000 to [...]]]></description>
			<content:encoded><![CDATA[<p>hi all</p>
<p>this is v0.1 of this post and in this post i&#8217;m going to have a review and brief history on exploitation with focus on windows .</p>
<p>this post will be  done III part :</p>
<ul>
<li>part I     : brief history of buffer overflow</li>
<li>part II   : history of windows exploitation from windows 2000 to windows 7</li>
<li>part III : feature of exploitation</li>
</ul>
<h2 style="text-align: center;"><strong>Part I  : brief history of buffer overflow</strong></h2>
<p><strong><span style="color: #ff00ff;">Starring : Robert morris , Aleph_one , Solar designer , Matt Conover , Casper Dik</span></strong></p>
<p>it&#8217;s been long time after :</p>
<p>morris worm in 1988 (first known computer worm that used a buffer overflow to attack)</p>
<p style="text-align: center;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/04/robert_morris_worm_author.jpg"><img class="aligncenter size-medium wp-image-1086" title="robert_morris_worm_author" src="http://www.abysssec.com/blog/wp-content/uploads/2010/04/robert_morris_worm_author-300x282.jpg" alt="" width="240" height="226" /></a></p>
<p>aleph one wrote Smashing The Stack For Fun Profit in phrack 49 in ~1996<br />
<a href="http://www.abysssec.com/blog/wp-content/uploads/2010/04/aleph-one.png"></a></p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/04/aleph-one.png"><img class="aligncenter size-full wp-image-1088" title="aleph-one" src="http://www.abysssec.com/blog/wp-content/uploads/2010/04/aleph-one.png" alt="" width="169" height="280" /></a></p>
<p>so he start taking about detailed strcpy exploitation :</p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/5-7-2010-1-59-49-PM.png"><img class="aligncenter size-full wp-image-1108" title="5-7-2010 1-59-49 PM" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/5-7-2010-1-59-49-PM.png" alt="" width="243" height="269" /></a></p>
<p>Matt Conover wrote first detailed heap overflow tutorial in 1999 <a href="http://www.w00w00.org/files/articles/heaptut.txt" target="_blank">heap tut</a></p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/04/25384_361687701993_524586993_4263920_3640767_n.jpg"><img class="aligncenter size-full wp-image-1090" title="matt conover" src="http://www.abysssec.com/blog/wp-content/uploads/2010/04/25384_361687701993_524586993_4263920_3640767_n.jpg" alt="" width="106" height="119" /></a>and solar designer wrote first generic heap exploit on windows <a href="http://www.openwall.com/advisories/OW-002-netscape-jpeg/" target="_blank">netscape exploit</a></p>
<p style="text-align: center;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/04/Solar-Designer.jpg"><img class="aligncenter size-full wp-image-1091" title="Solar Designer" src="http://www.abysssec.com/blog/wp-content/uploads/2010/04/Solar-Designer.jpg" alt="" width="240" height="224" /></a></p>
<p>==============================================<br />
at that times because of really low OS memory protections and also low application specific protections (can also called CPU and compilers problem !) , a poor input validation and an insecure memory copy was enough to corrupting memory (mostly in stack area) and overwriting  a function return address and getting control of instruction pointer (IP , EIP) and then by storing malicious code (called shellcode) and using a pointer (mostly stack pointer (ESP)) execution flow can be change and pointer to attacker malicious (or educational ;) )  code.</p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/04/nopsled.png"><img class="aligncenter size-medium wp-image-1093" title="nopsled" src="http://www.abysssec.com/blog/wp-content/uploads/2010/04/nopsled-120x300.png" alt="" width="120" height="300" /></a></p>
<p>so OS developers and security guys had to think about memory protections and casper dik in nov 1996 wrote a kernel run-time patch to implement non-executable-stacks for Solaris 2.4 to 2.5.1 <a href="http://seclists.org/bugtraq/1996/Nov/57" target="_blank">http://seclists.org/bugtraq/1996/Nov/57</a></p>
<p style="text-align: center;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/04/4-30-2010-11-22-40-PM.png"><img class="aligncenter size-medium wp-image-1096" title="Casper" src="http://www.abysssec.com/blog/wp-content/uploads/2010/04/4-30-2010-11-22-40-PM-300x291.png" alt="" width="240" height="233" /></a></p>
<p>and later solar designer released same thing to remove executable permission for stack on the linux <a href="http://marc.info/?m=87602167420762" target="_blank">here</a></p>
<p>and around ~2000 solar designer made <strong>return-to-libc</strong> attacks to return in executable page and functions in memory for bypassing non-executable memory. the basic idea was  after controlling executing flow return to some function like system() and executing a single command or &#8230;. but there was a problem and the attacker was limit in payload selection and can&#8217;t use advanced payloads .</p>
<p>so around ~2000 we had :</p>
<ul>
<li>basic / intermediate stack overflows</li>
<li>basic heap overflows</li>
<li>basic / intermediate format strings (killed so soon !)</li>
<li>basic memory protections</li>
<li>basic bypass memory protections</li>
<li>also some other type of memory corruptions (not so general)</li>
</ul>
<p>=========================================</p>
<h2 style="text-align: center;"><strong>part II  : history of windows exploitation from windows 2000 to windows 7</strong></h2>
<p><strong><strong><span style="color: #ff00ff;">Starring : Alexander Sotirov , Mark Dowd , John McDonald, Chris Valasek , Chris Anley , Brett Moore , David litchfield , Nicolas Waisman , Dave Aitel , Halvar Flake ,  Cesar Cerrudo </span><span style="font-weight: normal;"><span style="color: #ff00ff;">, </span><strong><span style="color: #ff00ff;">Matt Miller , ken johnson , S.K Chong ,  Dionysus Blazakis  , hd moore , FlashSky , Ruben Santamarta .</span></strong></span></strong></strong></p>
<p>welcome to windows world !</p>
<p>i wanna start from windows 2000  final version of NT family because i think older windows are not interesting enough to talk about .</p>
<p style="text-align: left;"><strong><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/win2000.jpg"><img class="aligncenter size-medium wp-image-1103" title="win2000" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/win2000-300x209.jpg" alt="" width="210" height="146" /></a>exploit developers golden age :<span style="font-weight: normal;"> microsoft was is supporting and making money from windows 2k and unfortunately forgot  protect you from buffer overflow attacks . so old and classic attacks works like a charm and just  maybe in some case  we saw very complex  and smart vulnerabilities but exploitation by itself was not that hard (maybe just some application specific filters / protections ) </span></strong></p>
<p style="text-align: left;"><strong><span style="font-weight: normal;">so because of that poor protection we saw great worms like : </span></strong></p>
<p style="text-align: left;"><strong><span style="font-weight: normal;"><a href="http://en.wikipedia.org/wiki/Blaster_(computer_worm)" target="_blank">blaster worm</a> one of historic worms ever that used a RPC vuln for attack and fixed in <a href="http://www.microsoft.com/technet/security/bulletin/MS03-026.mspx">http://www.microsoft.com/technet/security/bulletin/MS03-026.mspx</a> </span></strong></p>
<p style="text-align: left;">and maybe you can remember : &#8220;<em>billy gates why do you make this possible ? Stop making money</em> <em>and fix your software!! &#8220;</em></p>
<p style="text-align: left;"><em>and this cool picture :</em></p>
<p style="text-align: left;"><em><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/Windows_XP_Emergency_Shutdown.png"><img class="aligncenter size-full wp-image-1104" title="Windows_XP_Emergency_Shutdown" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/Windows_XP_Emergency_Shutdown.png" alt="" width="282" height="258" /></a><br />
</em></p>
<p style="text-align: left;"><a href="http://en.wikipedia.org/wiki/SQL_Slammer" target="_blank">slammer worm</a> a great and fast worm that used an SQL Server buffer overflow for attack. that fixed after 6 month !!! in :</p>
<p style="text-align: left;"><a href="http://www.microsoft.com/technet/security/bulletin/MS02-039.mspx">http://www.microsoft.com/technet/security/bulletin/MS02-039.mspx</a></p>
<p style="text-align: left;"><strong><span style="font-weight: normal;"><a href="http://en.wikipedia.org/wiki/Sasser_(computer_worm)" target="_blank">sasser worm</a> another great worm that used lsass remote overflow vulnerability and fixed in: <a href="http://www.microsoft.com/technet/security/bulletin/MS04-011.mspx">http://www.microsoft.com/technet/security/bulletin/MS04-011.mspx</a></span></strong></p>
<p style="text-align: left;">but there is a question these worms targeted windows XP and 2003 as well too ? yes !</p>
<p style="text-align: left;">because microsoft did  that great job in windows XP service pack 0 and 1 as well as windows 2003 service pack 0.</p>
<p style="text-align: left;">also we had lots of great and reliable exploits like :</p>
<p style="text-align: left;">DCOM RCP Exploit  <a href="http://www.exploit-db.com/exploits/103" target="_blank">here</a> by flashsky (xfocus guy)</p>
<p style="text-align: left;">MS Windows (RPC DCOM) Remote Exploit <a href=" http://www.exploit-db.com/exploits/66" target="_blank">here</a> by hd moore</p>
<p style="text-align: left;">Great Kill Bill exploit <a href="http://www.phreedom.org/solar/exploits/msasn1-bitstring/" target="_blank">here</a> (targeting ANS.1) by Alexander Sotirov</p>
<p style="text-align: left;">MS Windows Plug-and-Play <a href="http://www.exploit-db.com/exploits/1149" target="_blank">here</a> by sl0ppy and houseofdabus and others .</p>
<p style="text-align: left;">also some GUI tools for easy exploitation for those even don&#8217;t know how they can compile and run an exploit like : <a href="http://www.leetupload.com/dbindex2/index.php?dir=Local%20Root%20Exploits/RPC%20GUI%20v2%20-%20r3L4x/&amp;file=RPC%20GUI%20v2%20-%20r3L4x.exe">RPC GUI v2 &#8211; r3L4x.exe</a></p>
<p style="text-align: left;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/connect2.gif"><img class="aligncenter size-medium wp-image-1107" title="connect2" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/connect2-300x246.gif" alt="" width="300" height="246" /></a></p>
<p style="text-align: left;">but why we had lots of juicy and clicky &#8211; clicky exploits ? there is two main reasons :</p>
<p style="text-align: left;">1- poor generic OS / application layer  memory protection</p>
<p style="text-align: left;">2- cool generic public memory exploitation related researches</p>
<p style="text-align: left;">
<h3><strong>classic windows stack overflows </strong></h3>
<p style="text-align: left;">lots of great and detailed papers in this area i just wanna link a few of them :</p>
<p>1- Win32 Buffer Overflows (Location, Exploitation and Prevention) by dark spyrit in 1999</p>
<p><a href="http://www.phrack.com/issues.html?issue=55&amp;id=15#article">http://www.phrack.com/issues.html?issue=55&amp;id=15#article</a></p>
<p style="text-align: left;">2- S.K Chong Win32 Stack Based Buffer Overflow Walkthrough  in july 2002</p>
<p style="text-align: left;"><a href="http://www.scan-associates.net/papers/win32_bo_walkthrough.txt">http://www.scan-associates.net/papers/win32_bo_walkthrough.txt</a></p>
<p style="text-align: left;">3- Nish Bhalla&#8217;s series on  Writing Stack Based Overflows on Windows in 2005</p>
<p style="text-align: left;"><a href="http://www.packetstormsecurity.org/papers/win/">http://www.packetstormsecurity.org/papers/win/</a></p>
<p style="text-align: left;">if i want to have brief description of them they all are talking about finding a reliable return address in  a reliable Dynamic Linked Library (MOST in OS DLL&#8217;s kernel32.dll ntdll.dll shell32.dll user32.dll and &#8230; ) and then after overwriting a function return address by sending big value to not good checked input variable and getting program execution flow redirect that flow to address in DLL that address is mostly JMP / call /  PUSH ESP (stack pointer)  or EBP (base pointer) because most of time in classic stack overflow attacker store her / his malicious code in the stack and a JMP / CALL / PUSH ESP RET will lead his / her to jump to start of shellcode .thats all!</p>
<h3><strong>classic windows heap overflows</strong></h3>
<p>1 &#8211;  Third Generation Exploitation smashing heap on 2k by halvar Flake in 2002</p>
<p><a href="http://www.blackhat.com/presentations/win-usa-02/halvarflake-winsec02.ppt" target="_blank">http://www.blackhat.com/presentations/win-usa-02/halvarflake-winsec02.ppt</a></p>
<p>2- Exploiting the MSRPC Heap Overflow two part by Dave Aitel (MS03-026) sep 2003</p>
<p><a href="http://freeworld.thc.org/root/docs/exploit_writing/msrpcheap.pdf" target="_blank">http://freeworld.thc.org/root/docs/exploit_writing/msrpcheap.pdf</a></p>
<p><a href="http://freeworld.thc.org/root/docs/exploit_writing/msrpcheap2.pdf" target="_blank">http://freeworld.thc.org/root/docs/exploit_writing/msrpcheap2.pdf</a></p>
<p>3- david litchfield did a great detailed penetration in black hat 2004</p>
<p><a href="https://www.blackhat.com/presentations/win-usa-04/bh-win-04-litchfield/bh-win-04-litchfield.ppt" target="_blank">https://www.blackhat.com/presentations/win-usa-04/bh-win-04-litchfield/bh-win-04-litchfield.ppt</a></p>
<p>if i want to have brief description of them they all are talking about exploiting unlink macro and using write4 (where + what) and actually ability of writing 4byte (32bit ) of selected address in memory by using specific function pointers like :</p>
<ul>
<li><strong>UnhandledExceptionFilter</strong></li>
<li><strong>VectoredExceptionHandling</strong></li>
<li><strong>RtlEnterCriticalSection</strong></li>
<li><strong>TEB      Exception Handler</strong></li>
<li><strong>Application specific function      pointer</strong></li>
</ul>
<p>&#8230;..</p>
<h3><strong>kernel based Windows overflows (not so classic)</strong></h3>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p>because of <strong>Inexorability</strong> of  this type of attacks i want to share all of most notable history in this area here : (note that  i will back to heap and stack with protections after in it)</p>
<p>=================</p>
<p>First noticeable whitepaper that stated how to attack kernel based vulns on</p>
<p>windows was done by a Polish group called &#8220;sec-labs&#8221; around 2003 .</p>
<p><a href="http://www.derkeiler.com/Mailing-Lists/Full-Disclosure/2003-08/0101.html" target="_blank">http://www.derkeiler.com/Mailing-Lists/Full-Disclosure/2003-08/0101.html</a></p>
<p>sec-lab old whitepaper : <a href="http://www.artofhacking.com/tucops/hack/windows/live/aoh_win32dcv.htm" target="_blank">http://www.artofhacking.com/tucops/hack/windows/live/aoh_win32dcv.htm</a></p>
<p>sec-lab old exploit : <a href="http://www.securityfocus.com/bid/8329/info" target="_blank">http://www.securityfocus.com/bid/8329/info</a></p>
<p>(thanks Piotr Bania !)</p>
<p>1- Windows Local Kernel Exploitation by S.K Chong in 2004 (based on sec-lab research)</p>
<p><a href="http://www.packetstormsecurity.org/hitb04/hitb04-sk-chong.pdf">http://www.packetstormsecurity.org/hitb04/hitb04-sk-chong.pdf</a></p>
<p><a href="http://www.scan-associates.net/papers/navx.c" target="_blank">http://www.scan-associates.net/papers/navx.c</a></p>
<p>2-Windows interrupt context kernel overflow exploit BY FLASHSKY in 2004</p>
<p>3- How to exploit Windows kernel memory pool in 2005 by SoBeIt</p>
<p><a href="http://packetstormsecurity.nl/Xcon2005/Xcon2005_SoBeIt.pdf" target="_blank">http://packetstormsecurity.nl/Xcon2005/Xcon2005_SoBeIt.pdf</a></p>
<p>4- in 2005 eeye security published great paper about exploiting remote kernel overflows in windows</p>
<p><a href="http://research.eeye.com/html/papers/download/StepIntoTheRing.pdf" target="_blank">http://research.eeye.com/html/papers/download/StepIntoTheRing.pdf</a></p>
<p>5- later in 2005 matt miller published great article called Kernel-mode Payloads on Windows in uninformed</p>
<p><a href="http://www.uninformed.org/?v=3&amp;a=4&amp;t=pdf" target="_blank">http://www.uninformed.org/?v=3&amp;a=4&amp;t=pdf</a></p>
<p>6- in 2006 johny cache hd moore and matt miller released Exploiting 802.11 Wireless Driver Vulnerabilities on Windows</p>
<p><a href="http://www.uninformed.org/?v=6&amp;a=2&amp;t=pdf" target="_blank">http://www.uninformed.org/?v=6&amp;a=2&amp;t=pdf</a></p>
<p>7- in 2007 Jonathan Lindsay published and did a presentation in BH US 2007 called Attacking the Windows Kernel</p>
<p><a href="https://www.blackhat.com/presentations/bh-usa-07/Lindsay/Whitepaper/bh-usa-07-lindsay-WP.pdf">http://www.blackhat.com/presentations/bh-usa-07/Lindsay/Whitepaper/bh-usa-07-lindsay-WP.pdf</a></p>
<p>8- same in  BH US 2007 Yuriy Bulygin did a peresentiation called Remote and Local Exploitation of Network Drivers</p>
<p><a href="http://www.blackhat.com/presentations/bh-usa-07/Bulygin/Presentation/bh-usa-07-bulygin.pdf" target="_blank">http://www.blackhat.com/presentations/bh-usa-07/Bulygin/Presentation/bh-usa-07-bulygin.pdf</a></p>
<p>9- in 2007 also Ruben Santamarta wrote Exploiting Comon Flaws In Drivers</p>
<p><a href="http://www.reversemode.com/index.php?option=com_content&amp;task=view&amp;id=38&amp;Itemid=1" target="_blank">http://www.reversemode.com/index.php?option=com_content&amp;task=view&amp;id=38&amp;Itemid=1</a></p>
<p>10- in 2008 Justin Seitz  wrote a paper and called I2OMGMT Driver Impersonation Attack</p>
<p><a href="http://www.immunityinc.com/downloads/DriverImpersonationAttack_i2omgmt.pdf" target="_blank">http://www.immunityinc.com/downloads/DriverImpersonationAttack_i2omgmt.pdf</a></p>
<p>in that paper Justin  talked about new type of kernel attacks and about i2OMGMT bug that founded by ruben.</p>
<p>11- later in 2008 Kostya Kortchinsky did a presentation called Real World Kernel Pool Exploitation</p>
<p><a href="http://sebug.net/paper/Meeting-Documents/syscanhk/KernelPool.pdf" target="_blank">http://sebug.net/paper/Meeting-Documents/syscanhk/KernelPool.pdf</a></p>
<p>in that presentation kostya  talked about how he wrote exploit for ms08-001 (Microsoft marked it as not-exploitable !)</p>
<p>12- later in 2008 Cesar Cerrudo wrote Token Kidnapping and a super reliable exploit for windows 2k3 and 2k8</p>
<ul>
<li>artice :</li>
<li><a href="http://www.argeniss.com/research/TokenKidnapping.pdf" target="_blank">http://www.argeniss.com/research/TokenKidnapping.pdf</a></li>
<li>poc 2k3:</li>
<li><a href="http://www.argeniss.com/research/Churrasco.zip" target="_blank">http://www.argeniss.com/research/Churrasco.zip</a></li>
<li>poc 2k8:</li>
<li><a href="http://www.argeniss.com/research/Churrasco2.zip" target="_blank">http://www.argeniss.com/research/Churrasco2.zip</a></li>
</ul>
<p>13- again later in 2008 mxtone wrote a paper called Analyzing local privilege escalations in win32k<br />
<a href="http://www.argeniss.com/research/Churrasco2.zip" target="_blank">http://www.uninformed.org/?v=10&amp;a=2&amp;t=pdf</a></p>
<p>in that paper he analyzed vulnerabilities and exploitation vector of win32k driver .</p>
<p>14- in ucon 2009  Stephen A. Ridley did a presentation called Intro to Windows Kernel Security Development<br />
<a href="http://www.dontstuffbeansupyournose.com/trac/browser/projects/ucon09/Intro_NT_kernel_security_stuff.pdf" target="_blank">download it here</a></p>
<p>15- Tavis Ormandy, Julien Tinnes and great presentation called There&#8217;s a party at ring0 and you&#8217;re invited<br />
<a href="http://www.cr0.org/paper/to-jt-party-at-ring0.pdf" target="_blank">http://www.cr0.org/paper/to-jt-party-at-ring0.pdf</a></p>
<p>16- in January 2010 Matthew “j00ru” Jurczyk and Gynvael Coldwind, Hispasec wrote a detailed paper called GDT and LDT in Windows kernel vulnerability exploitation.<br />
<a href="http://vexillium.org/dl.php?call_gate_exploitation.pdf" target="_blank">http://vexillium.org/dl.php?call_gate_exploitation.pdf</a><br />
in that  paper they describes some possible ways of exploiting kernel-mode write-what-where vulnerabilities in a stable manner</p>
<p>17- later  they did a presentation called Case Study of Recent Windows Vulnerabilities in HITB <span style="font-family: monospace; line-height: 18px; font-size: 12px; color: #666666; white-space: pre;"><span style="color: #000000; font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; line-height: 19px; white-space: normal; font-size: 13px;">2010</span></span></p>
<h3>Windows memory protections !</h3>
<p>OK so now we are going back to user-land this time with memory protections !<br />
<a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/Wolf_spider_attack_position1.jpg"><img class="aligncenter size-medium wp-image-1129" title="Welcome To Memory Protections !" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/Wolf_spider_attack_position1-300x262.jpg" alt="" width="300" height="262" /></a></p>
<p>due to  lots of generic exploitation methods as well as lots of worms  ! Microsoft decided to use of memory protections in hardware and software layer. so from windows XP SP2 (Windows XP Tablet PC Edition 2005) , Windows Server 2003 Service Pack 1 (OS level) and from visual studio 2003 (compiler level) added lots of memory protections functionality.</p>
<p>here i&#8217;m going to have brief history of them and then  i will introduce  great researchers and their research against memory protections .</p>
<p>1- <strong>Data Execution Prevention</strong> (DEP)</p>
<p>DEP is a security feature included in modern Microsoft Windows operating systems that is intended to prevent an application or service from executing code from a non-executable memory region. This helps prevent certain exploits that store code via a buffer overflow, for example.</p>
<p>hardware-enforced DEP for CPUs that can mark memory pages as non-executable, and software-enforced DEP with a limited prevention for CPUs that do not have hardware support.</p>
<p>in windows XP SP2 and windows 2003 sp1 and sp2 you can get access on DEP setting by editing boot.ini in noexecute section.</p>
<p>there is four options :</p>
<p>1- <strong>OptIn : </strong>DEP only will work for all of windows services as well as  necessary programs.</p>
<p>2- <strong>OptOut</strong><strong>: </strong>DEP  will work for all of windows services as well as  all of 3d-party installed program but you can add some process as            exception from controll panel.</p>
<p>3- <strong>AlwaysOn : </strong>fully protected by DEP no exception is acceptable.</p>
<p>4- <strong>AlwaysOff : </strong>Go to hell DEP , turns DEP off .</p>
<p>most of CPUs those are made after 2004 (AMD , Intel) can support hardware DEP.</p>
<p>read more on DEP : <a href="http://support.microsoft.com/kb/875352">http://support.microsoft.com/kb/875352</a></p>
<p><strong>/GS (Buffer Security Check)</strong></p>
<p>GS (a.k.a stack cookie) is a compiler option that added from visual studio 2003 and will detects some buffer overruns that overwrite the return address, a common technique for exploiting code that does not enforce buffer size restrictions. This is achieved by injecting security checks into the compiled code.</p>
<p>so by using /GS flag compiler will add <strong>__security_init_cookie() </strong>function to your program and each time you want to overwrite a function return address you actually overwrite cookie as well and so comparison of cookie will fall so process will be terminate and you can&#8217;t use your return address.</p>
<p>for more detail read : <a href="http://msdn.microsoft.com/en-us/library/Aa290051">http://msdn.microsoft.com/en-us/library/Aa290051</a></p>
<p><strong>/SAFESEH</strong></p>
<p>a linked option also system functionality added in visual studio 2005. when a program is linked with /SAFESEH in header of file will be contain of a acceptable Exception Handler Table. so each time an exception occurs and attacker wants overwrite a record from exception handler the ntdll dispatcher will understand this and will terminate program execution.</p>
<p>for more detail read : <a href="http://msdn.microsoft.com/en-us/library/9a89h429(VS.80).aspx">http://msdn.microsoft.com/en-us/library/9a89h429(VS.80).aspx</a></p>
<p><strong>ASLR</strong></p>
<div id="_mcePaste">Windows Vista, 2008 server, and Windows 7 offer yet another built-int security technique (like PAX), which randomizes the base addresses of executables, dll’s, stack and heap in a process’s address space (in fact, it will load the system images into 1 out of 256 random slots, it will randomize the stack for each thread, and it will randomize the heap as well).</div>
<div>in simple explanation if you want use an address in system in one of system dll&#8217;s   after your target system got restart your address is changed and not valid anymore so exploitation will fail again.</div>
<p>for more detail read : <a title="ASLR in Vista" href="http://blogs.msdn.com/michael_howard/archive/2006/05/26/address-space-layout-randomization-in-windows-vista.aspx" target="_blank">here</a></p>
<p><strong>SEHOP</strong></p>
<p>used in most modern windows operation systems like 2008 and 7 . the idea beyond this new mitigation comes from matt miller article called <span style="font-family: Verdana, Arial, Helvetica, sans-serif; line-height: 15px; font-size: 12px; color: #333333;">Preventing the Exploitation of SEH Overwrites. </span>for detailed explanation of this protection just read flowing link :</p>
<p><span style="font-family: Verdana, Arial, Helvetica, sans-serif; line-height: 15px; font-size: 12px; color: #333333;"><a href="http://blogs.technet.com/srd/archive/2009/02/02/preventing-the-exploitation-of-seh-overwrites-with-sehop.aspx">http://blogs.technet.com/srd/archive/2009/02/02/preventing-the-exploitation-of-seh-overwrites-with-sehop.aspx</a></span></p>
<p><strong>Heap Protection</strong></p>
<p>Microsoft also introduce to some new heap protections like heap meta cookie , safe unlinking , and in newer systems (after vista) function pointer obfuscation and so on &#8230;</p>
<p>==================================================</p>
<h3 style="text-align: center;"><strong>Advanced Windows Exploitation (bypassing filter and protections ) </strong></h3>
<p>after 2005 exploitation getting harder and harder and number of public and &#8220;white-hat&#8221; hackers who can made a reliable multi platform exploit for modern windows OS was not too much.</p>
<p>in this section i want to have review on most important and noticeable researches against protections.</p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/th_dullien.jpg"><img class="aligncenter size-full wp-image-1132" title="th_dullien" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/th_dullien.jpg" alt="" width="150" height="161" /></a></p>
<p>1- Third Generation Exploitation smashing heap on 2k by halvar Flake in 2002</p>
<p><a href="http://www.blackhat.com/presentations/win-usa-02/halvarflake-winsec02.ppt" target="_blank">http://www.blackhat.com/presentations/win-usa-02/halvarflake-winsec02.ppt</a></p>
<p>windows 2k heap exploitation.</p>
<p>2- chris anley wrote Creating Arbitrary Shellcode In Unicode Expanded Strings</p>
<p><a href="http://www.net-security.org/dl/articles/unicodebo.pdf" target="_blank">http://www.net-security.org/dl/articles/unicodebo.pdf</a></p>
<p>this was first public article about unicode based shellcode and is also known as &#8220;Venetian&#8221; shellcode. the method explained in this paper was good enough to making poor ASCII shellcodes .</p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/speaker06_Dave-Aitel.jpg"><img class="aligncenter size-full wp-image-1133" title="speaker06_Dave Aitel" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/speaker06_Dave-Aitel.jpg" alt="" width="106" height="119" /></a></p>
<p><strong><span style="font-weight: normal;">3- Dave aitel advanced windows exploitation in 2003 </span></strong></p>
<p><span style="font-weight: normal;"><a href="http://www.immunityinc.com/downloads/immunity_win32_exploitation.final2.ppt" target="_blank">http://www.immunityinc.com/downloads/immunity_win32_exploitation.final2.ppt</a></span></p>
<p><span style="font-weight: normal;">in that talk dave talked about no so typical windows exploitation and start making game more advanced . </span></p>
<p style="text-align: center;"><span style="font-weight: normal;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/dwl.jpg"><img class="aligncenter size-medium wp-image-1134" title="dwl" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/dwl-200x300.jpg" alt="" width="140" height="210" /></a><br />
</span></p>
<p>4- Defeating the Stack Based Buffer Overflow Prevention Mechanism of Microsoft Windows 2003 Server by david litchfield</p>
<p><a href="http://www.ngssoftware.com/papers/defeating-w2k3-stack-protection.pdf" target="_blank">http://www.ngssoftware.com/papers/defeating-w2k3-stack-protection.pdf</a></p>
<p>this paper actually was first detailed paper about abusing SEH (structured exception handler)  and the generic way to bypass /GS  and also write not lots of public exploit are using this method for exploitation so it also can called one of most important research in windows exploitation history.</p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/04/25384_361687701993_524586993_4263920_3640767_n.jpg"><img class="aligncenter size-full wp-image-1090" style="display: block; margin-left: auto; margin-right: auto; border: 0px initial initial;" title="matt conover" src="http://www.abysssec.com/blog/wp-content/uploads/2010/04/25384_361687701993_524586993_4263920_3640767_n.jpg" alt="" width="106" height="119" /></a></p>
<p>5- reliable heap exploits  (matt Conover  in cansecwest 2004 ) and after that Windows Heap Exploitation (Win2KSP0 through WinXPSP2)</p>
<p><a href="http://cybertech.net/~sh0ksh0k/projects/winheap/XPSP2%20Heap%20Exploitation.ppt" target="_blank">http://cybertech.net/~sh0ksh0k/projects/winheap/XPSP2%20Heap%20Exploitation.ppt</a></p>
<p>i think that was one of most important heap related research in history of windows exploitation a great and gentle introduction to overwrite a chunk on lookaside list for bypassing safe unlinking and also give lots of great information  about windows heap manager internals .</p>
<p>6- later in 2004 matt miller wrote an article Safely Searching Process Virtual Address Space</p>
<p><a href="http://www.hick.org/code/skape/papers/egghunt-shellcode.pdf" target="_blank">http://www.hick.org/code/skape/papers/egghunt-shellcode.pdf</a></p>
<p>this article was first great and public article about using egg-hunter shellcode and it&#8217;s about when we have limited memory space for our shellcode and we can store our big and main shellcode some-where in memory. this can be also called practical introduction to search shellcodes .</p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/skylined.png"><img class="aligncenter size-full wp-image-1136" title="skylined" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/skylined.png" alt="" width="80" height="83" /></a></p>
<p>7- later in 2004  skylined wrote on IE exploit and used a technology called Heap Spray</p>
<p><a href="http://www.exploit-db.com/exploits/612">http://www.exploit-db.com/exploits/612</a></p>
<p>heap spray is one of most important technologies even in modern exploitation and it&#8217;s about <span style="font-family: sans-serif;">code that <em>sprays the heap</em> attempts to put a certain sequence of bytes at a predetermined location in the memory of a target process by having it allocate (large) blocks on the process&#8217; heap and fill the bytes in these blocks with the right values. They commonly take advantage from the fact that these heap blocks will roughly be in the same location every time the heap spray is run.</span></p>
<p>for a few years heap spray was just used in java script and mostly in browsers but today modern attackers are using anything possible to allocate more heap for sparing .  like action script , silver light , bmp files and &#8230; and not just in browsers !  from my point of view heap spray is like cheating in modern exploitation !</p>
<p style="text-align: center;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/skape.png"><img class="aligncenter size-full wp-image-1137" title="skape" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/skape.png" alt="" width="130" height="174" /></a></p>
<p>8- bypassing hardware-enforced DEP skape (matt miller) Skywing (ken johnson) (in October 2005)</p>
<p><a href="http://www.uninformed.org/?v=2&amp;a=4&amp;t=pdf" target="_blank">http://www.uninformed.org/?v=2&amp;a=4&amp;t=pdf</a></p>
<p>yay ! they finally did it . hardware enforced DEP bypassed by using a return to libc style attack . in simple explanation  the problem was in not CPU the problem and weakness was in windows related API that was used for setting DEP for various process. and the API was NtSetInformationProcess. but there was some simple problem in that article like they forget talk about it we need to to have EBP always writable.</p>
<p style="text-align: center;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/brett-moore.jpg"><img class="aligncenter size-full wp-image-1139" title="brett-moore" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/brett-moore.jpg" alt="" width="129" height="189" /></a></p>
<p>9- Exploiting Freelist[0] On XP Service Pack 2 by brett moore (dec 2005)</p>
<p><a href="http://www.orkspace.net/secdocs/Windows/Protection/Bypass/Exploiting%20Freelist%5B0%5D%20On%20XP%20Service%20Pack%202.pdf" target="_blank">download here</a></p>
<p>this is was another great example of bypassing heap protections by using Freelist[0] and really useful is some case .</p>
<p>10 -  later in 2005 matt miller published great article called Kernel-mode Payloads on Windows in uninformed</p>
<p><a href="http://www.uninformed.org/?v=3&amp;a=4&amp;t=pdf" target="_blank">http://www.uninformed.org/?v=3&amp;a=4&amp;t=pdf</a></p>
<p>this article was great article for porting exploits to kernel-land.</p>
<p style="text-align: center;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/hd_moore.jpg"><img class="aligncenter size-full wp-image-1140" title="hd_moore" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/hd_moore.jpg" alt="" width="168" height="112" /></a></p>
<p>11-  in 2006 johny cache hd moore and matt miller released Exploiting 802.11 Wireless Driver Vulnerabilities on Windows</p>
<p><a href="http://www.uninformed.org/?v=6&amp;a=2&amp;t=pdf" target="_blank">http://www.uninformed.org/?v=6&amp;a=2&amp;t=pdf</a></p>
<p>good example of real-world driver exploitation.</p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/ruben_rooted.png"><img class="aligncenter size-thumbnail wp-image-1174" title="ruben_rooted" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/ruben_rooted-150x150.png" alt="" width="150" height="150" /></a></p>
<p>12-  in 2007  Ruben Santamarta wrote Exploiting Comon Flaws In Drivers</p>
<p><a href="http://www.reversemode.com/index.php?option=com_content&amp;task=view&amp;id=38&amp;Itemid=1" target="_blank">Read it here</a></p>
<p>note that before ruben we can find lots of great research about this topic but  ruben makes  it different . he  made a tool that called kartoffel which is a great driver fuzzer for finding IOCTL vulnerabilities  in drivers. but kartoffel was not main reason to make it different.</p>
<p>after he wrote kartofell and published lots of detailed advisories in various vendor drivers , windows driver exploitation got speed and changed to one of focusable area in exploitation .</p>
<p style="text-align: center;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/alex-sotirov.jpg"><img class="aligncenter size-medium wp-image-1143" title="alex-sotirov" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/alex-sotirov-294x300.jpg" alt="" width="206" height="210" /></a></p>
<p>13- Heap Feng Shui in JavaScript by Alexander sotirov (2007)</p>
<p><a href="http://www.blackhat.com/presentations/bh-europe-07/Sotirov/Presentation/bh-eu-07-sotirov-apr19.pdf" target="_blank">http://www.blackhat.com/presentations/bh-europe-07/Sotirov/Presentation/bh-eu-07-sotirov-apr19.pdf</a></p>
<p>notable improvements to skylined heap spray technology . heap spray was good but blind and not so reliable is some case.  Heap Feng Shui is great research about doing advanced FU in heap  (heap manipulation) it will lead you to have more control on heap.</p>
<p style="text-align: center;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/nico.png"><img class="aligncenter size-medium wp-image-1144" title="nico" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/nico-204x300.png" alt="" width="143" height="210" /></a></p>
<p>14- Understanding and bypassing Windows Heap Protection by Nicolas Waisman (2007)</p>
<p><a href="http://kkamagui.springnote.com/pages/1350732/attachments/579350" target="_blank">http://kkamagui.springnote.com/pages/1350732/attachments/579350</a></p>
<p>nico is one of a few guys that focused on windows heap he also developed immunity debugger heaplib and did lots of great heap related researches. he is one of world leading heap !</p>
<p>15- Heaps About Heaps by brett moore (in 2008)</p>
<p><a href="http://www.insomniasec.com/publications/Heaps_About_Heaps.ppt" target="_blank">http://www.insomniasec.com/publications/Heaps_About_Heaps.ppt</a></p>
<p>that was one of most complete researches about heap. yes that is just a few slides but great hint if you want do something on heap !</p>
<p style="text-align: center;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/mark-dowd.png"><img class="aligncenter size-full wp-image-1146" title="mark-dowd" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/mark-dowd.png" alt="" width="135" height="195" /></a></p>
<p>16- Bypassing browser memory protections in Windows Vista  by Mark Dowd and Alex Sotirov (in 2008)</p>
<p><a href="http://taossa.com/archive/bh08sotirovdowd.pdf" target="_blank">http://taossa.com/archive/bh08sotirovdowd.pdf</a></p>
<p>one of most greatest exploitation related research with a focus on bypassing browsers memory protections in vista .</p>
<p>great  generic .net shellcode trick (loading a .net dll and use shellcode in it),  java spraying , deep into  combined protections  and great ways to bypassing them.</p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/ben-hawkes.png"><img class="aligncenter size-full wp-image-1148" title="ben-hawkes" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/ben-hawkes.png" alt="" width="128" height="128" /></a></p>
<p>17 &#8211; Attacking the Vista Heap by ben hawkes (in 2008)</p>
<p><a href="http://www.ruxcon.org.au/files/2008/hawkes_ruxcon.pdf" target="_blank">http://www.ruxcon.org.au/files/2008/hawkes_ruxcon.pdf</a></p>
<p>great research about vista heap internals and some ways to bypassing vista heap protections.</p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/hovav.jpg"><img class="aligncenter size-full wp-image-1149" title="hovav" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/hovav.jpg" alt="" width="100" height="113" /></a></p>
<p>18- Return oriented programming Exploitation without Code Injection by Hovav Shacham  (and others ) (in 2008)</p>
<p><a href="http://cseweb.ucsd.edu/~hovav/dist/blackhat08.pdf" target="_blank">http://cseweb.ucsd.edu/~hovav/dist/blackhat08.pdf</a></p>
<p>not a so new technology. it&#8217;s just our old code reuse ! but with great official introduction he call it  Return-Oriented-Programming (now known as ROP ). this technology is great to bypass permanent DEP (vista / 7 / 2008) (because you can&#8217;t use return-to-libc style attack anymore)</p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/cesar_cerrudo.gif"><img class="aligncenter size-full wp-image-1178" title="cesar_cerrudo" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/cesar_cerrudo.gif" alt="" width="100" height="128" /></a></p>
<p>19- Cesar Cerrudo wrote Token Kidnapping and a super reliable exploit for windows 2k3 and 2k8 (2008)</p>
<p><a href="http://www.argeniss.com/research/TokenKidnapping.pdf" target="_blank">http://www.argeniss.com/research/TokenKidnapping.pdf</a></p>
<p>20- Defeating DEP Immunity Way by Pablo sole (2008)</p>
<p><a href="http://www.immunityinc.com/downloads/DEPLIB.pdf" target="_blank">http://www.immunityinc.com/downloads/DEPLIB.pdf</a></p>
<p>first automation of ROP . thats it ;)</p>
<p><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/jmold.png"><img class="aligncenter size-full wp-image-1150" title="jmold" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/jmold.png" alt="" width="90" height="90" /></a></p>
<p>21- Practical Windows XP2003 Heap Exploitation (bh 2009) by John McDonald and Chris Valasek.</p>
<p><a href="http://www.blackhat.com/presentations/bh-usa-09/MCDONALD/BHUSA09-McDonald-WindowsHeap-PAPER.pdf" target="_blank">http://www.blackhat.com/presentations/bh-usa-09/MCDONALD/BHUSA09-McDonald-WindowsHeap-PAPER.pdf</a></p>
<p>if you want write a heap exploit for modern OS . you should read this one . most complete heap related article .</p>
<p>22- Bypassing SEHOP  by Stefan Le Berre Damien Cauquil (in 2009)</p>
<p><a href="http://www.sysdream.com/articles/sehop_en.pdf" target="_blank">http://www.sysdream.com/articles/sehop_en.pdf</a></p>
<p>cool and good research ! but ALSR will make it not so useful because SEHOP = SEHOP + ASLR</p>
<p style="text-align: center;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/dark-dion-01.jpg"><img class="aligncenter size-medium wp-image-1151" title="dark-dion-01" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/dark-dion-01-300x225.jpg" alt="" width="210" height="158" /></a></p>
<p>23- Interpreter Exploitation  : Pointer Inference and JIT Spraying by Dionysus Blazakis (2010)</p>
<p><a href="http://www.semantiscope.com/research/BHDC2010/BHDC-2010-Paper.pdf" target="_blank">http://www.semantiscope.com/research/BHDC2010/BHDC-2010-Paper.pdf</a></p>
<p><a href="http://www.semantiscope.com/research/BHDC2010/BHDC-2010-Slides-v2.pdf" target="_blank">http://www.semantiscope.com/research/BHDC2010/BHDC-2010-Slides-v2.pdf</a></p>
<p>Great ! exploitation is still alive . generic exploitation method for bypassing DEP and ASLR together . if you read and understand it you can write lots of exploits for windows 7 !</p>
<p>24- write-up of Pwn2Own 2010 by <span style="font-family: Verdana, Helvetica, Arial, Geneva, sans-serif; line-height: 18px; font-size: 12px; color: #333333;"> Peter Vreugdenhil (2010)</span></p>
<p><a href="http://vreugdenhilresearch.nl/Pwn2Own-2010-Windows7-InternetExplorer8.pdf" target="_blank">http://vreugdenhilresearch.nl/Pwn2Own-2010-Windows7-InternetExplorer8.pdf</a></p>
<p>a great and short article about how to own DEP+ASLR without any 3rd-party plugin</p>
<p>(used two vulnerability and toke around 4 minutes)</p>
<p>25- ruben santamarta all in one 0day presented in rootedCON (2010)</p>
<p><a href="http://wintercore.com/downloads/rootedcon_0day_english.pdf" target="_blank">http://wintercore.com/downloads/rootedcon_0day_english.pdf</a></p>
<p>some great idea for bypassing IE XSS Filter and protected mod not exploitation specific but it&#8217;s great for being combined with other exploitation methods .</p>
<p>=========================================================</p>
<h3><strong>history of some not so typical windows exploits:</strong></h3>
<p>in this section i&#8217;m going to archive some of interesting exploits i saw you can learn lots of things from them !</p>
<p>1- one of first real-world HW-DEP bypass Exploit by devcode : <a href="http://www.exploit-db.com/exploits/3652" target="_blank">here</a></p>
<p>2- bypassing DEP by returning into HeapCreate by toto : <a href="http://www.metasploit.com/redmine/projects/framework/repository/revisions/7246/entry/modules/exploits/windows/brightstor/mediasrv_sunrpc.rb" target="_blank">here</a></p>
<p><a href="http://www.metasploit.com/redmine/projects/framework/repository/revisions/7246/entry/modules/exploits/windows/brightstor/mediasrv_sunrpc.rb" target="_blank"></a>3- first public ASLR bypass exploit by using partial overwrite  by skape (matt miller) : <a href="http://www.metasploit.com/redmine/projects/framework/repository/entry/modules/exploits/windows/email/ani_loadimage_chunksize.rb" target="_blank">here</a></p>
<p>4- heap spray and bypassing DEP by skylined : <a href="http://skypher.com/SkyLined/download/www.edup.tudelft.nl/~bjwever/exploits/InternetExploiter2.zip" target="_blank">here</a></p>
<p>5- first public exploit that used ROP  for bypassing DEP in adobe lib TIFF vulnerability : <a href="http://www.metasploit.com/redmine/projects/framework/repository/revisions/8833/raw/modules/exploits/windows/fileformat/adobe_libtiff.rb" target="_blank">here</a> (is this case ASLR bypass is possible !)</p>
<p>6-  exploit codes of bypassing browsers memory protections : <a href="http://phreedom.org/research/bypassing-browser-memory-protections/bypassing-browser-memory-protections-code.zip" target="_blank">here</a></p>
<p>7-  Cesar Cerrudo PoC&#8217;s on Tokken TokenKidnapping .  PoC for  2k3: <a href="http://www.argeniss.com/research/Churrasco.zip" target="_blank">here</a> , PoC 2k8: <a href="http://www.argeniss.com/research/Churrasco2.zip" target="_blank">here</a></p>
<p>8- Tavis Ormandy KiTra0d an exploit works from win 3.1 to win 7 . PoC <a href=" http://lock.cmpxchg8b.com/c0af0967d904cef2ad4db766a00bc6af/KiTrap0D.zip" target="_blank">here</a> (metasploit updated module works more interesting !)</p>
<p>9- old ms08-067 metasploit module multi-target and DEP bypass  PoC <a href="http://metasploit.com/svn/framework3/trunk/modules/exploits/windows/smb/ms08_067_netapi.rb" target="_blank">here</a></p>
<p>10- PHP 6.0 Dev str_transliterate() Buffer overflow &#8211; NX + ASLR Bypass (using ROP and Brute Forcing ASLR) PoC <a href="http://www.exploit-db.com/exploits/12189" target="_blank">here</a></p>
<p>11- Stephen Fewer SMBv2 Exploit . PoC <a href="http://www.metasploit.com/redmine/projects/framework/repository/revisions/8916/raw/modules/exploits/windows/smb/ms09_050_smb2_negotiate_func_index.rb" target="_blank">here</a></p>
<p>note 1  :there is lots of other interesting exploits in windows platform you can just find them in <a href="www.exploit-db.com" target="_blank">here</a> and also <a href="www.metasploit.com" target="_blank">here</a> .</p>
<p>note 2: i saw lots of other great and advanced exploits in commercial packages . (they are commercial so forget them ;) )</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong>===================================================</strong></p>
<p><strong><span style="font-weight: normal;"> </span></strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<h3><strong>history of related windows exploitation books !</strong></h3>
<p>in this section i&#8217;m going to archive some books about windows exploitation.</p>
<p>1- Exploiting Software How to Break Code By (Greg Hoglund, Gary McGraw)</p>
<p>2- The Art of Software Security Assessment: Identifying and Preventing Software  Vulnerabilities (By <a class="v1" target="_new">Mark Dowd</a>, <a class="v1" target="_new">John McDonald</a><a class="v1" target="_new">)</a></p>
<p>3- Buffer Overflow Attacks: Detect, Exploit, Prevent (by James C. Foster)</p>
<p>4- Windows Internals (by <span style="font-family: verdana, arial, helvetica, sans-serif; line-height: normal; font-size: small;">Mark Russinovich , David A. Solomon, Alex Ionescu)</span></p>
<h3><span style="font-family: verdana, arial, helvetica, sans-serif;"><span style="line-height: normal; font-size: xx-small;">5-  <span style="font-weight: normal;">The Shellcoders Handbook Discovering and Exploiting Security</span></span></span></h3>
<h5><span style="font-family: verdana, arial, helvetica, sans-serif;"><span style="line-height: normal; font-size: xx-small;"><span style="font-weight: normal;"><strong><span style="font-weight: normal;">(by Jack Koziol, David Litchfield, Dave Aitel, </span><span style="font-size: 13px;"><span style="font-weight: normal;">Chris Anley, Sinan Eren, Neel Mehta, and Riley Hassell)</span></span></strong></span></span></span></h5>
<p><span style="font-family: verdana, arial, helvetica, sans-serif;"><span style="line-height: normal;">6- Software Vulnerability Guide ( by HERBERT H. THOMPSON , SCOTT G. CHASE)</span></span></p>
<p><span style="font-family: verdana, arial, helvetica, sans-serif;"><span style="line-height: normal;">7- ADVANCED WINDOWS DEBUGGING (by Mario Heward , Daniel Pravat)</span></span></p>
<p><span style="font-family: verdana, arial, helvetica, sans-serif;"><span style="line-height: normal;">8- Reversing: Secrets of Reverse Engineering</span></span></p>
<p><span style="font-family: verdana, arial, helvetica, sans-serif;"><span style="line-height: normal;">9- great step by step exploit writing tutorials by my friend <span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; line-height: 20px;">Peter Van Eeckhoutte <span style="font-family: verdana, arial, helvetica, sans-serif; line-height: normal;">:</span></span></span></span></p>
<p><span style="font-family: verdana, arial, helvetica, sans-serif;"><span style="line-height: normal;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; line-height: 20px;"><span style="font-family: verdana, arial, helvetica, sans-serif; line-height: normal;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/head1_thumb636_thumb13_thumb.jpg"><img class="aligncenter size-thumbnail wp-image-1169" title="head1_thumb636_thumb13_thumb" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/head1_thumb636_thumb13_thumb-150x150.jpg" alt="" width="150" height="150" /></a><br />
</span></span></span></span></p>
<ol>
<li><span style="color: #000000;">Exploit writting tutorial part 1:Stack Based Overflows</span><span style="color: #000000;"> &#8211; </span><span style="color: #000000;"><a href="http://www.corelan.be:8800/index.php/2009/07/19/exploit-writing-tutorial-part-1-stack-based-overflows/" target="_blank">here</a></span></li>
<li><span style="color: #000000;">Exploit writting tutorial part 2: Stack Based Overflows &#8211; jumping to shellcode</span><span style="color: #000000;"> &#8211; <a href="http://www.corelan.be:8800/index.php/2009/07/23/writing-buffer-overflow-exploits-a-quick-and-basic-tutorial-part-2/" target="_blank">here</a></span></li>
<li><span style="color: #000000;">Exploit writting tutorial part 3: SEH Based Exploits</span><span style="color: #000000;"> &#8211; <a href="http://www.corelan.be:8800/index.php/2009/07/25/writing-buffer-overflow-exploits-a-quick-and-basic-tutorial-part-3-seh/" target="_blank">here</a></span></li>
<li><span style="color: #000000;">Exploit writting tutorial part 3b: SEH Based Exploits</span><span style="color: #000000;"> </span><span style="color: #000000;">- just another example  - <a href="-http://www.corelan.be:8800/index.php/2009/07/28/seh-based-exploit-writing-tutorial-continued-just-another-example-part-3b/" target="_blank">here</a></span></li>
<li><span style="color: #000000;">Exploit writting tutorial part 4: From Exploit to Metasploit &#8211; <a href=" The basics -http://www.corelan.be:8800/index.php/2009/08/12/exploit-writing-tutorials-part-4-from-exploit-to-metasploit-the-basics/" target="_blank">here</a></span></li>
<li><span style="color: #000000;">Exploit writting tutorial part 5:  speed up basic exploit development &#8211; <a href="-http://www.corelan.be:8800/index.php/2009/09/05/exploit-writing-tutorial-part-5-how-debugger-modules-plugins-can-speed-up-basic-exploit-development/ " target="_blank">here</a></span></li>
<li><span style="color: #000000;"><span style="color: #000000;">Exploit writting tutorial part 6: Bypassing GS, SafeSeh, SEHOP, HW DEP and ASLR &#8211; <a href="-http://www.corelan.be:8800/index.php/2009/09/21/exploit-writing-tutorial-part-6-bypassing-stack-cookies-safeseh-hw-dep-and-aslr/" target="_blank">here</a></span></span></li>
<li><span style="color: #000000;">Exploit writting tutorial part 7: Unicode &#8211; from 0&#215;00410041 to calc &#8211; <a href="-http://www.corelan.be:8800/index.php/2009/11/06/exploit-writing-tutorial-part-7-unicode-from-0x00410041-to-calc/" target="_blank">here</a></span></li>
<li><span style="color: #000000;">Exploit writting tutorial part 8: Win32 Egg Hunting </span><span style="color: #000000;">- <a href="http://www.corelan.be:8800/index.php/2010/01/09/exploit-writing-tutorial-part-8-win32-egg-hunting/" target="_blank">here</a></span></li>
<li><span style="color: #000000;">Exploit writting tutorial part 9: Introduction to Win32 shellcoding &#8211; <a href="-http://www.corelan.be:8800/index.php/2010/02/25/exploit-writing-tutorial-part-9-introduction-to-win32-shellcoding/ " target="_blank">here</a></span></li>
</ol>
<p>also he wrote a cool immunity debugger PyCommand called <a href="http://www.corelan.be:8800/index.php/security/pvefindaddr-py-immunity-debugger-pycommand/" target="_blank">PveFindAddr</a> i think this python script is necessary for speed-up exploit development for newbie or expert exploit developers and i found it so useful , it have some cool features like finding instructions for code reuse and ROP also finding state of memory protections and finding best return address in your situation.</p>
<p><span style="font-family: verdana, arial, helvetica, sans-serif; line-height: normal;">this is not complete lits of exploitation related book / articles list i just listed those had at least one windows specific chapter .</span></p>
<h2 style="text-align: center;">PART III : Future of exploitation</h2>
<p style="text-align: center;"><a href="http://www.abysssec.com/blog/wp-content/uploads/2010/05/haxor.gif"><img class="aligncenter size-thumbnail wp-image-1201" title="haxor" src="http://www.abysssec.com/blog/wp-content/uploads/2010/05/haxor-150x150.gif" alt="" width="150" height="150" /></a></p>
<p><strong><span style="color: #ff00ff;">Starrin</span><span style="font-family: arial, sans-serif;"><span style="line-height: 16px;"><span style="color: #ff00ff;">g : T.B.A </span></span></span></strong></p>
<p><span style="color: #ff0000;"><span style="color: #000000;">1-</span> exploitation is not and will not die.</span></p>
<p><span style="color: #000000;">2- </span><span style="color: #000000;">just will change and being more harder also won&#8217;t be &#8221; just for fun&#8221; like before. </span></p>
<p><span style="color: #000000;">3- </span><span style="color: #000000;">writing reliable exploits will take time and time == money and now exploit development is acceptable specific job in security area !</span></p>
<p><span style="color: #000000;">4- </span><span style="color: #000000;">fame == money as well (also is lovely by itself) .  so you will see other great researches in various security fields ;)</span></p>
<p><span style="color: #000000;">5- </span><span style="color: #000000;">if you read all of resources exist in post you can be a great exploit developer ; )</span></p>
<p><span style="font-family: verdana, arial, helvetica, sans-serif;"><span style="line-height: normal;">PS1 : during writing this post due to lots of links and peoples on it maybe i forgot some notable people / article you can alert me about them just by shahin [at] abysssec.com </span></span></p>
<p><span style="font-family: verdana, arial, helvetica, sans-serif;"><span style="line-height: normal;">PS2 : i wrote this post so fast (and took long time !) i will edit my Misspellings and grammatical in good time.</span></span></p>
<p><span style="font-family: verdana, arial, helvetica, sans-serif;"><span style="line-height: normal;">i need to go and take 0XCC00FFEE . </span></span></p>
<p><span style="font-family: verdana, arial, helvetica, sans-serif;"><span style="line-height: normal;">have fun .</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.abysssec.com/blog/2010/05/08/past-present-future-of-windows-exploitation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>webapp Advisory + not dead just busy !!!</title>
		<link>http://www.abysssec.com/blog/2009/05/22/not-dead-just-busy/</link>
		<comments>http://www.abysssec.com/blog/2009/05/22/not-dead-just-busy/#comments</comments>
		<pubDate>Fri, 22 May 2009 07:50:24 +0000</pubDate>
		<dc:creator>shahin</dc:creator>
				<category><![CDATA[advisory]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[adobe 0day]]></category>
		<category><![CDATA[adobe get icon]]></category>
		<category><![CDATA[dana]]></category>
		<category><![CDATA[douran]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[web application]]></category>

		<guid isPermaLink="false">http://www.abysssec.com/blog/?p=331</guid>
		<description><![CDATA[hello to all of our dear reades . we are not dead , just really busy in doing our projects . but there is a few notes  I&#8217;d like to enclose with you  .first of all about 2 Web Based vulnerability we&#8217;ve report to milw0rm .  we haven&#8217;t free time to working on educational sources [...]]]></description>
			<content:encoded><![CDATA[<p>hello to all of our dear reades .</p>
<p>we are not dead , just really busy in doing our projects . but there is a few notes  I&#8217;d like to enclose with you  .first of all about 2 Web Based vulnerability we&#8217;ve report to milw0rm .  we haven&#8217;t free time to working on educational sources . and those vulnerability was special for us because those portal was commercial portals uses for our &#8220;government&#8221;  , &#8220;private&#8221; web sites. and we&#8217;ve report those for helping our autonomous applications .</p>
<p>by the way if you like to see those vulnerabilities here you are :</p>
<p>first <a class="style14" href="http://milw0rm.com/exploits/8718" target="_blank">DOURAN Portal &lt;= 3.9.0.23 Multiple Remote Vulnerabilities</a></p>
<p>second <a class="style14" href="http://milw0rm.com/exploits/8719" target="_blank">Dana Portal Remote Change Admin Password Exploit</a></p>
<p>third about <a href="http://milw0rm.com/exploits/8595">adobe</a> exploit my next  writeup will be about PDF hacking / exploiting stuff (soon) .</p>
<p>and finally about future :</p>
<p>we believe to &#8220;no more free bugs&#8221; so after reporting a few more vulnerabilities / exploit maybe we don&#8217;t report more transparent / reliable exploit (as past) . maybe just PoC&#8217;s or just papers or just advisories titles or &#8230; . but who knows ?!</p>
<p>then :</p>
<p>we will try to update site with respectable index and more post on our blogs but you should take our apology for our late and unfaithfulness .</p>
<p>and final note :</p>
<p>unfortunately for a few reasons we disabled  commenting system on blogs but feel free to contact us with our mails.</p>
<p>for now you can use admin [at] abysssec.com .</p>
<p>keep on to visit us .</p>
<p>hope to see you soon .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abysssec.com/blog/2009/05/22/not-dead-just-busy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>another start</title>
		<link>http://www.abysssec.com/blog/2008/10/09/another-start/</link>
		<comments>http://www.abysssec.com/blog/2008/10/09/another-start/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 15:38:24 +0000</pubDate>
		<dc:creator>shahin</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://secure-developer.com/blog/?p=3</guid>
		<description><![CDATA[here is another info-sec blog via some security researchers we are really busy in these days in our small labs  but we hope can have efficiency result and update this blog with some interesting content . we are trying update this blog everyday and finally we accept all of your discretion and comments .]]></description>
			<content:encoded><![CDATA[<p>here is another info-sec blog via some security researchers we are really busy in these days in our small labs  but we hope can have efficiency result and update this blog with some interesting content . we are trying update this blog everyday and finally we accept all of your discretion and comments .</p>
<div class="wp-caption aligncenter" style="width: 510px"><img title="labs" src="http://i34.tinypic.com/30w2xoy.jpg" alt="labs" width="500" height="500" /><p class="wp-caption-text">labs</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.abysssec.com/blog/2008/10/09/another-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

