<?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>Biscom Delivery Server &#187; hacking</title>
	<atom:link href="http://blog.biscomdeliveryserver.com/tag/hacking/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.biscomdeliveryserver.com</link>
	<description>Simple. Secure. Smart.</description>
	<lastBuildDate>Fri, 03 Feb 2012 16:36:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.biscomdeliveryserver.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Biscom Delivery Server &#187; hacking</title>
		<link>http://blog.biscomdeliveryserver.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.biscomdeliveryserver.com/osd.xml" title="Biscom Delivery Server" />
	<atom:link rel='hub' href='http://blog.biscomdeliveryserver.com/?pushpress=hub'/>
		<item>
		<title>How to protect against SQL injection</title>
		<link>http://blog.biscomdeliveryserver.com/2010/12/20/how-to-protect-against-sql-injection/</link>
		<comments>http://blog.biscomdeliveryserver.com/2010/12/20/how-to-protect-against-sql-injection/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 20:47:26 +0000</pubDate>
		<dc:creator>bho1</dc:creator>
				<category><![CDATA[Data breaches]]></category>
		<category><![CDATA[Financial services]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[data breach]]></category>
		<category><![CDATA[hacking]]></category>

		<guid isPermaLink="false">http://blog.biscomdeliveryserver.com/?p=263</guid>
		<description><![CDATA[SQL injection is still out there as an attack. It worked against Twin America LLC, and it was only discovered this past October, after hundreds of thousands of records were stolen.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.biscomdeliveryserver.com&amp;blog=31217722&amp;post=263&amp;subd=biscomdeliveryserver&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SQL injection is still out there as an attack. It worked against <a title="Twin America LLC data breach via SQL injection" href="http://www.cuinfosecurity.com/articles.php?art_id=3195&amp;rf=2010-12-20-ec" target="_blank">Twin America LLC</a>, and it was only discovered this past October, after hundreds of thousands of records were stolen. It&#8217;s a well known ploy &#8211; you take advantage of web sites that have a form for inputting information. If a site doesn&#8217;t employ techniques to nullify SQL injection, an attacker can easily see your entire database, which often includes usernames, passwords, and account information, or worse, download the information and then destroy the database.</p>
<p>Two common areas that are potentially open to attack are unfiltered escape characters, and poor type handling. In an unfiltered web form, a form variable is plugged directly into a SQL statement. If I crafted just the right input, I could potentially append my own SQL clause to the one being executed. The classic example is:</p>
<p><em>SELECT * FROM user_table WHERE username = &#8216; &#8221; + username + &#8221; &#8216;;&#8221;</em></p>
<p>If instead of a valid username, I entered <em> &#8216; or &#8217;1=1</em>, I&#8217;d now be running this statement:</p>
<p><em>SELECT * FROM user_table WHERE username = &#8216; &#8216; OR &#8217;1&#8242;=&#8217;1&#8242;;</em></p>
<p>The <em>OR &#8217;1&#8242; = &#8217;1&#8242; </em>clause will always evaluate to true, retrieving all columns from the user table.</p>
<p>A second potential hole exists if the programmer does not check for type constraints. If a SQL statement is expecting a number, the input to supply that variable should be checked to make sure it truly is a number. Again, like the trick above, I could insert an entirely new statement like <em>DROP TABLE user_table</em> after entering a number into a form. The back end would then execute whatever statement I presented to it.</p>
<p>There are several techniques to protect a Web application from these types of attacks, including the use of parameterized statements, or even escaping characters that have a special meaning in SQL. But programmers have to be diligent about adding this protection, because hackers will find even the smallest hole and take advantage of it.</p>
<p>Biscom spends its time worried about these types of hacks, so you don&#8217;t have to. Countless penetration tests have proven our security model. We think our customers want a secure file transfer solution that is actually secure.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/biscomdeliveryserver.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/biscomdeliveryserver.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/biscomdeliveryserver.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/biscomdeliveryserver.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/biscomdeliveryserver.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/biscomdeliveryserver.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/biscomdeliveryserver.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/biscomdeliveryserver.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/biscomdeliveryserver.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/biscomdeliveryserver.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/biscomdeliveryserver.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/biscomdeliveryserver.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/biscomdeliveryserver.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/biscomdeliveryserver.wordpress.com/263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.biscomdeliveryserver.com&amp;blog=31217722&amp;post=263&amp;subd=biscomdeliveryserver&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.biscomdeliveryserver.com/2010/12/20/how-to-protect-against-sql-injection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfd8a6bc2a0ead8da3fe5190c9029ca0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bho1</media:title>
		</media:content>
	</item>
		<item>
		<title>RSA Conference 2010</title>
		<link>http://blog.biscomdeliveryserver.com/2010/03/08/rsa-conference-2010/</link>
		<comments>http://blog.biscomdeliveryserver.com/2010/03/08/rsa-conference-2010/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 16:33:45 +0000</pubDate>
		<dc:creator>bho1</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[data breach]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[hacking]]></category>

		<guid isPermaLink="false">http://blog.biscomdeliveryserver.com/?p=149</guid>
		<description><![CDATA[Just got back from the RSA conference in San Francisco last week. It was quite a show...<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.biscomdeliveryserver.com&amp;blog=31217722&amp;post=149&amp;subd=biscomdeliveryserver&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just got back from the RSA conference in San Francisco last week. It was quite a show &#8212; some heavy hitters were in attendance, including Secretary of the Department of Homeland Security Janet Napolitano, FBI director Robert Mueller, and a very cryptic NSA spokesperson. For you geeks out there, Whifield Diffie, Martin Hellman, Ron Rivest, Adi Shamir, and David Chaum played big parts in the keynotes and panels. It was interesting to see both the public and private sectors well represented here compared to previous RSA conferences, and there was definitely more openness between the two. The paranoia level was high, with many keynotes commenting on organized cybercrime, cyberwarfare, cloud security. Janet Napolitano actually tried to recruit hackers and other security talent for DHS in Hollywood-esque fashion!</p>
<p>The sessions were actually quite good, with tracks in application development, law, hackers and threats, data security, policy and government, and governance, risk and compliance. One session I attended on data breaches was interesting; the speaker asked the audience to raise their hands if they had experienced a data breach, and three quarters of the room raised their hands. Data breaches are occurring, and to their credit, companies seem to be aggressively pursuing a strategy of prevention over cure.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/biscomdeliveryserver.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/biscomdeliveryserver.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/biscomdeliveryserver.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/biscomdeliveryserver.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/biscomdeliveryserver.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/biscomdeliveryserver.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/biscomdeliveryserver.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/biscomdeliveryserver.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/biscomdeliveryserver.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/biscomdeliveryserver.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/biscomdeliveryserver.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/biscomdeliveryserver.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/biscomdeliveryserver.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/biscomdeliveryserver.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.biscomdeliveryserver.com&amp;blog=31217722&amp;post=149&amp;subd=biscomdeliveryserver&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.biscomdeliveryserver.com/2010/03/08/rsa-conference-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfd8a6bc2a0ead8da3fe5190c9029ca0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bho1</media:title>
		</media:content>
	</item>
		<item>
		<title>Dark Reading article on FTP and Botnets</title>
		<link>http://blog.biscomdeliveryserver.com/2009/12/21/dark-reading-article-on-ftp-and-botnets/</link>
		<comments>http://blog.biscomdeliveryserver.com/2009/12/21/dark-reading-article-on-ftp-and-botnets/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 19:58:41 +0000</pubDate>
		<dc:creator>bho1</dc:creator>
				<category><![CDATA[News and press]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[hacking]]></category>

		<guid isPermaLink="false">http://blog.biscomdeliveryserver.com/?p=107</guid>
		<description><![CDATA[I talked to Kelly Jackson Higgins from Dark Reading for an article she was working on. She's been covering IT for a number of years, and her latest article discusses one aspect of a growing threat — the dangers of malicious software capturing FTP credentials and using them to hack into legitimate web sites.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.biscomdeliveryserver.com&amp;blog=31217722&amp;post=107&amp;subd=biscomdeliveryserver&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I talked to Kelly Jackson Higgins from Dark Reading for an article she was working on. She&#8217;s been covering IT for a number of years, and her latest <a title="Botnet Operators Infecting Servers, Not Just PCs" href="http://www.darkreading.com/vulnerability_management/security/app-security/showArticle.jhtml?articleID=222002433" target="_blank">article</a> discusses one aspect of a growing threat — the dangers of malicious software capturing FTP credentials and using them to hack into legitimate web sites. Because FTP is prevalent for updating web sites, having the credentials gives hackers the opportunity to inject their own code into web pages unbeknownst to the site owner. These infected pages may redirect a visitor in a phishing scam, collect user credentials on login pages, or spread the malware or bot to increase the scope of infection. There are a number of other vulnerabilities in FTP that makes it hard to justify as a viable file transfer solution, and this is just one more nail in the FTP coffin.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/biscomdeliveryserver.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/biscomdeliveryserver.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/biscomdeliveryserver.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/biscomdeliveryserver.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/biscomdeliveryserver.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/biscomdeliveryserver.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/biscomdeliveryserver.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/biscomdeliveryserver.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/biscomdeliveryserver.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/biscomdeliveryserver.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/biscomdeliveryserver.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/biscomdeliveryserver.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/biscomdeliveryserver.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/biscomdeliveryserver.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.biscomdeliveryserver.com&amp;blog=31217722&amp;post=107&amp;subd=biscomdeliveryserver&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.biscomdeliveryserver.com/2009/12/21/dark-reading-article-on-ftp-and-botnets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfd8a6bc2a0ead8da3fe5190c9029ca0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bho1</media:title>
		</media:content>
	</item>
	</channel>
</rss>
