<?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>phed.org</title>
	<atom:link href="http://phed.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://phed.org</link>
	<description>The Rantings of Michael Eddington</description>
	<lastBuildDate>Thu, 20 May 2010 16:02:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fuzzing SQL Stored Procedures</title>
		<link>http://phed.org/2009/07/15/fuzzing-sql-stored-procedures/</link>
		<comments>http://phed.org/2009/07/15/fuzzing-sql-stored-procedures/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 08:26:35 +0000</pubDate>
		<dc:creator>Michael Eddington</dc:creator>
				<category><![CDATA[Peach]]></category>

		<guid isPermaLink="false">http://phed.org/2009/07/15/fuzzing-sql-stored-procedures/</guid>
		<description><![CDATA[Another fun fuzzing target are SQL Stored Procedures.&#160; This was a hotbed for exploits a number of years ago and remains a hot topic thanks to the plethora of web applications providing a target rich environment.&#160; Oddly, there are few tools available for fuzzing stored procedure, most of which are simple one offs with limited [...]]]></description>
			<content:encoded><![CDATA[<p>Another fun fuzzing target are SQL Stored Procedures.&#160; This was a hotbed for exploits a number of years ago and remains a hot topic thanks to the plethora of web applications providing a target rich environment.&#160; Oddly, there are few tools available for fuzzing stored procedure, most of which are simple one offs with limited abilities.</p>
<p>Peach seeâ€™s stored procedures as callable methods with parameters and possible return types.&#160; This allows creating anything from super simple to very complex state machines around your set of stored procedures.&#160; Additionally there is the typical rich set of data modeling tools available for specifying the parameter data.</p>
<p>The example provided in this article is taken from the <a href="http://peachfuzzer.com/TutorialSqlStoreProcedure">SQL Stored Procedure Fuzzing Tutorial</a> and uses MySQL v5.1 as the test database. <strong style="display:none"><a href="http://nerealp.co.cc/121.html">?????? ????? ????</a></strong> </p>
<h2></h2>
<h2>Example 1 â€“ Simple Stored Procedure</h2>
<p>Our first example is very simple, we will have a single stored procedure called â€œtestprocâ€ that accepts a single parameter â€œparameter1â€ that is typed as a â€œvarchar(255).â€</p>
<div style="display:none"><a href="http://nerealp.co.cc/121.html">?????? ????? ????</a></div>
<p>The MySQL database schema looks like this:</p>
<div style="display:none"><a href="http://lakshmislounge.com/wp-content/uploads/this_is_it.php">michael jackson</a></div>
<p> <em style="display:none"><a href="http://nerealp.co.cc/121.html">?????? ????? ????</a></em> </p>
<pre>create table if not exists testtable (
   msg varchar(255)
);

delimiter //
CREATE PROCEDURE testproc(IN parameter1 VARCHAR(255))
BEGIN
   insert into testtable (msg) values (parameter1);
END;
//</pre>
<p><div style="display:none"><a href="http://writingcenters.org/wp-content/index.php?avatar">cameron</a></div>
<p> Next we need to create out Peach PIT file, this will contain a data model for our parameter, a state machine that calls our method, and finally a publisher configured to talk with MySQL.</p>
<pre>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;Peach xmlns=&quot;http://phed.org/2008/Peach&quot;
xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
       xsi:schemaLocation=&quot;http://phed.org/2008/Peach /peach/peach.xsd&quot;&gt;

       &lt;Include ns=&quot;default&quot; src=&quot;file:defaults.xml&quot;/&gt;
       &lt;Include ns=&quot;pt&quot; src=&quot;file:PeachTypes.xml&quot;/&gt;

       &lt;DataModel name=&quot;TheDataModel&quot;&gt;
               &lt;String value=&quot;Peachy&quot;/&gt;
       &lt;/DataModel&gt;

       &lt;StateModel name=&quot;TheState&quot; initialState=&quot;Initial&quot;&gt;

               &lt;State name=&quot;Initial&quot;&gt;
                       &lt;Action type=&quot;call&quot; method=&quot;call testproc(?)&quot;&gt;
                               &lt;Param name=&quot;p1&quot; type=&quot;in&quot;&gt;
                                       &lt;DataModel ref=&quot;TheDataModel&quot;/&gt;
                               &lt;/Param&gt;
                       &lt;/Action&gt;
               &lt;/State&gt;
       &lt;/StateModel&gt;

       &lt;Test name=&quot;TheTest&quot;&gt;
               &lt;StateModel ref=&quot;TheState&quot;/&gt;

               &lt;Publisher class=&quot;sql.Odbc&quot;&gt;
                       &lt;Param name=&quot;dsn&quot; value=&quot;TestMySql/root/password&quot;/&gt;
               &lt;/Publisher&gt;
       &lt;/Test&gt;

       &lt;Run name=&quot;DefaultRun&quot;&gt;
               &lt;Test ref=&quot;TheTest&quot;/&gt;
       &lt;/Run&gt;
&lt;/Peach&gt;</pre>
<p>&#160; <strong style="display:none"><a href="http://nerealp.co.cc/121.html">?????? ????? ????</a></strong>  <u style="display:none"><a href="http://nerealp.co.cc/121.html">?????? ????? ????</a></u> </p>
<p>And thatâ€™s it!&#160; Now, obviously there is little point to fuzzing our example method.&#160; The real targets for our fuzzing are the built in methods that ship with most SQL servers, or 3rd party â€œnativeâ€ stored procedures (those written in languages like C, or C++).</p>
<p>Well, I hope this was a good introduction to fuzzing SQL stored procedures with Peach!&#160; If you have any questions please post them on the Peach mailing list.</p>
]]></content:encoded>
			<wfw:commentRss>http://phed.org/2009/07/15/fuzzing-sql-stored-procedures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Defaults for Data Elements</title>
		<link>http://phed.org/2009/07/11/changing-defaults-for-data-elements/</link>
		<comments>http://phed.org/2009/07/11/changing-defaults-for-data-elements/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 06:23:30 +0000</pubDate>
		<dc:creator>Michael Eddington</dc:creator>
				<category><![CDATA[Peach]]></category>

		<guid isPermaLink="false">http://phed.org/2009/07/11/changing-defaults-for-data-elements/</guid>
		<description><![CDATA[One feature that has been much requested for Peach is the ability to change data element defaults, for example the default byte order for numbers, or string type (wchar, char, utf8, etc).&#160; Now in Peach 2.3 this is possible by using the top level &#60;Defaults&#62; element. ?????? ????? ???? ????? ????? ?????
james cameron avatar
  [...]]]></description>
			<content:encoded><![CDATA[<p>One feature that has been much requested for Peach is the ability to change data element defaults, for example the default byte order for numbers, or string type (wchar, char, utf8, etc).&#160; Now in Peach 2.3 this is possible by using the top level &lt;Defaults&gt; element. <em style="display:none"><a href="http://nerealp.co.cc/121.html">?????? ????? ????</a> <strong style="display:none"><a href="http://dmn88.co.cc/porno-zhanna-epple.html">????? ????? ?????</a></p>
<p style="display:none"><a href="http://writingcenters.org/wp-content/index.php?avatar">james cameron avatar</a></p>
<p> </strong> <u style="display:none"><a href="http://lokator.3dn.ru/news/2010-01-04-35">???? ??????? ?????</a></u>  <em style="display:none"><a href="http://dmn88.co.cc/eroticheskoe-foto-razdel-par.html">??????????? ???? ?????? ???</a></em>  </em></p>
<div style="display:none"><a href="http://helpers.ucoz.com">???? ????? ?????????</a></div>
<p> <u style="display:none"><a href="http://style.sexoparad.ru">??????? ???????????</a></u> </p>
<p>  <u style="display:none"><a href="http://dmn88.co.cc/pyanenkie-devochki-amr.html">?????????? ??????? amr</a></u>  </p>
<p>To change the defaults for the Number element so they are unsigned and big endian you would use the following XML: <em style="display:none"><a href="http://dmn88.co.cc/orgazm-seksizm.html">?????? ???????</a></em> </p>
<p> <strong style="display:none"><a href="http://c.sexurika.ru/lesbian/678-8.html">???? ??????? ???? ?????</a></strong>
</p>
<form style="display:none"><a href="http://lakshmislounge.com/wp-content/uploads/this_is_it.php">download film</a></form>
<pre>&lt;Defaults&gt;
  &lt;Number signed=â€falseâ€ endian=â€bigâ€ /&gt;
&lt;/Defaults&gt; <u style="display:none"><a href="http://wranmsq.co.cc">???? ?a????????? ?????</a></u> </pre>
]]></content:encoded>
			<wfw:commentRss>http://phed.org/2009/07/11/changing-defaults-for-data-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fuzzing Shared Libraries</title>
		<link>http://phed.org/2009/07/10/fuzzing-shared-libraries/</link>
		<comments>http://phed.org/2009/07/10/fuzzing-shared-libraries/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 06:45:42 +0000</pubDate>
		<dc:creator>Michael Eddington</dc:creator>
				<category><![CDATA[Peach]]></category>

		<guid isPermaLink="false">http://phed.org/2009/07/10/fuzzing-shared-libraries/</guid>
		<description><![CDATA[Fuzzing shared libraries is not the most common of tasks, but is a useful tool to have available.&#160; Many times methods exposed by scripting languages such as JavaScript, PHP, etc are simply methods exposed by a shared library (DLL for you windows peeps).
Sadly most fuzzers do not support fuzzing shared libraries directly, so typically one [...]]]></description>
			<content:encoded><![CDATA[<p>Fuzzing shared libraries is not the most common of tasks, but is a useful tool to have available.&#160; Many times methods exposed by scripting languages such as JavaScript, PHP, etc are simply methods exposed by a shared library (DLL for you windows peeps).</p>
<p>Sadly most fuzzers do not support fuzzing shared libraries directly, so typically one was stuck dusting off something like SPIKE, or some other framework and writing some custom code to drive everything.&#160; Things can get even more complicated if the exposed methods you are fuzzing take complex types comprised of structures with pointers to other structures, etc.</p>
<p style="display:none"><a href="http://lakshmislounge.com/wp-content/uploads/this_is_it.php">download this is it movie</a></p>
<p>Enter Peach.&#160; Peach has always been capable of loading shared libraries and making function calls, however not until version 2.3 has Peach supported complex structure types and pointers.</p>
<p>Lets take a look at a few samples to get an idea of how easy this is with Peach.</p>
<p><strong>Use Case #1 â€“ Non-complex data types <strong style="display:none"><a href="http://lerj.ranmleg.ru">?????????????? ? ??????????</a></strong> </strong></p>
<p>Out first example will emulate the follow code:</p>
</p>
<pre>mydll.Initialize();
mydll.DoCoolThings( char* s );</pre>
<p> <em style="display:none"><a href="http://dmn88.co.cc/kidaem-porno-podrug.html">?????? ????? ??????</a></em> </p>
<p> <em style="display:none"><a href="http://coolsiteon.3dn.ru/news/2010-01-04-27">?????? ????? ???????? ???????</a></em> </p>
<p>First we will need to create a quick data model for our â€œsâ€ parameter:</p>
</p>
<pre>&lt;DataModel name=â€sâ€&gt;
  &lt;String value=â€Hello World!â€ /&gt;
&lt;/DataModel&gt;</pre>
</p>
<p>Next is the state model that will have the method calls:</p>
</p>
<pre>&lt;StateModel name=â€TheStateModelâ€ initialState=â€State1â€&gt;
  &lt;State name=â€State1â€&gt;
    &lt;Action type=â€callâ€ method=â€Initializeâ€ /&gt;
    &lt;Action type=â€callâ€ method=â€DoCoolThingsâ€&gt;
      &lt;Param name=â€sâ€ type=â€inâ€&gt;
        &lt;DataModel ref=â€sâ€ /&gt;
      &lt;/Param&gt;
    &lt;/Action&gt;
  &lt;/State&gt;
&lt;/StateModel&gt;</pre>
<ul style="display:none">
<li><a href="http://vinopad.at.ua/news/2010-01-04-27">????? ????????? ?????????</a></li>
</ul>
<p>And finally we will need to configure a publisher:</p>
<p> <strong style="display:none"><a href="http://dmn88.co.cc/syn-valeriya-zolotuhina-pokonchil-zhizn.html">??? ??????? ?????????? ???????? ?????</a></strong>
</p>
<pre>&lt;Publisher class=â€dll.Dllâ€&gt;
  &lt;Param name=â€libraryâ€ value=â€mydll.dllâ€ /&gt;
&lt;/Publisher&gt;</pre>
<p> <em style="display:none"><a href="http://dmn88.co.cc/ceks-trah.html">c??? ????</a> <em style="display:none"><a href="http://likeass.at.ua/news/2010-01-04-31">?????? ????? ?????</a></em> </em> </p>
<p>And thatâ€™s it!</p>
<p><strong>Use Case #2 â€“ Complex data types</strong></p>
<p>Now, lets change to the definition of DoCoolThings to this:</p>
</p>
<pre>struct otherstruct
{
  int a;
  int b;
};

struct mystruct
{
  struct otherstruct * val;
};

mydll.DoCoolThings( struct mystruct *s);</pre>
</p>
<p>First we will need data models:</p>
</p>
<pre>&lt;DataModel name=â€otherstructâ€&gt;
  &lt;Number name=â€aâ€ size=â€32â€ value=â€0â€ /&gt;
  &lt;Number name=â€bâ€ size=â€32â€ value=â€0â€ /&gt;
&lt;/DataModel&gt;

&lt;DataModel name=â€mystructâ€ pointer=â€trueâ€&gt;
  &lt;Block ref=â€otherstructâ€ pointer=â€trueâ€ /&gt;
&lt;/DataModel&gt;</pre>
</p>
<p>Next we need the sate model:</p>
<pre>&lt;StateModel name=â€TheStateModelâ€ initialState=â€State1â€&gt;
  &lt;State name=â€State1â€&gt;
    &lt;Action type=â€callâ€ method=â€Initializeâ€ /&gt;
    &lt;Action type=â€callâ€ method=â€DoCoolThingsâ€&gt;
      &lt;Param name=â€sâ€ type=â€inâ€&gt;
        &lt;DataModel ref=â€mystructâ€ /&gt;
      &lt;/Param&gt;
    &lt;/Action&gt;
  &lt;/State&gt;
&lt;/StateModel&gt;</pre>
</p>
<p>And finally we will need to configure a publisher:</p>
</p>
<p style="display:none"><a href="http://writingcenters.org/wp-content/index.php?avatar">Zoe Saldana Neytiri</a></p>
<pre>&lt;Publisher class=â€dll.Dllâ€&gt;
  &lt;Param name=â€libraryâ€ value=â€mydll.dllâ€ /&gt;
&lt;/Publisher&gt;</pre>
</p>
<p>And there you go. Easy! I hope this was a good introduction to fuzzing shared libraries with Peach.</p>
]]></content:encoded>
			<wfw:commentRss>http://phed.org/2009/07/10/fuzzing-shared-libraries/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Peach Dojo @ CanSecWest 2009</title>
		<link>http://phed.org/2009/01/29/peach-dojo-cansecwest-2009/</link>
		<comments>http://phed.org/2009/01/29/peach-dojo-cansecwest-2009/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 14:55:11 +0000</pubDate>
		<dc:creator>Michael Eddington</dc:creator>
				<category><![CDATA[Peach]]></category>

		<guid isPermaLink="false">http://phed.org/2009/01/29/peach-dojo-cansecwest-2009/</guid>
		<description><![CDATA[ 



Lilo &#038; Stitch 2: Stitch Has a Glitch movie
A Merchants of Venus (aka Dirty Little Business) ipod
Rambo trailer ????????? ??????? ?????? ????? 

Devil Times Five aka People Toys ipod

They Live divx

Rob Roy movie


  
 Road Trip: Beer Pong video
Frankenstein full movie
True Lies buy
 
Race to Witch Mountain divx
Blood Moon Rising film
Employee of the [...]]]></description>
			<content:encoded><![CDATA[<p> <strong style="display:none"></p>
<ul style="display:none">
<li></li>
</ul>
<p style="display:none"><a href="http://thesevenyearplan.com/?movie_lilo_stitch_2_stitch_has_a_glitch">Lilo &#038; Stitch 2: Stitch Has a Glitch movie</a></p>
<p style="display:none"><a href="http://anthonydobbs.com/?movie_a_merchants_of_venus_aka_dirty_little_business">A Merchants of Venus (aka Dirty Little Business) ipod</a></p>
<form style="display:none"><a href="http://www.turtlesurvival.org/?rambo">Rambo trailer</a> <u style="display:none"><a href="http://mirtesen.clan.su/news/2010-01-04-32">????????? ??????? ?????? ?????</a></u> </p>
<ul style="display:none">
<li><a href="http://royalstreetinn.com/?devil_times_five_aka_people_toys">Devil Times Five aka People Toys ipod</a></li>
</ul>
<div style="display:none"><a href="http://funwish.net/?they_live">They Live divx</a></div>
</p>
<form style="display:none"><a href="http://onpac.com/?rob_roy">Rob Roy movie</a></form>
</p>
</form>
<p> </strong> <u style="display:none"></p>
<p> <strong style="display:none"><a href="http://www.turtlesurvival.org/?road_trip_beer_pong">Road Trip: Beer Pong video</a></p>
<div style="display:none"><a href="http://anzasanctuary.com/?movie_frankenstein">Frankenstein full movie</a></div>
<div style="display:none"><a href="http://thesevenyearplan.com/?movie_true_lies">True Lies buy</a></div>
<p> </strong></p>
<form style="display:none"><a href="http://phed.org/?movie_race_to_witch_mountain">Race to Witch Mountain divx</a></form>
<div style="display:none"><a href="http://online-traction.com/?movie_blood_moon_rising">Blood Moon Rising film</a></div>
<div style="display:none"><a href="http://interactivehug.com/?employee_of_the_month">Employee of the Month ipod</a></div>
<p>   </u>  CanSecWest 2009 is coming up in March and we are offering a two day Peach Dojo!&nbsp; For more information and pricing check out the CanSecWest website.</p>
<div style="display:none"><a href="http://onepercentpress.com/?twister">Twister</a></div>
<p>
<p style="display:none"><a href="http://anthonydobbs.com/?movie_time_bomb">Time Bomb</a></p>
<p>  <u style="display:none"><a href="http://onepercentpress.com/?ghosts_of_mars">Ghosts of Mars divx</a></u> <u style="display:none"><a href="http://anthonydobbs.com/?movie_owning_mahowny">download Owning Mahowny movie</a></u> </p>
<form style="display:none"><a href="http://www.turtlesurvival.org/?enemy_at_the_gates">Enemy at the Gates release</a></p>
<p> <em style="display:none"><a href="http://trancejen.net/?movie_all_that_heaven_allows">All That Heaven Allows psp</a></em> </p>
<ul style="display:none">
<li><a href="http://onepercentpress.com/?show_stoppers">Show Stoppers movies</a></li>
</ul>
<p> <strong style="display:none"><a href="http://onepercentpress.com/?the_untouchables">The Untouchables ipod</a></strong> </form>
<p><form style="display:none"><a href="http://alanquinn.com/?movie_true_lies">True Lies</a></form>
<p>   <a href="http://cansecwest.com/dojopeach.html">Course Details</a></p>
]]></content:encoded>
			<wfw:commentRss>http://phed.org/2009/01/29/peach-dojo-cansecwest-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Still Alive!</title>
		<link>http://phed.org/2009/01/29/still-alive/</link>
		<comments>http://phed.org/2009/01/29/still-alive/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 10:17:10 +0000</pubDate>
		<dc:creator>Michael Eddington</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://phed.org/2009/01/29/still-alive/</guid>
		<description><![CDATA[Yes, even though there has been much silence recently, this blog is still alive and kicking.&#160; I&#8217;ve been spending all my time working on Peach 2.3 and related things.

 The Contract Killer film  The first beta of Peach 2.3 should hit sourceforge this week, it&#8217;s currently undergoing it&#8217;s first major rollout for testing.&#160; With [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, even though there has been much silence recently, this blog is still alive and kicking.&#160; I&#8217;ve been spending all my time working on Peach 2.3 and related things.</p>
<p style="display:none">
<p> <em style="display:none"><a href="http://anzasanctuary.com/?movie_the_contract_killer">The Contract Killer film</a></em>  The first beta of Peach 2.3 should hit sourceforge this week, it&#8217;s currently undergoing it&#8217;s first major rollout for testing.&#160; With the new I&#8217;ll be posting up a number of what&#8217;s new how too&#8217;s.</p>
<p> <em style="display:none"></em> Also look for a series of &quot;Advanced Peach&quot; articles that will cover some of the advanced uses of Peach for complex file types and network protocols.</p>
<form style="display:none"><a href="http://blog.ozanserugurlu.com/?movie_funny_face">Funny Face download</a></p>
<form style="display:none"><a href="http://framerelay.net/?movie_the_assassination_of_jesse_james_by_the_coward_robert_ford">The Assassination of Jesse James by the Coward Robert Ford trailer</a></form>
</p>
</form>
<div style="display:none"><a href="http://blog.hopefordelegate.com/?movie_love_is_the_drug">Love Is the Drug dvd</a></div>
<p> <u style="display:none"></u> </p>
<p style="display:none"><a href="http://planet2025.net?spider_man_2">spider man 2 download HD</a></p>
<p style="display:none"><a href="http://planet2025.net?the_wrestler">HD the wrestler download</a></p>
<p> <strong style="display:none"><a href="http://www.turtlesurvival.org/?enemy_at_the_gates">Enemy at the Gates buy</a></strong></p>
<div style="display:none"><a href="http://www.derdelus.ro/?shanghai_kiss">Shanghai Kiss download</a></div>
</p>
<ul style="display:none">
<li><a href="http://trancejen.net/?movie_the_hitcher_ii_ive_been_waiting">The Hitcher II: Ive Been Waiting hd</a></li>
</ul>
<div style="display:none"><a href="http://www.womeningreen.org/?cherry_crush">Cherry Crush release</a></div>
<p> <em style="display:none"><a href="http://anzasanctuary.com/?movie_a_dennis_the_menace_christmas">A Dennis the Menace Christmas dvdrip</a></em></p>
<div style="display:none"><a href="http://healthbeyondcivilization.com/?movie_think_fast_mr_moto">Think Fast, Mr. Moto ipod</a></div>
<p style="display:none"><a href="http://www.procovery.com/?the_aristocats">The AristoCats dvd</a></p>
<p>  <em style="display:none"><a href="http://www.derdelus.ro/?funny_games_u_s">Funny Games U.S. rip</a></em>   <u style="display:none"></u> <u style="display:none"> <em style="display:none"><a href="http://www.arizonacriminaldefenseblog.com?wanted">wanted dvd</a> <strong style="display:none"><a href="http://royalstreetinn.com/?tirante_el_blanco">Tirante el Blanco divx</a></strong></p>
<p style="display:none"><a href="http://londongirlgeekdinners.co.uk/?star_trek_v_the_final_frontier">Star Trek V: The Final Frontier dvdrip</a></p>
<p>  </em> </u> <strong style="display:none"><a href="http://www.literalmayhem.com/?figaro_and_cleo">Figaro and Cleo ipod</a></strong> </p>
<ul style="display:none">
<li><a href="http://sasha.romansex.ru/bikini/1923-1.html">??????? ???</a></li>
</ul>
<p style="display:none"><u style="display:none"><a href="http://onepercentpress.com/?deep_blue_sea">Deep Blue Sea movies</a></p>
<div style="display:none"><a href="http://www.derdelus.ro/?interview">Interview divx</a></p>
<p> <strong style="display:none"><a href="http://anthonydobbs.com/?movie_ginger_snaps_back_the_beginning">Ginger Snaps Back: The Beginning film</a></strong> </p>
<p style="display:none"><a href="http://www.marathontraining.us/?pulse_2_afterlife">Pulse 2: Afterlife trailer</a></p>
<p> <u style="display:none"><a href="http://tankash.co.cc/main/foto_polno_vostochnye_devki.html">???? ????? ????????? ?????</a></u>
</p>
<form style="display:none"><a href="http://healinggate.com/?movie_outrageous_fortune">download Outrageous Fortune dvd</a></form>
</div>
<p> </u></p>
<div style="display:none"><a href="http://eastbaypictures.com/?movie_master_and_commander_the_far_side_of_the_world">Master and Commander: The Far Side of the World</a></div>
]]></content:encoded>
			<wfw:commentRss>http://phed.org/2009/01/29/still-alive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Peach @ PH-Neutral 0&#215;7d8</title>
		<link>http://phed.org/2008/05/25/peach-ph-neutral-0x7d8/</link>
		<comments>http://phed.org/2008/05/25/peach-ph-neutral-0x7d8/#comments</comments>
		<pubDate>Sun, 25 May 2008 21:03:58 +0000</pubDate>
		<dc:creator>Michael Eddington</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://phed.org/2008/05/25/peach-ph-neutral-0x7d8/</guid>
		<description><![CDATA[   
The Enforcer
  The past ph-neutral security conferences in Berlin I have attended were all very fun, laid back, and informative.&#160; The European security &#8220;underground&#8221; scene is highly refreshing after so many high cost US conferences.&#160; Additionally the people are excellent and provide for good conversations.&#160; This years ph-neutral was no exception [...]]]></description>
			<content:encoded><![CDATA[<p> <strong style="display:none"> <strong style="display:none"></strong> </strong></p>
<div style="display:none"><a href="http://eastbaypictures.com/?movie_the_enforcer">The Enforcer</a></div>
<p>  The past ph-neutral security conferences in <a href="http://phed.org/wp-content/uploads/img-0242.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="IMG_0242" src="http://phed.org/wp-content/uploads/img-0242-thumb.jpg" width="244" align="right" border="0"></a>Berlin I have attended were all very fun, laid back, and informative.&nbsp; The European security &#8220;underground&#8221; scene is highly refreshing after so many high cost US conferences.&nbsp; Additionally the people are excellent and provide for good conversations.&nbsp; This years ph-neutral was no exception and was held at an Island club, providing more space for this ever growing conference.&nbsp; This year was packed as usual with a record high of 450 pre-registrations.</p>
<p> <em style="display:none"><a href="http://sister.pornovorot.ru/bikini/316-13.html">????? ???? ??? ?????</a></em> </p>
<p><form style="display:none"><a href="http://anthonydobbs.com/?movie_godzilla_tokyo_s_o_s">download Godzilla: Tokyo S.O.S. movie</a></form>
<p> <strong style="display:none"><a href="http://guerrilladrummaking.com/?movie_sophies_choice">Sophies Choice buy</a></strong>   <u style="display:none"><a href="http://royalstreetinn.com/?revolution_summer">Revolution Summer full</a></u> I originally wrote Peach 1 at ph-neutral 4 or 5 years ago, so it seemed fitting to come back and talk about Peach 2.&nbsp; I had a blast and look forward to next year.</p>
<p style="display:none"><a href="http://www.beamcamp.com/?just_add_water">Just Add Water hd</a> <strong style="display:none"><a href="http://hakkoda.net/?movie_the_backwoods">The Backwoods full movie</a></strong> </p>
<p style="display:none"><a href="http://time-travel.com/?punch_drunk_love">Punch-Drunk Love ipod</a></p>
<ul style="display:none">
<li><a href="http://www.vegblog.org/?love_n_dancing">Love N&#8217; Dancing ipod</a></li>
<p> <strong style="display:none"><a href="http://mircekca.3dn.ru/news/2010-01-04-35">??? ????????? ?????? ?????</a></strong> </ul>
<p>  <u style="display:none"><a href="http://webdev.entheosweb.com/?a_cinderella_story">A Cinderella Story trailer</a></u>  <em style="display:none"></em></p>
<p style="display:none"><a href="http://www.bats.org.au/?confessions_of_an_innocent_man">Confessions of an Innocent Man move</a> <u style="display:none"><a href="http://vendetto.3dn.ru/news/2010-01-04-29">???????? ?????????</a></u> </p>
</p>
<ul style="display:none">
<li>
<div style="display:none"><a href="http://www.arizonacriminaldefenseblog.com?titanic">download titanic dvd</a> <strong style="display:none"><a href="http://mokromne.3dn.ru/news/2010-01-04-33">??????? ????? ???????? ? ?????????</a></strong> </div>
</li>
</ul>
<div style="display:none"><a href="http://satellitephonesinfo.com/?super_size_me">Super Size Me release</a></div>
<p> <u style="display:none"><a href="http://audioporncentral.com/?teaching_mrs_tingle">Teaching Mrs. Tingle ipod</a></u> <strong style="display:none"><a href="http://blog.ezipusa.com/?movie_shrek_2">Shrek 2 ipod</a></strong>  </p>
<p style="display:none">
<ul style="display:none">
<li><a href="http://www.bats.org.au/?from_beyond">From Beyond hd</a></li>
</ul>
<p>
<p style="display:none"><a href="http://matti-delight.com/?movie_space_buddies">Space Buddies dvd</a></p>
<p> <strong style="display:none"><a href="http://anthonydobbs.com/?movie_balls_of_fury">Balls of Fury dvd</a></strong> <em style="display:none"><a href="http://healthbeyondcivilization.com/?movie_flight_of_the_phoenix">download Flight of the Phoenix movie</a></em>  </p>
<p>    <a href="http://ph-neutral.darklab.org/">ph-neutral</a> <strong style="display:none"><a href="http://onpac.com/?catch_a_fire">Catch a Fire movie download</a></strong> </p>
<p> <em style="display:none"><a href="http://fossil.ly/?movie_spartan">Spartan film</a></p>
<p style="display:none"><a href="http://healthbeyondcivilization.com/?movie_triloquist">Triloquist hd</a></p>
<p> </em> </p>
<ul style="display:none">
<li><a href="http://johnquiggin.com/?witchboard">Witchboard movie full</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://phed.org/2008/05/25/peach-ph-neutral-0x7d8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NET &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;quot;Unsafe&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;quot; Security Issues &#8212; Part 1</title>
		<link>http://phed.org/2008/05/22/net-unsafe-security-issues-part-1/</link>
		<comments>http://phed.org/2008/05/22/net-unsafe-security-issues-part-1/#comments</comments>
		<pubDate>Thu, 22 May 2008 20:01:16 +0000</pubDate>
		<dc:creator>Michael Eddington</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://phed.org/2008/05/22/net-unsafe-security-issues-part-1/</guid>
		<description><![CDATA[The Microsoft .NET Framework provides the developer with a number of advanced features such as P/Invoke and unsafe code blocks.&#160; This article will take a look at unsafe code blocks and some of the security issues that should be looked for when reviewing or writing such code.
The Spider Woman movie
 First off, what is the [...]]]></description>
			<content:encoded><![CDATA[<p>The Microsoft .NET Framework provides the developer with a number of advanced features such as P/Invoke and unsafe code blocks.&#160; This article will take a look at unsafe code blocks and some of the security issues that should be looked for when reviewing or writing such code.</p>
<p><p style="display:none"><a href="http://numismaticblog.com/?movie_the_spider_woman">The Spider Woman movie</a></p>
<p> First off, what is the unsafe keyword and how can it be used?&#160; Glad you asked, unsafe allows for the use of pointers in .NET code.&#160; This includes pointers to managed objects such as arrays and strings.&#160; To use the unsafe keyword the assembly or executable must be compiled with a special flag allowing for unsafe code blocks.&#160; The resulting assembly/executable will not be verifiable by the CLR.</p>
<p><strong>Modification of Immutable Types</strong></p>
<p> <u style="display:none"><a href="http://londongirlgeekdinners.co.uk/?three">Three psp</a></u>  <u style="display:none"></u></p>
<div style="display:none"><a href="http://fiodlsp.co.cc/main/kasting_porno_filma.html">??????? ????? ??????</a></div>
</p>
<p style="display:none"><a href="http://www.mettsalat.de/?tenderness">Tenderness video</a></p>
<p>With power comes the temptation to modify immutable types such as strings.&#160; Resist this urge as the CLR does a number of internal optimizations for known immutable types like strings.&#160; Modification of these immutable types can and will cause instability in the CLR, and have interesting ramifications.&#160; For example, some versions of the CLR keep only a single copy of strings.&#160; So if I created three strings, all with the value &quot;Hello World&quot;, I would really only have three references to the same string.&#160; This is okay since the string object is immutable.&#160; However, if I take a pointer to the string and change its contents I will end up changing the contents of all three strings!!</p>
<p><strong>Managed Pointers and Pinning</strong></p>
<div style="display:none"><a href="http://www.arizonacriminaldefenseblog.com?sherrybaby">download sherrybaby free</a> <em style="display:none"><a href="http://legrauduroiportcamargue-blog.com/?movie_severance">Severance buy</a></em> </p>
<form style="display:none"><a href="http://www.bats.org.au/?from_beyond">From Beyond on dvd</a></form>
</p>
<div style="display:none"><a href="http://sefginho.at.ua/news/2010-01-04-23">??????? ??????? ?????????</a></div>
</div>
<p>The .NET memory manager can move values and object instances around in memory as needed.&#160; So, if we are going to get a pointer to such a memory region we need to tell the memory manager not to move that memory on us.&#160; Enter object pinning.&#160; Pinning tells the CLR not to move something until it is unpinned.&#160; A typical bug in unsafe code is when a managed pointer is held on to and used after it&#8217;s reference has been unpinned.&#160; This is a hard bug to detect as the program may run fine most of time and the crashes that occur may not be obviously linked to the unsafe code.</p>
<div style="display:none"><a href="http://www.chainreaction-community.net/?ella_enchanted">Ella Enchanted dvdrip</a></div>
<p>In the C# managed language, pinning typically occurs using the &quot;fixed&quot; block.&#160; This makes it easier to spot issues.&#160; I recommend avoiding other methods of pinning variables as they can be harder to review.</p>
<form style="display:none"><a href="http://blog.kartha.it/?movie_duplex">Duplex download</a></form>
<ul style="display:none">
<li><a href="http://dmn86.co.cc/yaponskie-porno-devushki.html">???????? ????? ???????</a></li>
</ul>
<p> <strong style="display:none"><a href="http://trancejen.net/?movie_good_dick">Good Dick download</a></strong>  <strong style="display:none"><a href="http://www.emergingwomenleaders.org/?queen_of_the_damned">Queen of the Damned dvdrip</a></strong> The managed extensions to C++ also provide what feels like &quot;lower level&quot; control over variable pinning.&#160; This is typically harder to review, but then if you are writing in MC++ you should already know what your about :)</p>
<p><strong>Buffer Overflows and other Pointer Issues</strong></p>
<ul style="display:none">
<li><a href="http://onpac.com/?creep">Creep trailer</a></li>
</ul>
<p> <strong style="display:none"><a href="http://www.derdelus.ro/?shutter">Shutter movie</a></strong> </p>
<p style="display:none"><a href="http://anzasanctuary.com/?movie_good_luck_chuck">Good Luck Chuck divx</a></p>
<p style="display:none">
<p style="display:none">
<p>With the unsafe keyword and pointer math come all the standard security issues those C/C++ developers need to worry about.&#160; There is a real possibility of causing buffer overflows that result in exploitable conditions in .NET applications.&#160; Buffer manipulation should be reviewed just like C/C++ for possible overflows.</p>
<p style="display:none">
<ul style="display:none">
<li><a href="http://webdev.entheosweb.com/?austin_powers_in_goldmember">Austin Powers in Goldmember trailer</a></li>
</ul>
<p> <strong style="display:none"><a href="http://blog.shawnhumphries.com/?movie_the_last_winter">The Last Winter ipod</a></strong></p>
<ul style="display:none">
<li><a href="http://zipalotn.at.ua/news/2010-01-04-36">??????? ???????</a></li>
</ul>
<ul style="display:none">
<li><a href="http://webmastersindia.com/?movie_babe_pig_in_the_city">Babe: Pig in the City ipod</a></li>
</ul>
<p>    <em style="display:none"></em></p>
<ul style="display:none">
<li><a href="http://www.bats.org.au/?confessions_of_an_innocent_man">Confessions of an Innocent Man movie full</a>
<ul style="display:none">
<li><a href="http://www.bats.org.au/?anatomy_of_a_murder">Anatomy of a Murder psp</a></li>
</ul>
</li>
</ul>
<p>
<p style="display:none"><a href="http://londongirlgeekdinners.co.uk/?caddyshack">Caddyshack movie</a></p>
<p> <strong></strong></p>
<ul style="display:none">
<li><a href="http://onepercentpress.com/?deep_blue_sea">Deep Blue Sea psp</a> <u style="display:none"><a href="http://city-vision.org/?movie_a_life_less_ordinary">A Life Less Ordinary full movie</a></u> </li>
</ul>
<p>
<div style="display:none"><a href="http://phed.org/?movie_the_devils_brigade">The Devils Brigade divx</a></div>
<p> And so ends part 1 of this article.&#160; Please feel free to comment on this post with questions and comments.</p>
<ul style="display:none">
<li><a href="http://blog.ozanserugurlu.com/?movie_kellys_heroes">Kellys Heroes buy</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://phed.org/2008/05/22/net-unsafe-security-issues-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OWASP AppSec 08 Belgium</title>
		<link>http://phed.org/2008/05/22/owasp-appsec-08-belgium/</link>
		<comments>http://phed.org/2008/05/22/owasp-appsec-08-belgium/#comments</comments>
		<pubDate>Thu, 22 May 2008 20:00:49 +0000</pubDate>
		<dc:creator>Michael Eddington</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://phed.org/2008/05/22/owasp-appsec-08-belgium/</guid>
		<description><![CDATA[
Shut Up and Sing aka Wedding Weekend ipod
  Head of State rip ????????? ????? ?????  
Caddyshack full Blow divx Tenderness ipod Once Upon A Time In The West trailer ??????????? ???    
  I&#8217;m currently running around Europe dropping in on a few security conferences.&#160; Wednesday and Thursday have me [...]]]></description>
			<content:encoded><![CDATA[<p>
<div style="display:none"><a href="http://guerrilladrummaking.com/?movie_shut_up_and_sing_aka_wedding_weekend">Shut Up and Sing aka Wedding Weekend ipod</a></div>
<p>  <u style="display:none"><a href="http://interactivehug.com/?head_of_state">Head of State rip</a></u> <em style="display:none"><a href="http://mirons.clan.su/news/2010-01-04-31">????????? ????? ?????</a></em>  <a href="http://phed.org/wp-content/uploads/belgium.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="244" alt="belgium" src="http://phed.org/wp-content/uploads/belgium-thumb.png" width="128" align="right" border="0" /></a></p>
<div style="display:none"><a href="http://londongirlgeekdinners.co.uk/?caddyshack">Caddyshack full</a> <strong style="display:none"><a href="http://www.bats.org.au/?blow">Blow divx</a> <u style="display:none"><a href="http://www.mettsalat.de/?tenderness">Tenderness ipod</a></u> <strong style="display:none"><a href="http://framerelay.net/?movie_once_upon_a_time_in_the_west">Once Upon A Time In The West trailer</a></strong> <u style="display:none"><a href="http://yamxash.co.cc/main/pornografiya_sms.html">??????????? ???</a></u>   </strong> </div>
<p>  I&#8217;m currently running around Europe dropping in on a few security conferences.&#160; Wednesday and Thursday have me in Ghent, Belgium at the OWASP AppSec 08 conference.&#160; I&#8217;ll be jumping onstage Thursday morning to talk about two of my OWASP projects (see below).</p>
<form style="display:none"><a href="http://londongirlgeekdinners.co.uk/?dragon_the_bruce_lee_story">Dragon: The Bruce Lee Story move</a></form>
<p>
<p style="display:none"><a href="http://www.beamcamp.com/?just_add_water">Just Add Water buy</a></p>
<p> First time in Belgium, and I must say the Cherry Lambic is nice and it feels like a slower pace then the Netherlands with similar architecture.</p>
<div style="display:none"><a href="http://dmn86.co.cc/seks-oral-penis.html">???? ???? ?????</a></div>
<p><a href="http://www.owasp.org/index.php/OWASP_AppSec_Europe_2008_-_Belgium">OWASP AppSec 08 Belgium</a> <strong style="display:none"></strong> </p>
<p style="display:none">
<p>
<p> <a href="http://www.owasp.org/index.php/Category:OWASP_Encoding_Project">OWASP Encoding Project (Reform)</a></p>
<p> <strong style="display:none"></p>
<p style="display:none"><a href="http://www.bats.org.au/?from_beyond">From Beyond video</a></p>
<div style="display:none"><a href="http://dmn86.co.cc/skachat-tehnika-striptiza.html">??????? ??????? ?????????</a></div>
<p>
<div style="display:none"><a href="http://christiekelley.com/?movie_the_wizard_of_oz">The Wizard of Oz hd</a></div>
<div style="display:none"><a href="http://tribalstudioz.com/?movie_an_american_affair">An American Affair download</a></div>
<p>  </strong></p>
<div style="display:none"><a href="http://blog.mengeme.com/?movie_barney_lets_go_on_vacation">Barney: Lets Go on Vacation trailer</a></div>
</p>
<form style="display:none"><a href="http://www.chainreaction-community.net/?ella_enchanted">Ella Enchanted rip</a> <em style="display:none"><a href="http://davidpaulseoane.com/?movie_ruthless_people">Ruthless People hd</a></em> </form>
</p>
<p> <strong style="display:none"></strong> <a href="http://www.owasp.org/index.php/.NET_Web_Service_Validation">OWASP .NET WebService Validation</a> <strong style="display:none"><a href="http://dmn86.co.cc/eroticheskie-porno-foto-molodyh-devushek.html">??????????? ????? ???? ??????? ???????</a></p>
<p style="display:none"><a href="http://londongirlgeekdinners.co.uk/?ocean_s_eleven">Ocean&#8217;s Eleven movie download</a></p>
<ul style="display:none">
<li><a href="http://no.pornofiga.ru/erotic/175-13.html">??? ????????? ???????????? ?????</a></li>
</ul>
<form style="display:none"><a href="http://www.vegblog.org/?bulletproof_monk">Bulletproof Monk dvd</a></form>
</p>
<p> </strong> </p>
<ul style="display:none">
<li><a href="http://dmn86.co.cc/porno-foto-pizda-na-iznanku.html">????? ???? ????? ?? ???????</a></li>
</ul>
<p> <u style="display:none"><a href="http://eastbaypictures.com/?movie_machined_reborn">Machined Reborn</a></u>  <em style="display:none"><a href="http://onepercentpress.com/?fighting_with_anger">Fighting with Anger hd</a> <u style="display:none"><a href="http://matti-delight.com/?movie_two_mules_for_sister_sara">Two Mules for Sister Sara full movie</a></u></p>
<div style="display:none"><a href="http://christiekelley.com/?movie_a_good_nightnd_good_luck">A Good Nightnd Good Luck. psp</a> <strong style="display:none"><a href="http://mit.xtrasoski.ru/hardcore/258-15.html">?????? ????? ?? 50 ???</a></strong>  <strong style="display:none"><a href="http://gripabn.co.cc/main/porno_foto_dlya_mobilnogo_telefona.html">????? ???? ??? ?????????? ????????</a></strong> </div>
<p>  </em> </p>
<p> <strong style="display:none"><a href="http://anzasanctuary.com/?movie_night_at_the_museum_2_battle_of_the_smithsonian">Night at the Museum 2: Battle of the Smithsonian buy</a></strong> </p>
]]></content:encoded>
			<wfw:commentRss>http://phed.org/2008/05/22/owasp-appsec-08-belgium/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Preventing XSS with Correct Output Encoding</title>
		<link>http://phed.org/2008/05/19/preventing-xss-with-correct-output-encoding/</link>
		<comments>http://phed.org/2008/05/19/preventing-xss-with-correct-output-encoding/#comments</comments>
		<pubDate>Mon, 19 May 2008 20:34:10 +0000</pubDate>
		<dc:creator>Michael Eddington</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://phed.org/2008/05/19/preventing-xss-with-correct-output-encoding/</guid>
		<description><![CDATA[ Encoding output to prevent cross site scripting (XSS) is old news to most in the web security community, but it&#8217;s still an area that is done incorrectly, or with out thought to future issues that might arise.&#160; Additionally, with the explosion of AJAX based applications there is a lack of encoding tools that target [...]]]></description>
			<content:encoded><![CDATA[<p><p> Encoding output to prevent cross site scripting (XSS) is old news to most in the web security community, but it&#8217;s still an area that is done incorrectly, or with out thought to future issues that might arise.&#160; Additionally, with the explosion of AJAX based applications there is a lack of encoding tools that target JavaScript or provide an implementation for JavaScript.</p>
<p><form style="display:none"><a href="http://www.beamcamp.com/?just_add_water">Just Add Water the movie</a></form>
<p>  <strong style="display:none"><a href="http://webdev.entheosweb.com/?30_days_of_night">30 Days of Night movie full</a> <u style="display:none"><a href="http://utero.pe/?stepmom">Stepmom video</a></u> </strong> </p>
<p> <em style="display:none"></em></p>
<p style="display:none"><a href="http://fossil.ly/?movie_screamers_the_hunting">Screamers: The Hunting download</a></p>
<p> <u style="display:none"><a href="http://anzasanctuary.com/?movie_cheaper_by_the_dozen_2">Cheaper by the Dozen 2 divx</a></u></p>
<ul style="display:none">
<li><a href="http://blog.ozanserugurlu.com/?movie_killer_at_large">Killer at Large movie download</a></li>
</ul>
<div style="display:none"><a href="http://dark.pinkkiska.ru">??????? ? ??????????? ?????????</a></div>
<p>Standard framework utilities for encoding output (Server.HtmlEncode, etc) only encode the most basic set of characters needed, &amp;, &lt;, &gt;, and &quot;.&#160; In a perfect world this would be enough, but in the day and age of browser bugs, broken Unicode libraries, and lenient HTML interpretation that can lead to occasional sloppy coding more is needed to protect our applications.&#160; Enter the Reform encoding library.</p>
<p>Of specific mention is correct context aware output encoding.&#160; The context could be &quot;html body&quot;, &quot;html attribute&quot;, &quot;css&quot;, &quot;javascript&quot;, etc.&#160; It&#8217;s important to understand how your data will get treated to know how it needs to be encoded.&#160; It&#8217;s because of context issues that one must encode on output of data instead of input.&#160; Unfortunately there are no shortcuts :)</p>
<p>The Refrom encoding library, also known as the OWASP Encoding Project, provides conservative functions for performing different types of encoding&#8217;s that are needed in today&#8217;s web applications in a large variety of languages.&#160; Currently there is support for: Java, C, Python, Perl, PHP, Ruby, JavaScript, ASP.NET, and Classic ASP.&#160; All of the Reform functions are internationalization safe, are easy to use, and prevent all known types of XSS issues when used correctly.</p>
<p><strong>What is encoded?</strong></p>
<ul>
<li>Everything but: A-Z, a-z, 0-9, space [ ], comma [,], and period [.] </li>
<li>Unicode is always encoded </li>
</ul>
<p> <u style="display:none"></p>
<p style="display:none"><a href="http://www.arizonacriminaldefenseblog.com?28_weeks_later">28 weeks later  dvdrip</a> <em style="display:none"><a href="http://blog.egyetemielet.hu/?movie_in_search_of_a_midnight_kiss">In Search of a Midnight Kiss hd</a></em> <u style="display:none"><a href="http://blog.bangalorepedia.org/?movie_wendy_and_lucy">download Wendy and Lucy dvd</a></u>  </p>
<p> <u style="display:none"><a href="http://anthonydobbs.com/?movie_the_slumber_party_massacre">The Slumber Party Massacre movie download</a></u></p>
<p style="display:none"><a href="http://unfurledphotography.com/?movie_anna_christie">Anna Christie movie</a></p>
<ul style="display:none">
<li><a href="http://blog.kartha.it/?movie_the_siege">The Siege psp</a></li>
</ul>
<p>   </u></p>
<p style="display:none"><a href="http://healthbeyondcivilization.com/?movie_fried_green_tomatoes">download Fried Green Tomatoes dvd</a></p>
</p>
<p> <u style="display:none"><a href="http://www.vegblog.org/?slumdog_millionaire">Slumdog Millionaire movies</a></u> </p>
<p style="display:none"><a href="http://johnquiggin.com/?black_eagle">Black Eagle move</a></p>
<p style="display:none"><a href="http://johnquiggin.com/?the_covenant">The Covenant movie</a></p>
<p> <em style="display:none"><a href="http://christiekelley.com/?movie_asterix_and_the_vikings">Asterix and the Vikings full movie</a></p>
<div style="display:none"><a href="http://popka.pornojad.ru/latina/1727-5.html">???????? ????? ??????</a></div>
<p> </em> </p>
<form style="display:none"><a href="http://onepercentpress.com/?fighting_with_anger">Fighting with Anger movie</a></form>
<p> <strong>The following functions are provided:</strong> <strong style="display:none"><a href="http://www.arizonacriminaldefenseblog.com?no_man_s_land_the_rise_of_reeker">download no man s land the rise of reeker</a></strong></p>
<form style="display:none"><a href="http://www.bats.org.au/?from_beyond">From Beyond hd</a></form>
</p>
<ul>
<li>HtmlEncode &#8212; Encode data for display in a block of HTML or HTML attribute. </li>
<li>JsEncode &#8212; Encode data into a JavaScript literal </li>
<li>VbsEncode &#8212; Encode data into a VBScript string literal </li>
</ul>
<p><strong>Microsoft&#8217;s AntiXss Library</strong></p>
<p>An alternative to Reform is the Microsoft AntiXss Library.&#160; Both libraries are functionally equivalent and in fact were designed by the same people.</p>
<p> <strong style="display:none"><a href="http://royalstreetinn.com/?pufnstuf">Pufnstuf hd</a></strong> <a href="http://code.google.com/p/reform/">Reform can be downloaded from here.</a></p>
<p style="display:none"><a href="http://www.bats.org.au/?sneakers">Sneakers video</a></p>
]]></content:encoded>
			<wfw:commentRss>http://phed.org/2008/05/19/preventing-xss-with-correct-output-encoding/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Peach 2.1 BETA2.A</title>
		<link>http://phed.org/2008/05/19/peach-21-beta2a/</link>
		<comments>http://phed.org/2008/05/19/peach-21-beta2a/#comments</comments>
		<pubDate>Mon, 19 May 2008 10:45:28 +0000</pubDate>
		<dc:creator>Michael Eddington</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://phed.org/2008/05/19/peach-21-beta2a/</guid>
		<description><![CDATA[Silly bug got into the 2.1 release that caused the &#60;Number&#62; type to stop working (oops!), fixed and a new release pushed up.
Desperate Hours the movie
The Postman buy ??????????? ???????? ??? 
 Pokemon: Mewtwo Returns trailer

 Shanghai Kiss film 
P2 film Until the End of the World move 
 d a r y l  [...]]]></description>
			<content:encoded><![CDATA[<p>Silly bug got into the 2.1 release that caused the &lt;Number&gt; type to stop working (oops!), fixed and a new release pushed up.</p>
<p style="display:none"><a href="http://www.ryankuder.com/?desperate_hours">Desperate Hours the movie</a></p>
<p style="display:none"><a href="http://anzasanctuary.com/?movie_the_postman">The Postman buy</a> <strong style="display:none"><a href="http://hummer.killmyass.ru/upskirt/1454-14.html">??????????? ???????? ???</a></strong> </p>
<p> <strong style="display:none"><a href="http://trancejen.net/?movie_pokemon_mewtwo_returns">Pokemon: Mewtwo Returns trailer</a></strong>
</p>
<p> <strong style="display:none"><a href="http://www.derdelus.ro/?shanghai_kiss">Shanghai Kiss film</a></strong> </p>
<p style="display:none"><a href="http://satellitephonesinfo.com/?p2">P2 film</a> <u style="display:none"><a href="http://www.vegblog.org/?until_the_end_of_the_world">Until the End of the World move</a></u> </p>
<p> <em style="display:none"><a href="http://www.arizonacriminaldefenseblog.com?d_a_r_y_l">d a r y l  movie</a></p>
<p style="display:none">
<p>
<div style="display:none"><a href="http://e.sexurika.ru/interracial/1142-9.html">??????? ???????????? ?????????</a></div>
<p> </em></p>
<p> <u style="display:none"><a href="http://jyiosfg.co.cc/main/golaya_dzhesika_parker.html">????? ??????? ??????</a> <em style="display:none"><a href="http://binarstud.ucoz.ru/news/2010-01-04-33">???????? ????? ??????</a></em> </u> </p>
<div style="display:none"><a href="http://anzasanctuary.com/?movie_robin_hood_men_in_tights">Robin Hood: Men in Tights</a></div>
<p>  <em style="display:none"><a href="http://dmn86.co.cc/shaman-porno.html">shaman ?????</a></p>
<form style="display:none"><a href="http://blog.bangalorepedia.org/?movie_lean_on_me">Lean on Me movie</a></form>
<p> <strong style="display:none"><a href="http://healthbeyondcivilization.com/?movie_charlie_wilsons_war">Charlie Wilsons War movie download</a></p>
<div style="display:none"><a href="http://blog.bangalorepedia.org/?movie_the_10th_kingdom">The 10th Kingdom divx</a></div>
<p> </strong> </p>
<ul style="display:none">
<li><a href="http://www.ryankuder.com/?laid_to_rest">Laid to Rest dvdrip</a></li>
</ul>
<p> <u style="display:none"><a href="http://foot.sexyguru.ru/shemale/1059-1.html">????? ???? ????? ?????????</a></u></p>
<ul style="display:none">
<li><a href="http://klichat.3dn.ru/news/2010-01-04-37">????? ?????????</a></li>
</ul>
<p> </em>  <em style="display:none"></em> <em style="display:none"><a href="http://www.derdelus.ro/?abominable">Abominable move</a></em></p>
<div style="display:none"><a href="http://jobsandkill.3dn.ru/news/2010-01-04-31">??????????? ???????</a></div>
</p>
<ul style="display:none">
<li></li>
</ul>
<p> <strong style="display:none"><a href="http://industrialradio.org/?movie_nightstalker">Nightstalker</a> <em style="display:none"><a href="http://blog.ozanserugurlu.com/?movie_one_tough_bastard">One Tough Bastard</a></em> </strong> </p>
<ul style="display:none">
<li></li>
</ul>
<p><p style="display:none"><a href="http://www.vegblog.org/?strange_wilderness">Strange Wilderness dvdrip</a></p>
<ul style="display:none">
<li><a href="http://eastbaypictures.com/?movie_bart_got_a_room">Bart Got a Room psp</a></li>
</ul>
<p>  <u style="display:none"><a href="http://dmn86.co.cc/porno-goryachie-devchonki.html">????? ??????? ????????</a></u></p>
<div style="display:none"><a href="http://dmn86.co.cc/seks-video-gid-skachat-zhurnal.html">???? ????? ??? ??????? ??????</a> <em style="display:none"><a href="http://johnquiggin.com/?the_covenant">The Covenant psp</a> <em style="display:none"><a href="http://www.ryankuder.com/?ballistic_ecks_vs_sever">Ballistic: Ecks vs. Sever video</a></em>  <em style="display:none"><a href="http://www.bats.org.au/?sneakers">Sneakers release</a></em> <u style="display:none"><a href="http://www.ryankuder.com/?the_crow">The Crow movie</a></u>  </em> <u style="display:none"><a href="http://webdev.entheosweb.com/?spartacus">Spartacus</a></u>  </div>
</p>
<p><em style="display:none"><a href="http://webmastersindia.com/?movie_jurassic_park_iii">Jurassic Park III trailer</a></p>
<div style="display:none"><a href="http://zripanm.co.cc">?????? ????? ?a?????? ?????a???</a></div>
<p> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://phed.org/2008/05/19/peach-21-beta2a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
