<?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>Network Solution for Windows - Windows system, Linux system, Ubuntu server configuration tip</title>
	<atom:link href="http://www.w3networking.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.w3networking.com</link>
	<description></description>
	<lastBuildDate>Mon, 14 May 2012 18:25:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Php curl: problem setting HTTP_HOST</title>
		<link>http://www.w3networking.com/php-curl-problem-setting-http_host/</link>
		<comments>http://www.w3networking.com/php-curl-problem-setting-http_host/#comments</comments>
		<pubDate>Sun, 06 May 2012 05:53:45 +0000</pubDate>
		<dc:creator>XTeam</dc:creator>
				<category><![CDATA[PHP script]]></category>

		<guid isPermaLink="false">http://www.w3networking.com/?p=3497</guid>
		<description><![CDATA[I have setup an internal proxy using php and curl. Most of it is done, however, I am having trouble setting HTTP_HOST header field. This is the code I am using: Code on the proxy server:: $data_server_url = "http://IP_ADDRESS_OF_MY_CONTENT_SERVER/"; $request_uri=""; if(isset($_SERVER['REQUEST_URI'])) { $request_uri = $_SERVER['REQUEST_URI']; }; $curl_url="${data_server_url}${request_uri}"; //Pass all these fields as-they-are-got from the client [...]<br /><div><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx.php?value=10.0" /></div><div>Rating: 10.0/<strong>10</strong> (1 vote cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br />]]></description>
		<wfw:commentRss>http://www.w3networking.com/php-curl-problem-setting-http_host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP function to connect to pingomatic using cURL</title>
		<link>http://www.w3networking.com/php-function-to-connect-to-pingomatic-using-curl/</link>
		<comments>http://www.w3networking.com/php-function-to-connect-to-pingomatic-using-curl/#comments</comments>
		<pubDate>Sun, 06 May 2012 05:49:32 +0000</pubDate>
		<dc:creator>XTeam</dc:creator>
				<category><![CDATA[PHP script]]></category>

		<guid isPermaLink="false">http://www.w3networking.com/?p=3495</guid>
		<description><![CDATA[Hi I&#8217;m creating a PHP fucntion to connect to pingomatic using CURL but the response is always. Array ( [EXE] =&#62; XML-RPC server accepts POST requests only. ) here is my sample code&#8230; function curl_getpage2( $url,$data, $referer = null, $agent = null, $header = null, $timeout = 20, $proxy = null, $proxy_username = null, $proxy_password [...]<br /><div><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx.php?value=10.0" /></div><div>Rating: 10.0/<strong>10</strong> (1 vote cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br />]]></description>
		<wfw:commentRss>http://www.w3networking.com/php-function-to-connect-to-pingomatic-using-curl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using PHP cURL with an HTTP Debugging Proxy</title>
		<link>http://www.w3networking.com/using-php-curl-with-an-http-debugging-proxy/</link>
		<comments>http://www.w3networking.com/using-php-curl-with-an-http-debugging-proxy/#comments</comments>
		<pubDate>Sun, 06 May 2012 05:47:35 +0000</pubDate>
		<dc:creator>XTeam</dc:creator>
				<category><![CDATA[PHP script]]></category>

		<guid isPermaLink="false">http://www.w3networking.com/?p=3493</guid>
		<description><![CDATA[I&#8217;m using the app &#8220;Fiddler&#8221; to debug a GET attempt to a website via PHP cURL. In order to see the cURL traffic I had to specify that the cURL connection use the Fiddler proxy (see code below). $ch = curl_init(); curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1); curl_setopt($ch, CURLOPT_PROXY, '127.0.0.1:8888'); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($ch, CURLOPT_TIMEOUT, 10); curl_setopt($ch, CURLOPT_HEADERFUNCTION, [...]<br /><div><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx.php?value=10.0" /></div><div>Rating: 10.0/<strong>10</strong> (1 vote cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br />]]></description>
		<wfw:commentRss>http://www.w3networking.com/using-php-curl-with-an-http-debugging-proxy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to make a proxy using a php script?</title>
		<link>http://www.w3networking.com/proxy-php-script/</link>
		<comments>http://www.w3networking.com/proxy-php-script/#comments</comments>
		<pubDate>Sun, 06 May 2012 05:45:22 +0000</pubDate>
		<dc:creator>XTeam</dc:creator>
				<category><![CDATA[PHP script]]></category>

		<guid isPermaLink="false">http://www.w3networking.com/?p=3490</guid>
		<description><![CDATA[Let&#8217;s say i got a vps hosting with a dedicated ip, can i make a curl php script that receives a url, fetch it, and output it, and make all this as a proxy server, so i can put my vps ip in the proxy settings of the browser. Read more about script&#8230;&#8230; Is there [...]<br /><div><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx.php?value=0.0" /></div><div>Rating: 0.0/<strong>10</strong> (0 votes cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br />]]></description>
		<wfw:commentRss>http://www.w3networking.com/proxy-php-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MD5 password encryption and security</title>
		<link>http://www.w3networking.com/md5-password-encryption-and-security/</link>
		<comments>http://www.w3networking.com/md5-password-encryption-and-security/#comments</comments>
		<pubDate>Sat, 05 May 2012 10:27:15 +0000</pubDate>
		<dc:creator>XTeam</dc:creator>
				<category><![CDATA[Knowledge]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.w3networking.com/?p=3477</guid>
		<description><![CDATA[So you&#8217;re using MD5 to encrypt your users passwords and you think it&#8217;s fully secured? In this tutorial, I&#8217;ll explain how to secure your MD5 passwords and how they work. Many people think the MD5 hash string is the password but encrypted. It&#8217;s in fact a 32-character hexadecimal number corresponding to the string you entered. [...]<br /><div><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx.php?value=0.0" /></div><div>Rating: 0.0/<strong>10</strong> (0 votes cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br />]]></description>
		<wfw:commentRss>http://www.w3networking.com/md5-password-encryption-and-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exploring the Radiant CMS</title>
		<link>http://www.w3networking.com/exploring-the-radiant-cms/</link>
		<comments>http://www.w3networking.com/exploring-the-radiant-cms/#comments</comments>
		<pubDate>Fri, 04 May 2012 08:35:50 +0000</pubDate>
		<dc:creator>XTeam</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[PHP script]]></category>
		<category><![CDATA[For You & Me]]></category>
		<category><![CDATA[How-Tos]]></category>
		<category><![CDATA[Tools / Apps]]></category>

		<guid isPermaLink="false">http://www.w3networking.com/?p=3472</guid>
		<description><![CDATA[Need to build a website or weblog? Just want a simple CMS that makes your life easier? Radiant is for you! In this article, we explore some of the unique features of Radiant by creating a simple website with the basic components: header, menu, content and the footer. Remember, Radiant can do a lot more [...]<br /><div><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx.php?value=10.0" /></div><div>Rating: 10.0/<strong>10</strong> (1 vote cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br />]]></description>
		<wfw:commentRss>http://www.w3networking.com/exploring-the-radiant-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure Upload Methods in PHP</title>
		<link>http://www.w3networking.com/secure-upload-methods-in-php/</link>
		<comments>http://www.w3networking.com/secure-upload-methods-in-php/#comments</comments>
		<pubDate>Fri, 04 May 2012 08:32:28 +0000</pubDate>
		<dc:creator>XTeam</dc:creator>
				<category><![CDATA[Apache server]]></category>
		<category><![CDATA[PHP script]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Developers]]></category>
		<category><![CDATA[How-Tos]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.w3networking.com/?p=3468</guid>
		<description><![CDATA[Here’s how to deal with file upload attacks against sites developed in PHP, and how to write more secure code to prevent these attacks. In most Web applications, developers provide upload file functionality — images, for example. This functionality could be exploited by attackers to upload malicious “Web shell” code, which might give them command-prompt [...]<br /><div><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx.php?value=0.0" /></div><div>Rating: 0.0/<strong>10</strong> (0 votes cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br />]]></description>
		<wfw:commentRss>http://www.w3networking.com/secure-upload-methods-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Attacks that Target PHP-based Instances</title>
		<link>http://www.w3networking.com/attacks-that-target-php-based-instances/</link>
		<comments>http://www.w3networking.com/attacks-that-target-php-based-instances/#comments</comments>
		<pubDate>Fri, 04 May 2012 08:29:16 +0000</pubDate>
		<dc:creator>XTeam</dc:creator>
				<category><![CDATA[PHP script]]></category>
		<category><![CDATA[Target PHP-based Instances]]></category>

		<guid isPermaLink="false">http://www.w3networking.com/?p=3463</guid>
		<description><![CDATA[Beginning with Block sql injection of this series, we have covered all major attacks on Web applications and servers, with examples of vulnerable PHP code. In this article, we will cover those attacks that deal specifically with PHP, and which have not been discussed earlier. Remote File Inclusion (RFI) attacks Remote File Inclusion (RFI) is [...]<br /><div><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx.php?value=0.0" /></div><div>Rating: 0.0/<strong>10</strong> (0 votes cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://www.w3networking.com/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br />]]></description>
		<wfw:commentRss>http://www.w3networking.com/attacks-that-target-php-based-instances/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

