<?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>MadPPC &#187; Blackhat</title>
	<atom:link href="http://madppc.com/category/blackhat/feed/" rel="self" type="application/rss+xml" />
	<link>http://madppc.com</link>
	<description>PPC, PHP, and other Affiliate Marketing tips.  It's OK to be MAD!</description>
	<lastBuildDate>Fri, 16 Apr 2010 22:05:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP proxy check that also checks proxy that also checks it&#8217;s anonimity (using curl_multi)</title>
		<link>http://madppc.com/php-proxy-check-that-also-checks-proxy-that-also-checks-its-anonimity-using-curl_multi/</link>
		<comments>http://madppc.com/php-proxy-check-that-also-checks-proxy-that-also-checks-its-anonimity-using-curl_multi/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 22:04:30 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Blackhat]]></category>

		<guid isPermaLink="false">http://madppc.com/?p=658</guid>
		<description><![CDATA[Based on the requests from some others, they wanted a script that not only checked for useful proxies but to see how anonymous they are.  The first one you upload to some server, it rates the proxy based on the header information passed.  3 being highly anonymous to 1 being a transparent proxy.

&#60;?php
//proxy levels
//Level 3 [...]]]></description>
		<wfw:commentRss>http://madppc.com/php-proxy-check-that-also-checks-proxy-that-also-checks-its-anonimity-using-curl_multi/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>PHP proxy checker using curl_multi</title>
		<link>http://madppc.com/php-proxy-checker-using-curl_multi/</link>
		<comments>http://madppc.com/php-proxy-checker-using-curl_multi/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 21:31:40 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Blackhat]]></category>

		<guid isPermaLink="false">http://madppc.com/?p=653</guid>
		<description><![CDATA[Been using a certain proxy finder lately, after lengthy testing you get  lots of dead or not anonymous proxies.  Testing these one by one with  back to back curl calls is very time inefficient (testing 150 proxies even at 1 second a piece is going to take over 150 seconds).   [...]]]></description>
		<wfw:commentRss>http://madppc.com/php-proxy-checker-using-curl_multi/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Noobies Guide on How to Scrape: Part 4 &#8211; cURL</title>
		<link>http://madppc.com/noobies-guide-on-how-to-scrape-part-4-curl/</link>
		<comments>http://madppc.com/noobies-guide-on-how-to-scrape-part-4-curl/#comments</comments>
		<pubDate>Mon, 11 May 2009 19:01:06 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Blackhat]]></category>
		<category><![CDATA[Noobie Scraping Guide]]></category>
		<category><![CDATA[cURL]]></category>

		<guid isPermaLink="false">http://madppc.com/?p=520</guid>
		<description><![CDATA[Now we get the idea of POST and GET.  We found our target, we know it&#8217;s url structure, we know where the data is, but how do we use PHP to fetch the webpages?
Luckily we have what is call cURL (from PHP.net):
PHP supports libcurl, a library created by Daniel Stenberg, that    allows [...]]]></description>
		<wfw:commentRss>http://madppc.com/noobies-guide-on-how-to-scrape-part-4-curl/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Noobies Guide on How to Scrape: Part 2 &#8211; URLs, URL Variables, and using Live HTTP Headers</title>
		<link>http://madppc.com/noobies-guide-on-how-to-scrape-part-2-urls-url-variables-and-using-live-http-headers/</link>
		<comments>http://madppc.com/noobies-guide-on-how-to-scrape-part-2-urls-url-variables-and-using-live-http-headers/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 03:11:19 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Automation]]></category>
		<category><![CDATA[Blackhat]]></category>
		<category><![CDATA[Noobie Scraping Guide]]></category>
		<category><![CDATA[GET]]></category>
		<category><![CDATA[Live HTTP Headers]]></category>
		<category><![CDATA[POST]]></category>
		<category><![CDATA[URLs]]></category>
		<category><![CDATA[Variables]]></category>

		<guid isPermaLink="false">http://madppc.com/?p=460</guid>
		<description><![CDATA[Understanding the fundamentals of how sites communicate with themselves, and how we communicate with them, is crucial in being able to reverse engineering a site for our scraper.   Luckily it&#8217;s pretty easy for the most part.
Anatomy of a URL

The protocol your using.
The website your trying to get to.  Although www is synonymous with the base [...]]]></description>
		<wfw:commentRss>http://madppc.com/noobies-guide-on-how-to-scrape-part-2-urls-url-variables-and-using-live-http-headers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Noobies Guide on How to Scrape: Part 1 &#8211; Intro &amp; Tools</title>
		<link>http://madppc.com/noobies-guide-on-how-to-scrape-part-1-intro-tools/</link>
		<comments>http://madppc.com/noobies-guide-on-how-to-scrape-part-1-intro-tools/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 06:03:29 +0000</pubDate>
		<dc:creator>Brad</dc:creator>
				<category><![CDATA[Automation]]></category>
		<category><![CDATA[Blackhat]]></category>
		<category><![CDATA[Noobie Scraping Guide]]></category>
		<category><![CDATA[Scraping]]></category>

		<guid isPermaLink="false">http://madppc.com/?p=454</guid>
		<description><![CDATA[Welcome to the Noobies Guide to Scraping: Part 1.  In this installment we are only going to focus on a few very basic things that we are going to need to get started, and no code will be wrote.
What is scraping?  Scraping is the process of getting / gathering data from some web source, whether [...]]]></description>
		<wfw:commentRss>http://madppc.com/noobies-guide-on-how-to-scrape-part-1-intro-tools/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

