<?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>Patrick Talmadge &#187; Hacking</title>
	<atom:link href="http://www.patricktalmadge.com/category/hacking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.patricktalmadge.com</link>
	<description>My Thoughts and Ramblings</description>
	<lastBuildDate>Sat, 04 Feb 2012 18:59:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Hide Multiple Upload link in SharePoint 2010</title>
		<link>http://www.patricktalmadge.com/2011/04/09/hide-multiple-upload-link-in-sharepoint-2010/</link>
		<comments>http://www.patricktalmadge.com/2011/04/09/hide-multiple-upload-link-in-sharepoint-2010/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 02:20:11 +0000</pubDate>
		<dc:creator>Patrick Talmadge</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.patricktalmadge.com/?p=1351</guid>
		<description><![CDATA[<p>I had a request to hide the multiple file upload links in SharePoint 2010. After an hour or two of searching for a configuration setting, I got tired and did a simple CSS hack. Granted this doesn&#8217;t disable the functionality it only hides links. So users could still work around this if they know the [...]]]></description>
			<content:encoded><![CDATA[<p>I had a request to hide the multiple file upload links in SharePoint 2010. After an hour or two of searching for a configuration setting, I got tired and did a simple CSS hack. Granted this doesn&#8217;t disable the functionality it only hides links. So users could still work around this if they know the path. </p>
<p>Because SharePoint ignores common web standards and uses Ids with periods I had to escape the Id. CSS will treat the periods as a class declaration if they are not escaped.</p>
<p>To use this simply add the code snippet to your main CSS file or your master page in SharePoint. If this code snippet doesn&#8217;t work for you verify that the Id&#8217;s are the same in your SharePoint installation.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#ctl00_PlaceHolderMain_UploadDocumentSection_ctl03_UploadMultipleLink</span><span style="color: #00AA00;">,</span> 
<span style="color: #cc00cc;">#Ribbon</span>\.Documents\.New\.AddDocument\.Menu\.Upload\<span style="color: #6666ff;">.UploadMultiple-Menu32</span>
<span style="color: #00AA00;">&#123;</span>
         <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>	
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.patricktalmadge.com/2011/04/09/hide-multiple-upload-link-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Expand URL</title>
		<link>http://www.patricktalmadge.com/2009/11/12/expand-url/</link>
		<comments>http://www.patricktalmadge.com/2009/11/12/expand-url/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 22:14:08 +0000</pubDate>
		<dc:creator>Patrick Talmadge</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.patricktalmadge.com/?p=930</guid>
		<description><![CDATA[<p>The popularity of short URL services, like tinyurl.com and bit.ly, has grown due to the character limits of Twitter. These services pose a security risk because they could be used to conceal the addresses malicious sites. Users are being taught to trust all URLs and just blindly click. Sites like Twitter should offer users the [...]]]></description>
			<content:encoded><![CDATA[<p>The popularity of short URL services, like tinyurl.com and bit.ly, has grown due to the character limits of Twitter. These services pose a security risk because they could be used to conceal the addresses malicious sites. Users are being taught to trust all URLs and just blindly click. Sites like Twitter should offer users the ability to expand these short URLs so the user can quickly verify the trust worthiness.</p>
<p>Below is a sample php function that expands URLs. As you can see the function is extremely simple and only takes two lines of code (the rest of the code is a use example). I hope large sites will adopt similar functionality before novice users become accustomed to blindly clicking obfuscated links.</p>
<blockquote><p>&lt;?php<br />
                  $url = <span style="color: #ff0000;">&#8220;http://bit.ly/4t9IYV&#8221;</span>;<br />
                  $fullURL = expandURL($url);<br />
                   <span style="color: #0000ff;">echo</span> <span style="color: #ff0000;">&#8220;Short URL: $url&#8221;</span>;<br />
                   <span style="color: #0000ff;">echo</span> <span style="color: #ff0000;">&#8220;Original URL:&#8221;</span>.$fullURL;</p>
<p>                   <span style="color: #0000ff;">function</span> expandURL( $url )<br />
                   {<br />
                                    $fullURL = get_headers($url,1);<br />
                                    <span style="color: #0000ff;">return</span> $fullURL['Location'];<br />
                   }<br />
?&gt;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.patricktalmadge.com/2009/11/12/expand-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Structured Query Language &#8211; SQL Injection</title>
		<link>http://www.patricktalmadge.com/2007/07/31/structured-query-language-sql-injection/</link>
		<comments>http://www.patricktalmadge.com/2007/07/31/structured-query-language-sql-injection/#comments</comments>
		<pubDate>Tue, 31 Jul 2007 05:30:53 +0000</pubDate>
		<dc:creator>Patrick Talmadge</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SQL Injection]]></category>

		<guid isPermaLink="false">http://www.patricktalmadge.com/2007/07/31/structured-query-language-sql-injection/</guid>
		<description><![CDATA[<p>A major attack vector web programmers sometimes forget about is input cleansing. If user inputs are not cleansed prior to submitting the data to the SQL server attackers can submit malicious code to the server. This code can make the server return more data than it should or allow the attacker to delete entire databases.</p> [...]]]></description>
			<content:encoded><![CDATA[<p>A major attack vector web programmers sometimes forget about is input cleansing. If user inputs are not cleansed prior to submitting the data to the SQL server attackers can submit malicious code to the server. This code can make the server return more data than it should or allow the attacker to delete entire databases.</p>
<p>SQL injection points occur anytime user inputs are not properly cleansed. The most common points of attack are login pages, search pages and URL strings. Attacks are not limited to these points of entry. All user input needs to be correctly cleansed to prevent SQL injection attacks.</p>
<h2>SQL Injection Basics</h2>
<p>SQL injections a simple in theory in which the attack finds an input that is trusted and passed to the SQL server. When the attacker finds a vulnerable input it is time to force the SQL query to return true no matter what the programmer is trying to do.</p>
<p>The most common way to force a SQL statement to return true is to add  OR 1=1&#8211; to a vulnerable input.</p>
<p style="font-weight: bold; margin: 5px 0px; color: #000000; background-color: #cccccc; border: #000000 1px solid; padding: 10px;"><span style="color: #666666;">Code:</span><br />
<strong>&#8216; OR 1=1&#8242;</strong><br />
Explanation:<br />
<strong>&#8216;</strong> : Closes the string that the vulnerable input is looking for.<br />
<strong>OR</strong> : a logical expression to start allow for another statement. The OR means that if the first statement fails because of the empty entry the entire statement may evaluate to true if the second statement is true.<br />
<strong>1=1 </strong>: Since 1 will always equal 1 this expression will evaluate to true.<br />
<strong>&#8211;</strong> : Is a comment which forces SQL to ignore everything after the â€“ (dash dash).<br />
Here are a few variations along the same lines as above:</p>
<table>
<tbody>
<tr>
<td>admin&#8217;&#8211; &#8216;</td>
<td>or 0=0 &#8211;</td>
</tr>
<tr>
<td>&#8221; or 0=0 &#8211;</td>
<td>or 0=0 &#8211;</td>
</tr>
<tr>
<td>&#8216; or 0=0 # &#8220;</td>
<td>or 0=0 #</td>
</tr>
<tr>
<td>or 0=0 # &#8216;</td>
<td>or &#8216;x&#8217;='x</td>
</tr>
<tr>
<td>&#8221; or &#8220;x&#8221;=&#8221;x &#8216;)</td>
<td>or (&#8216;x&#8217;='x</td>
</tr>
<tr>
<td>&#8216; or 1=1&#8211; &#8220;</td>
<td>or 1=1&#8211;</td>
</tr>
<tr>
<td>or 1=1&#8211; &#8216;</td>
<td>or a=a&#8211;</td>
</tr>
<tr>
<td>&#8221; or &#8220;a&#8221;=&#8221;a &#8216;)</td>
<td>or (&#8216;a&#8217;='a</td>
</tr>
<tr>
<td>&#8220;) or (&#8220;a&#8221;=&#8221;a hack&#8221;</td>
<td>or &#8220;a&#8221;=&#8221;a</td>
</tr>
<tr>
<td>hack&#8221; or 1=1 &#8212; hack&#8217;</td>
<td>or 1=1 &#8211;</td>
</tr>
<tr>
<td>hack&#8217; or &#8216;a&#8217;='a hack&#8217;)</td>
<td>or (&#8216;a&#8217;='a</td>
</tr>
<tr>
<td>hack&#8221;)</td>
<td>or (&#8220;a&#8221;=&#8221;a</td>
</tr>
</tbody>
</table>
<h2>Update Data in Database</h2>
<p>The ability to edit data in the database can allow attackers to change admin passwords. This attack can be done in a URL, a search box, a login page or any other unprotected input location. The following code sample shows how a password can be changed if the table name and an account are know.</p>
<p style="font-weight: bold; margin: 5px 0px; color: #000000; background-color: #cccccc; border: #000000 1px solid; padding: 10px;"><span style="color: #666666;">Code:</span><br />
&#8216;; UPDATE &#8216;users&#8217; SET &#8216;password&#8217; = &#8216;hacked&#8217; WHERE username=&#8217;crackable&#8217;&#8211;</p>
<p>The above code updates the users table where the username is crackable. SET states that the password field for the username crackable will be changed to hacked.</p>
<h2>Insert Data into Database</h2>
<p>Inserting data into a database is very similar to updating the table. As with the Update this attack can be done in a URL, a search box, a login page or any other unprotected input location. The following example expects that the attacker knows the table and a general structure of the table.</p>
<p style="font-weight: bold; margin: 5px 0px; color: #000000; background-color: #cccccc; border: #000000 1px solid; padding: 10px;"><span style="color: #666666;">Code:</span><br />
&#8216;; INSERT INTO &#8216;users&#8217; (&#8216;id&#8217;, &#8216;username&#8217;, &#8216;password&#8217;, &#8216;details&#8217;) VALUES (1203, &#8216;myaccount&#8217;, &#8216;mypassword&#8217;, &#8216;NA&#8217;)&#8211;</p>
<p>The above code inserts a new user into the users table. A new account is created with an id of 1203, username of myaccount, password of mypassword, and details of NA. Creating new accounts is less likely to be detected than changing the password of an existing account. If enough table information can be gained to insert a new account in the users database, it is preferred over updating an existing account. If table information cannot be obtained the next best thing would be to change a users password with an update.</p>
<h2>Deleting Data from a Database</h2>
<p>Deleting data from a database is very similar to updating and inserting data in a database table. As with the update and the insert this attack can be done in a URL, a search box, a login page or any other unprotected input location. The following code sample requires the attacker to know the table name.</p>
<p style="font-weight: bold; margin: 5px 0px; color: #000000; background-color: #cccccc; border: #000000 1px solid; padding: 10px;"><span style="color: #666666;">Code:</span><br />
&#8216;; DELETE FROM &#8216;users&#8217; &#8211;</p>
<p>The above code sample deletes all the data from the users table. In general an attacker would only use this delete command if they wanted to be purely destructive. This command will be discovered very quickly when users are unable to log into the website.</p>
<h2>Remote Execution with SQL Injection (MS SQL)</h2>
<p>SQL injections can be very powerful. This is an example of a SQL injection attack that can lead to remote execution. The default installation of MS SQL Server runs as local system, which is the same as Administrator. With the follow code stored procedures like master..xp_cmdshell can be executed which would allow and attacker to perform remote executions as if on the box.</p>
<p style="font-weight: bold; margin: 5px 0px; color: #000000; background-color: #cccccc; border: #000000 1px solid; padding: 10px;"><span style="color: #666666;">Code:</span><br />
&#8216;; exec master..xp_cmdshell &#8216;ping 104.12.45.25&#8242;&#8211;</p>
<p>The semi colon in the statement will end the current SQL query and then allow a new SQL command. To verify that the command executed successfully, a packet sniffer can be used to sniff ICMP packets on 104.12.45.25. If packets are received at 104.12.45.25 from the SQL server the stored procedure was executed successfully.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patricktalmadge.com/2007/07/31/structured-query-language-sql-injection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SHA-1 cracked</title>
		<link>http://www.patricktalmadge.com/2007/01/23/sha-1-cracked/</link>
		<comments>http://www.patricktalmadge.com/2007/01/23/sha-1-cracked/#comments</comments>
		<pubDate>Tue, 23 Jan 2007 22:26:16 +0000</pubDate>
		<dc:creator>Patrick Talmadge</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.patricktalmadge.com/2007/01/23/sha-1-cracked/</guid>
		<description><![CDATA[<p>An article in the Epoch Times (a Chinese newspaper) about a brilliant <a href="http://en.epochtimes.com/news/7-1-11/50336.html">Chinese professor who has cracked her fifth encryption scheme</a> in ten years. She and her team have cracked the SHA-1 scheme. As a result, the U.S. government and major corporations will cease using the scheme within the next few years.</p> <p>Read the [...]]]></description>
			<content:encoded><![CDATA[<p>An article in the Epoch Times (a Chinese newspaper) about a brilliant <a href="http://en.epochtimes.com/news/7-1-11/50336.html">Chinese professor who has cracked her fifth encryption scheme</a> in ten years. She and her team have cracked the SHA-1 scheme. As a result, the U.S. government and major corporations will cease using the scheme within the next few years.</p>
<p>Read the full article <a href="http://en.epochtimes.com/news/7-1-11/50336.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patricktalmadge.com/2007/01/23/sha-1-cracked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hacking Traffic Lights</title>
		<link>http://www.patricktalmadge.com/2007/01/10/hacking-traffic-lights/</link>
		<comments>http://www.patricktalmadge.com/2007/01/10/hacking-traffic-lights/#comments</comments>
		<pubDate>Wed, 10 Jan 2007 15:31:26 +0000</pubDate>
		<dc:creator>Patrick Talmadge</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.patricktalmadge.com/2007/01/10/hacking-traffic-lights/</guid>
		<description><![CDATA[<p>I found this article on <a href="http://www.scmagazine.com/us/news/article/625180/los-angeles-city-employees-charged-hacking-traffic-lights-labor-dispute/">SC Magazine</a> that reminded me of Hackers the movie because in the movie the hackers hack into the street lights so they have all green lights. Here is the article that can be found at SC Magazine.</p> <p>Ericka Chickowski Jan 9 2007 18:29 </p> <p class="firstPara">Two Los Angeles municipal [...]]]></description>
			<content:encoded><![CDATA[<p>I found this article on <a href="http://www.scmagazine.com/us/news/article/625180/los-angeles-city-employees-charged-hacking-traffic-lights-labor-dispute/">SC Magazine</a> that reminded me of Hackers the movie because in the movie the hackers hack into the street lights so they have all green lights. Here is the article that can be found at SC Magazine.</p>
<blockquote><p><em>Ericka Chickowski Jan 9 2007 18:29 </em></p>
<p class="firstPara"><em>Two Los Angeles municipal traffic engineers were arraigned and charged with hacking city systems to disable traffic lights, all in connection with a labor dispute.</em></p>
<p><em>The two men, Gabriel Murillo and Kartik Patel, were charged by the Los Angeles district attorney&#8217;s newly-formed <a href="http://da.co.la.ca.us/htcu.htm">High Technology Crimes Division</a>. The district attorney alleged that the men illegally accessed the city&#8217;s Automated Traffic Surveillance Center last August and disconnected four signal control boxes at key intersections.</em></p>
<p><em>Murillo allegedly accessed the system and found a way to block other managers from fixing the changes. Prosecutors reported it took four days to repair the signals.</em></p>
<p><em>According to the DA&#8217;s office, the disruption occurred hours before a job action by members of the Engineers and Architects Association, a union representing employees, such as Murillo and Patel, that run the city&#8217;s traffic center.</em></p>
<p><em>&#8220;This amounts to sabotage and is not to be tolerated no matter what the dispute or cause,&#8221; Los Angeles District Attorney Steve Cooley said.</em></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.patricktalmadge.com/2007/01/10/hacking-traffic-lights/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HD DVD and Blu-ray AACS Copy Protection</title>
		<link>http://www.patricktalmadge.com/2006/12/29/hd-dvd-and-blu-ray-aacs-copy-protection/</link>
		<comments>http://www.patricktalmadge.com/2006/12/29/hd-dvd-and-blu-ray-aacs-copy-protection/#comments</comments>
		<pubDate>Fri, 29 Dec 2006 15:52:29 +0000</pubDate>
		<dc:creator>Patrick Talmadge</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Blu Ray]]></category>
		<category><![CDATA[HD DVD]]></category>

		<guid isPermaLink="false">http://www.patricktalmadge.com/2006/12/29/hd-dvd-and-blu-ray-aacs-copy-protection/</guid>
		<description><![CDATA[<p>Earlier this month a hacker named muslix64 claimed to have cracked the AACS protection used in HD-DVD and Blu-Ray discs.Muslix64&#8242;s hack first surfaced on December 18 on YouTube, showing the decryption of an HD DVD movie, and promising more details soon.</p> <p>Click the &#8220;play&#8221; button below to watch the clip:</p> <p></p> <p>Muslix64 posted a link [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this month a hacker named muslix64 claimed to have cracked the AACS protection used in HD-DVD and Blu-Ray discs.Muslix64&#8242;s hack first surfaced on December 18 on YouTube, showing the decryption of an HD DVD movie, and promising more details soon.</p>
<p>Click the &#8220;play&#8221; button below to watch the clip:</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/_oZGYb92isE"></param><param name="wmode" value="transparent"></param></object></p>
<p>Muslix64 posted a link to his source code at the <a href="http://forum.doom9.org/showthread.php?t=119871">Doom9 forum</a>.</p>
<p>According to reports, the software is rough and only supports a handful of HD DVD titles, but it does seem to bypass the AACS protection. The software enables users to &#8220;backup&#8221; high-def video from HD-DVD and Blu-Ray discs to a hard drive. Playback reliably of saved files has not been confirmed.</p>
<p>As a movie collector I am hoping the MPAA will learn that Copy Protection is not working. It is a long shot but maybe the MPAA will look at what customers want, which is not Copy Protection, and offer open media at reasonable prices. This would allow customers to backup purchased media and freely add it to a home theater PC or iPod without cracking the Copy Protection. I know this is a long shot, but I am hopefully. I believe this will not increase piracy and will have a positive effect on profits.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patricktalmadge.com/2006/12/29/hd-dvd-and-blu-ray-aacs-copy-protection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 100 Network Security Tools</title>
		<link>http://www.patricktalmadge.com/2006/12/28/top-100-network-security-tools/</link>
		<comments>http://www.patricktalmadge.com/2006/12/28/top-100-network-security-tools/#comments</comments>
		<pubDate>Thu, 28 Dec 2006 17:40:29 +0000</pubDate>
		<dc:creator>Patrick Talmadge</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.patricktalmadge.com/2006/12/28/top-100-network-security-tools/</guid>
		<description><![CDATA[<p>I have read that you need to know security tools if you are going to break into the IT/ Network Security field. I have found this website <a href="http://sectools.org/">http://sectools.org/</a>. The site ranks and updates the top 100 network security tools. This site seems like a great place to see what tools are on the rise [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: 11pt; font-family: Verdana">I have read that you need to know security tools if you are going to break into the IT/ Network Security field. I have found this website <a href="http://sectools.org/"><font color="#800080">http://sectools.org/</font></a>. The site ranks and updates the top 100 network security tools. This site seems like a great place to see what tools are on the rise and which are falling out of popularity. </span></p>
<p style="line-height: 14.4pt"><span style="font-size: 11pt; font-family: Verdana">After reviewing the list I noticed that I used several of the tools. Most of the tools tend to be either free or open source. It is not realistic for me to learn and master all 100 tools. I plan to move down the list one at a time starting at 1 and go to 25. This will allow me to master the popular tools and keep up with changes in the industry. </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.patricktalmadge.com/2006/12/28/top-100-network-security-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hacking Gift Cards</title>
		<link>http://www.patricktalmadge.com/2006/12/09/hacking-gift-cards/</link>
		<comments>http://www.patricktalmadge.com/2006/12/09/hacking-gift-cards/#comments</comments>
		<pubDate>Sat, 09 Dec 2006 17:26:00 +0000</pubDate>
		<dc:creator>Patrick Talmadge</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.patricktalmadge.com/2006/12/09/hacking-gift-cards/</guid>
		<description><![CDATA[<p>I read a recent post that detailed how to hack gift cards. The post shocked me how insecure the gift cards are. I hope the release of posts detailing how to hack gift cards will bring about a change in the security of new cards.<br /> You go to a store that has gift cards [...]]]></description>
			<content:encoded><![CDATA[<p>I read a recent post that detailed how to hack gift cards. The post shocked me how insecure the gift cards are. I hope the release of posts detailing how to hack gift cards will bring about a change in the security of new cards.<br />
You go to a store that has gift cards on display check to see if the serial number is show on the back. Some cards cover the number. If the number is not covered you write down the serial number of the cards. You then check to see if the card has been activated by checking to see if the card is valid via the phone number or internet. Once you find an active card you can then purchase things online with your new gift card.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patricktalmadge.com/2006/12/09/hacking-gift-cards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HackThisSite.org Basic Web Level 7</title>
		<link>http://www.patricktalmadge.com/2006/12/05/hackthissiteorg-basic-web-level-7/</link>
		<comments>http://www.patricktalmadge.com/2006/12/05/hackthissiteorg-basic-web-level-7/#comments</comments>
		<pubDate>Wed, 06 Dec 2006 03:31:17 +0000</pubDate>
		<dc:creator>Patrick Talmadge</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[HackThisSite Levels]]></category>

		<guid isPermaLink="false">http://www.patricktalmadge.com/2006/12/05/hackthissiteorg-basic-web-level-7/</guid>
		<description><![CDATA[<p>In this level our background information is:</p> <p>This time Network Security sam has saved the unencrypted level7 password in an obscurely named file saved in this very directory.In other unrelated news, Sam has set up a script that returns the output from the UNIX cal command. Here is the script:Enter the year you wish to [...]]]></description>
			<content:encoded><![CDATA[<p>In this level our background information is:</p>
<p><em>This time Network Security sam has saved the unencrypted level7 password in an obscurely named file saved in this very directory.</em><em>In other unrelated news, Sam has set up a script that returns the output from the UNIX cal command. Here is the script:</em><em>Enter the year you wish to view and hit &#8216;view&#8217;.</p>
<p>This is a fun little level it shows how you can inject unix commands into poorly written perl scripts. What Sam has done is created an obscurely name php script that holds an unencrypted password. Sam is showing off his talent by creating a calendar program written in perl. When used correctly the perl script returns a calendar for the year you type in the text box.</p>
<p></em>Hint: You will need more than one UNIX command to pass this level. Think about how you will enter more than one command and which commands you will need to use to list the files. You will need to change directories and list the files.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patricktalmadge.com/2006/12/05/hackthissiteorg-basic-web-level-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HackThisSite.org Basic Web Level 6</title>
		<link>http://www.patricktalmadge.com/2006/12/04/hackthissiteorg-basic-web-level-6/</link>
		<comments>http://www.patricktalmadge.com/2006/12/04/hackthissiteorg-basic-web-level-6/#comments</comments>
		<pubDate>Mon, 04 Dec 2006 21:16:11 +0000</pubDate>
		<dc:creator>Patrick Talmadge</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[HackThisSite Levels]]></category>

		<guid isPermaLink="false">http://www.patricktalmadge.com/2006/12/04/hackthissiteorg-basic-web-level-6/</guid>
		<description><![CDATA[<p>In this level our background information is:</p> <p>Network Security Sam has encrypted his password. The encryption system is publically available and can be accessed with this form:</p> <p>You have recovered his encrypted password. It is:e39h;;6=</p> <p>Decrypt the password and enter it below to advance to the next level.</p> <p>In this level Sam has changed several [...]]]></description>
			<content:encoded><![CDATA[<p>In this level our background information is:</p>
<p><em>Network Security Sam has encrypted his password. The encryption system is publically available and can be accessed with this form:</em></p>
<p><em>You have recovered his encrypted password. It is:</em><em><strong>e39h;;6=</strong></p>
<p>Decrypt the password and enter it below to advance to the next level.</p>
<p></em>In this level Sam has changed several things. He has encrypted the password and we have some how gotten our hands on the encrypted password for this level. Sam has included an encryption form so you can test your password and see if it matches the encrypted password we have found.</p>
<p>Hint: Get yourself an ASCII table and use the encrypt form to crack the encryption. Type a sample password in the encryption form and use the results to figure out the crypto being used.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patricktalmadge.com/2006/12/04/hackthissiteorg-basic-web-level-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<div style="display:none;">
<a href="http://www.filmistek.com" title="film izle" >film izle</a>
<a href="http://www.filmizlek.net" title="film izle" >film izle</a> 
<a href="http://www.nettefilm.net" title="film izle" >film izle</a>
<a href="http://www.nettefilmizle.net" title="film izle" >film izle</a>
<a href="http://www.sinemasohbet.com" title="film izle" >film izle</a>
<a href="http://www.sinemafilmizleme.com" title="film izle" >film izle</a>
<a href="http://www.laledevridizisi.net" title="film izle" >film izle</a>
<a href="http://www.guncelvideolar.net" title="film izle" >film izle</a> 


<a href="http://xdiziizle.blogspot.com" title="dizi izle" >dizi izle</a>
<a href="http://tr-square.blogspot.com" title="dizi izle" >dizi izle</a>
<a href="http://brnckvvtmllttrhaberimatbaa.blogspot.com" title="film izle" >film izle</a>
<a href="http://zirzir.blogspot.com" title="film izle" >film izle</a>
<a href="http://filmizle-flimizle.blogspot.com" title="film izle" >film izle</a>
</div>
