<?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>FireBlog by FireHost &#187; eCommerce Cybercrime Holiday 2009</title>
	<atom:link href="http://www.fireblog.com/tag/ecommerce-cybercrime-holiday-2009/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fireblog.com</link>
	<description>Secure Hosting Blog</description>
	<lastBuildDate>Fri, 16 Dec 2011 00:52:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Top Five Application Security Risks for 2010</title>
		<link>http://www.fireblog.com/top-five-application-security-risks-for-2010/</link>
		<comments>http://www.fireblog.com/top-five-application-security-risks-for-2010/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 13:00:57 +0000</pubDate>
		<dc:creator>FireHost Evangelist</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[eCommerce Cybercrime Holiday 2009]]></category>
		<category><![CDATA[Online Shopping Safety 2009]]></category>
		<category><![CDATA[Top Application Security Risks]]></category>

		<guid isPermaLink="false">http://www.fireblog.com/?p=2880</guid>
		<description><![CDATA[It just wouldn't be the new year without a "best of" or "top ten" list, and we've chosen to expand upon OWASP's (Open Web Application Security Project) recap of the top application security threats to look out for next year.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2976" title="CSA_08" src="http://www.fireblog.com/wp-content/uploads/2009/12/CSA_08.png" alt="CSA_08" width="161" height="80" />It just wouldn&#8217;t be the new year without a &#8220;best of&#8221; or &#8220;top ten&#8221; list, and we&#8217;ve chosen to expand upon <a href="http://www.owasp.org/index.php/Main_Page" target="_blank"><span style="text-decoration: underline;">OWASP</span></a>&#8216;s (Open Web Application Security Project) recap of the top application security threats to look out for next year.</p>
<p>Before you stop reading and get back to your _____ (insert whatever project you had planned for today), wait! You have our assurance that this won&#8217;t be too jargon-y. We&#8217;ve deliberately stopped the heavy tech talk here, and we&#8217;ll translate all the application security risk verbiage into usable, understandable terms for your growing enterprise.</p>
<p>So here they are, without further ado, the top five application security risks for 2010:</p>
<p><strong>1) Injection Attack </strong></p>
<p>All Web applications that collect and transmit data (using forms for example) are susceptible to Injection Attacks. By sending specific commands through your application&#8217;s forms, hackers can modify various elements of the code. In extreme cases, injection attacks could allow attackers to penetrate a firewalled environment such as the network environment or database.</p>
<p>SQL injections like the ones that compromised <a href="http://news.softpedia.com/news/Symantec-Website-Hacked-104898.shtml" target="_blank"><span style="text-decoration: underline;">Symantec</span></a> and <a href="http://www.scmagazineus.com/nasa-sites-hacked-via-sql-injection/article/159181" target="_blank"><span style="text-decoration: underline;">NASA</span></a> this year dominate this attack category, but there are many additional varieties to which you could fall prey. Impress your IT staff by nodding knowingly if he mentions a Code Injection, Command Injection, or XPATH Injection around the water cooler.</p>
<p>Some of the best, protective measures (ask your security expert about these) for Injection Attacks include:</p>
<ul>
<li>Input Validation &#8211; cleanse your      input data</li>
<li>Human Verification ie CAPTCHA</li>
<li>Restrictive Privileges when      connecting applications to DBs and other proprietary systems</li>
<li>Vague Error Messages give attackers      little detail to go on and can help defray an onslaught</li>
</ul>
<p><span id="more-2880"></span></p>
<p><strong>2) Cross Site Attack</strong></p>
<p>Cross site scripting (XSS) attacks steal private information like cookies or session tokens that unsuspecting users have associated with a particular Web site. XSS exploits can also redirect victims to familiar &#8220;looking&#8221; Web content that has been devised by the attacker to steal personally identifiable information or install malware.</p>
<p>Hackers deliver the malicious XSS-laden content that makes these exploits possible in the form of JavaScript, HTML, Flash or any executable code format for that matter. Any Web application that compiles user-generated content without validating or encoding it first could fall prey to an XSS exploit. Social media hubs and blogs that allow users to post un-moderated comments are extremely susceptible to malicious XSS exploits (as was the case with <a href="http://blog.reddit.com/2009/09/we-had-some-bugs-and-it-hurt-us.html" target="_blank"><span style="text-decoration: underline;">Reddit</span></a>&#8216;s Stored XSS Attack earlier this year).</p>
<p>Reflected XSS Exploits can be combined with phishing techniques to invade private information systems like email. Lance James and his team of experts reveal how (easily) they exploited an XSS vulnerability to win Strong Webmail&#8217;s <a href="http://www.fireblog.com/exclusive-interview-with-strongwebmails-10000-hacker" target="_blank"><span style="text-decoration: underline;">$10,000 challenge</span></a> in a quick two weeks.</p>
<p>Developers can help prevent XSS Attacks by deploying code that:</p>
<ul>
<li>Validates user input</li>
<li>Does not give a site or page “full      trust” simply because HTTPS is present</li>
<li>Is tested. Test, test, test, and then test      again before launching or introducing Web site enhancements</li>
</ul>
<p><strong>3) Cross Site Request Forgery &#8211; CSRF</strong></p>
<p>CSRF exploits force unknowing users to carry out any number of malicious activities as long as the action is allowable within their permission set during an authenticated user session. If a Web application administrator&#8217;s credentials are compromised for example, CSRF could overtake the entire Web site.</p>
<p>Here&#8217;s a short list of some common (and catastrophic) CSRF capabilities:</p>
<ul>
<li>Force a user to post an insulting      comment or malicious link on a blog or forum</li>
<li>Change passwords, emails, login      credentials effectively terminating access</li>
<li>Submit a users email and sign up      for a newsletter</li>
<li>Make a purchase and use the hacker&#8217;s      shipping address</li>
</ul>
<p>CSRF capabilities are so powerful, you can understand why banks, financial brokers, bill pay services, and basically any institution that ties user credentials to money would need to approach each day with extreme caution and oversight. In a blog post this year, SECCOM Labs <a href="http://labs.securitycompass.com/index.php/2009/05/15/the-true-danger-of-xss-and-csrf" target="_blank"><span style="text-decoration: underline;">demonstrated</span></a> how easily a CSRF banking scheme could be carried out.</p>
<p>Prohibiting users from submitting HTML code is one way help prevent CSRF. In many cases however, that&#8217;s not feasible because sites containing blogs and social media rely heavily on user-generated content. If your application has Social Web components, be aware that extremely effective, proprietary <a href="http://threatpost.com/en_us/blogs/defcon-csrf-attacks-made-easy-080109" target="_blank">tools</a> capable of disarming security features of even the most popular social vehicles like Twitter and <a href="http://www.scmagazineus.com/researcher-details-facebook-csrf-flaw/article/146986" target="_blank"><span style="text-decoration: underline;">Facebook</span></a>, do exist.</p>
<p>Protect applications from CSRF Vulnerabilities by:</p>
<ul>
<li>Only accepting POST transactions</li>
<li>Create unique token values for each request</li>
<li>Re-authenticate based on the unique token or a password</li>
</ul>
<p><strong>4) Insecure Direct Object References</strong></p>
<p>Insecure Direct Object Reference flaws allow attackers access to private directories (for example) by manipulating the URL to gain access. The primary risks with Insecure Direct Object References include data leakage and identity theft. Adobe Flash Player fell victim to this type of flaw last year, and the company has since addressed and patched the vulnerability.</p>
<p>Developers with expertise in securing applications can help prevent Insecure Direct Object References by:</p>
<ul>
<li>Creating a schema to protect and      identify each object accessible by users</li>
<li>Using indirect reference maps in      code when referring to file names, URLs and DB keys</li>
<li>Ensuring the session is authenticated      to view the requested information or files and only grant access for that specific      request when direct references are required</li>
</ul>
<p><strong>5) Broken Authentication and Session Management </strong></p>
<p>Because all Web applications have (at least) an administrator account, each and every Web site is susceptible to authentication and session management flaws. All too often, fingers point toward typical Web site functions like logout, forgotten password retrieval, and account update procedures when problems with authentication and session management arise.</p>
<p>Custom applications have increased risk. In fact, many instances of authentication and session management flaws occur when code includes custom methods for validating user names and passwords and/or &#8220;home grown&#8221; techniques for handling cookies or session tokens. Session hijacking is a good example of the trouble that can crop up when authentication and session management flaws reside within your application.</p>
<p>Using widely accepted mechanisms for user authentication and session management is a good, preventative start. Additionally, you can take these steps to protect your application from these vulnerabilities.</p>
<ul>
<li>Use https:// encryption on every      page with form fields and store credentials in encrypted format and limit browser      caching so hitting the &#8220;back&#8221; button doesn&#8217;t grand unwanted parties      access or visibility</li>
<li>Make sure users can &#8220;Logout&#8221;      from every page within the application and set short visitor sessions and force      visitors to &#8220;time out&#8221; more often</li>
<li>Limit unsuccessful login attempts      and require users to verify old password credentials when establishing new      ones</li>
</ul>
<p>That&#8217;s your top five for 2010. From our company to yours – happy holidays and a hack-free New Year!</p>
<p><em>A version of this article was published in <a href="http://www.ecommercedeveloper.com/articles/1489-Top-Five-Application-Security-Risks-for-2010" target="_blank">eCommerceDeveloper</a> on 12/23/09.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fireblog.com/top-five-application-security-risks-for-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save This List: How to Help Prevent a Web Application Security Breach</title>
		<link>http://www.fireblog.com/save-this-list-how-to-help-prevent-a-web-application-security-breach/</link>
		<comments>http://www.fireblog.com/save-this-list-how-to-help-prevent-a-web-application-security-breach/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 13:00:21 +0000</pubDate>
		<dc:creator>FireHost Evangelist</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[eCommerce Cybercrime Holiday 2009]]></category>
		<category><![CDATA[Online Shopping Safety 2009]]></category>
		<category><![CDATA[Prevent Web Application Security Breach]]></category>

		<guid isPermaLink="false">http://www.fireblog.com/?p=2712</guid>
		<description><![CDATA[Many entrepreneurs have preconceptions about their place in the cybercrime world, and their thoughts generally fall into one of two trains of thought. 1) If large organizations like Sears can easily fall prey to cybercrime, it shouldn’t be a challenge at all to steal from my small business. 2) My company is too small to hold value for hackers, and I’m safe because it wouldn’t be worth their time. Today’s discussion takes a deeper look into preventing cyber crime at small and medium sized businesses. ]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2967" title="CSA_07" src="http://www.fireblog.com/wp-content/uploads/2010/01/CSA_07.png" alt="CSA_07" width="161" height="80" />In a previous <a href="http://www.fireblog.com/save-this-list-what-ecommerce-site-owners-should-do-in-the-event-of-a-security-breach/" target="_blank">post</a>, we provided information you&#8217;ll need to know immediately if your website is successfully hacked. It included recommendations on how and when to:</p>
<p><strong>Step 1</strong> Announce and assess the breach<br />
<strong>Step 2</strong> Conduct a deeper investigation<br />
<strong>Step 3</strong> Notify affected individuals and organizations and begin remediation<br />
<strong>Step 4</strong> Re-launch<br />
<strong>Step 5</strong> Communicate the resolution publicly and to affected parties<br />
<strong>Step 6</strong> Take steps to remediate vulnerabilities and prevent a future breach</p>
<p>Today’s discussion takes a deeper look into step six, preventing cyber crime at small and medium sized businesses. The truth is that security measures in place at most SMBs are &#8220;easy pickings&#8221; for hackers, and there is a booming community of C2C (criminal to criminal) interactions focused solely on stealing customer data from SMBs that conduct business online. The same way you work every day to develop new, enticing products and easier ways for your customers to shop, cyber theft &#8220;shop owners&#8221; fuel this sub <a href="http://www.symantec.com/about/news/release/article.jsp?prid=20081123_01" target="_blank">economy</a> by devising faster, easier, and more effective methods by which to steal your company&#8217;s valuable data.</p>
<p>Preventing data leakage takes an ongoing, concerted effort, so it&#8217;s important that you take proactive control over your immediate environment. Here&#8217;s how:</p>
<p><span id="more-2712"></span><strong>Only run software you need. </strong>Thoroughly review all third party applications before introducing them to your environment. Only install third party applications if they are absolutely necessary. Remove all inactive programs at once. Paring down your list of installed programs alleviates your susceptibility to any known or future security threats they may pose.</p>
<p><strong>Stop ignoring those updates. </strong>Install every software update, and do it quickly. Addressing security vulnerabilities is a top priority of software patches, so don&#8217;t get versions behind.</p>
<p><strong>S = More Secure</strong>. Traditional FTP connections are insecure. Look for “SSH” and “SFTP” connections as they are in an encrypted format and are the minimum standard for eCommerce Web site administration.</p>
<p><strong>Manage change. </strong>Terminate access credentials for former website administrators and employees immediately after (and sometimes before) they exit the company. Open logins create an extremely popular data leakage point. Implementing strict, consistent, change management protocols will reduce the chances your website is compromised by a password breach.</p>
<p><strong>Check configurations and permissions. </strong>Regularly check that server configurations and file permissions are set correctly, and that there are no open permissions on directories.</p>
<p><strong>Cheaply outsourced labor could cost you. </strong>Do you really want to outsource your livelihood to the lowest bidder? Websites require ongoing maintenance, bug fixes, and enhancements, and working closely with a local developer that you can meet in person might be the best solution in the long run.<strong> </strong></p>
<p><strong>Hire a hacker. </strong>Hire a hacker to try and penetrate your environment to find its vulnerabilities. I’m serious.</p>
<p><strong>Achieve PCI Compliance if you conduct eCommerce. </strong>The payment Card Industry has devised a succinct <a href="https://www.pcisecuritystandards.org/security_standards/pci_dss.shtml" target="_blank">list</a> of requirements to which every organization must adhere if they accept credit cards as a form of payment.</p>
<p><strong>Vulnerability audits. </strong>Have professionals perform regular <a href="http://www.firehost.com/secure-hosting/vulnerability-audit" target="_blank">vulnerability audits</a>. We recommend monthly or quarterly (at minimum). Vulnerability audits can identify weak logins, data leakage from forms, SQL injection vulnerabilities, DDoS activity, spam relaying, order manipulation, admin control panel tampering, and more.</p>
<p><strong> </strong></p>
<p>Hackers pose a real threat to SMBs, and they find value in stealing customer records, even from the “one-man shops” out there. Give these preventative measures the same priority as the way your site looks and works. Afterall, an ounce of prevention…well, you know the saying.</p>
<p><em>A version of this article was featured in <a href="http://entrepreneur.venturebeat.com/2009/12/16/keeping-hackers-away-from-your-customer-data/" target="_blank">VentureBeat</a> on December 16, 2009.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fireblog.com/save-this-list-how-to-help-prevent-a-web-application-security-breach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Credit Card Processing: Between a Rock (Hackers) and a Hard Place (Compliance)</title>
		<link>http://www.fireblog.com/credit-card-processing-between-a-rock-hackers-and-a-hard-place-compliance/</link>
		<comments>http://www.fireblog.com/credit-card-processing-between-a-rock-hackers-and-a-hard-place-compliance/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 08:00:16 +0000</pubDate>
		<dc:creator>FireHost Evangelist</dc:creator>
				<category><![CDATA[Compliance]]></category>
		<category><![CDATA[eCommerce Cybercrime Holiday 2009]]></category>
		<category><![CDATA[Online Shopping Safety 2009]]></category>
		<category><![CDATA[PCI Compliance]]></category>
		<category><![CDATA[Secure eCommerce Development]]></category>

		<guid isPermaLink="false">http://www.fireblog.com/?p=2931</guid>
		<description><![CDATA[For many ecommerce developers, the thought of designing a system to store the credit card data of their clients’ customers is chilling. For good reason. If hackers can penetrate the network of a global enterprise, imagine what they can do to your clients’ small businesses. It’s a scary proposition, no doubt, but it shouldn’t keep you from going down that path when a project requires it.]]></description>
			<content:encoded><![CDATA[<p><strong><img class="alignright size-full wp-image-2897" title="CSA_06" src="http://www.fireblog.com/wp-content/uploads/2009/12/CSA_06.png" alt="CSA_06" width="161" height="80" />For many ecommerce developers</strong>, the thought of designing a system to store the credit card data of their clients’ customers is chilling.</p>
<p>For good reason. Determined hackers can compromise the most sophisticated network by combining simple, free tools with a little effort. In fact, the cyber-criminals behind the famed TJ Max and Heartland Payment Systems breaches used <a href="http://www.fireblog.com/usa-today-cyberthieves-find-workplace-networks-are-easy-pickings">novice techniques</a> like War Driving and SQL Injections to access the retailers’ networks.</p>
<p>If hackers can penetrate the network of a global enterprise, imagine what they can do to your clients’ small businesses. It’s a scary proposition, no doubt, but it shouldn’t keep you from going down that path when a project requires it.</p>
<h3>Managing Credit Card Data</h3>
<p>The first (and perhaps most important challenge) you’ll face with such an ecommerce development project is credit card collection, storage, and handling. One of the easiest and least risky options is to offload, via an API, the storage and handling of credit card numbers to a payment gateway that “hides” credit card data – <a href="http://www.authorize.net/">Authorize.net</a>, <a href="http://paypal.com/">PayPal</a>, <a href="http://www.bluepay.com/">BluePay</a> or the like. If the credit card data is passed directly from the client (browser) to the gateway, without passing through your client’s web server, you’ll reduce your liability as the developer and help keep your client’s ecommerce site protected.</p>
<p>However, this solution many not work in all situations or for all clients for, at least, a few reasons.</p>
<ol>
<li>Complicated recurring billing. If your client has a complicated recurring billing structure wherein payments vary in time, frequency, amount, or purpose; or if your client’s customers use purchase orders, your client may need to keep the raw credit card numbers available for the flexibility. Your client can still use tokens and offload the recurring billing to some credit-card-obscuring payment gateways as mentioned above, but again the need to process or manage customer data can be project specific.</li>
<li>Save on Interchange fees. All credit-card merchant-account providers charge an <a href="http://www.practicalecommerce.com/articles/975-Ecommerce-Know-How-Understanding-Your-Payment-Processing-Statement">Interchange fee</a>, and these fees can and do vary from provider to provider. So for some potential clients managing customer credit card data can be well worth the risk if doing so allows them to get a significantly better fee structure.</li>
<li>Offloading credit-card-storage is not enough. If credit card data passes through your client’s web server, whether the business stores that data or not, the system you develop needs to be PCI compliant. In short, whenever possible, choose a solution that never exposes your web server and your client’s ecommerce business to customer data. But when a project does call for credit data transfer or storage, you’ll need to build a Payment Card Industry compliant system that hackers cannot easily overcome.</li>
</ol>
<p><span id="more-2931"></span></p>
<h3>Understanding the Requirement for PCI compliance</h3>
<p>The Payment Card Industry (PCI) <a href="http://www.pcisecuritystandards.org/security_standards/pci_dss.shtml">Security Standards Council</a> has established twelve <strong>mandatory</strong> practices and precautions that must be taken when handling, processing, storing, and transmitting credit card data. The effort necessary to achieve PCI compliance will vary depending on the state of your development and hosting environment in which the ecommerce application will reside. While the specific details of becoming PCI compliant would merit a separate article, it is important to remember that when a project calls for “touching” credit card information, PCI compliance is a must. Your ecommerce client cannot do business without being compliant.</p>
<h3>Cutting the Cost of PCI Compliance</h3>
<p>PCI compliance can be expensive. For example, building a PCI compliant system from the ground up may require enlisting the help of a Qualified Security Assessor (QSA) to shape the scope of your PCI compliance undertaking; a number of audits; and monthly scans. All of this may cost a Level 3 merchant—those that process between 20,000–and–1,000,000 transactions each year—up to $155,000, according to the <a href="http://blog.elementps.com/element_payment_solutions/2009/02/pci-compliance-costs.html">PCI DSS Compliance Blog</a> .</p>
<p>The cost for smaller, Level 4 merchants, processing less than 20,000 transactions each year, varies greatly, but could cost $2,500 or more according to <a href="http://www.braintreepaymentsolutions.com/">a payment gateway provider</a>.</p>
<p>As a savvy developer, you may be able to help your client defray some of these costs.</p>
<ol>
<li>Find a compliant host. Choose a web hosting environment that is already PCI compliant. If your client doesn’t need to own servers, consider a qualified, PCI compliant host.</li>
<li>Encourage processing in the client. The points above notwithstanding, choosing a solution that captures credit card data in the client, passing a token to your client’s web server, may be the best option.</li>
<li>Small merchants can do it themselves. Consider taking the “self assessment.” Level 2 and smaller merchants can self-assess rather than hiring a third-party to do the assessment, which can be a money saver.</li>
</ol>
<h3>PCI Compliance: You Need to Do It</h3>
<p>Achieving PCI compliance is not only mandatory for all ecommerce merchants, it also assures that you and your client have taken all the steps necessary to provide a safe shopping experience for your client’s website users. Taking the steps to secure your client’s environment before a security breach may go a long way with Visa, Mastercard, the PCI Council, and forensic auditors who will be performing due diligence should disaster strike.</p>
<p>In fact, mitigating a security breach may be more challenging and expensive for non-compliant companies. Forrester Research estimates that mitigation will cost an average of $200 for each person/credit card account that is compromised.</p>
<p>This article was featured in <a href="http://www.ecommercedeveloper.com/articles/1435-Credit-Card-Processing-Between-a-Rock-Hackers-and-a-Hard-Place-Compliance-" target="_blank">eCommerce Developer</a> on December 8, 2009.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fireblog.com/credit-card-processing-between-a-rock-hackers-and-a-hard-place-compliance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DDoS Attacks, The Ultimate Cyber Smackdown</title>
		<link>http://www.fireblog.com/ddos-attacks-the-ultimate-cyber-smackdown/</link>
		<comments>http://www.fireblog.com/ddos-attacks-the-ultimate-cyber-smackdown/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 13:00:10 +0000</pubDate>
		<dc:creator>FireHost Evangelist</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[DDoS Attacks]]></category>
		<category><![CDATA[eCommerce Cybercrime Holiday 2009]]></category>
		<category><![CDATA[Online Shopping Safety 2009]]></category>

		<guid isPermaLink="false">http://www.fireblog.com/?p=2760</guid>
		<description><![CDATA[Denial of Service attacks come in a variety of flavors - Flood Attacks, SYN Attacks, Smurf Attacks, Ping of Death Attacks, and the ultimate tap out producer Distributed Denial of Service Attacks (to name a few). Each method is designed to achieve a single goal - stifle the target website or online application. Generally speaking, DoS/DDoS attacks accomplish this by directing a flood of "packets" (fake visitors, often robots) to your website at the same time. In simple terms, a denial of service attack takes up all your hosting environment's available bandwidth and resources making it impossible for human traffic to reach your website or service.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2896" title="CSA_05" src="http://www.fireblog.com/wp-content/uploads/2009/12/CSA_05.png" alt="CSA_05" width="161" height="80" />In MMA, fighters find the Guillotine or Rear Naked Choke to be reliable tactics for eliciting a submission. In cyber warfare, a DDoS attack is the &#8220;go to&#8221; move that produces the ultimate cyber smackdown effectively, time after time.</p>
<p>Just like choke holds, Denial of Service attacks come in a variety of flavors &#8211; Flood Attacks, SYN Attacks, Smurf Attacks, Ping of Death Attacks, and the ultimate tap out producer Distributed Denial of Service Attacks (to name a few). Each method is designed to achieve a single goal &#8211; stifle the target website or online application.</p>
<p>Generally speaking, DoS/DDoS attacks accomplish this by directing a flood of &#8220;packets&#8221; (fake visitors, often robots) to your website at the same time. In simple terms, a denial of service attack takes up all your hosting environment&#8217;s available bandwidth and resources making it impossible for human traffic to reach your website or service.</p>
<p><strong> </strong></p>
<p><strong>DoS/DDoS Popularity and Severity on the Rise</strong></p>
<p>Geared toward taking sites offline rather than stealing information or deceiving unknowing web surfers, DoS/DDoS attacks could be regarded as the cyber &#8220;crime of passion&#8221;. These attacks have effectively silenced <a href="http://www.pcworld.com/article/141839/hackers_hit_scientology_with_online_attack.html" target="_blank"><span style="text-decoration: underline;">religious</span></a> and <a href="http://www.computerworld.com/s/article/9138041/Company_hosting_Joe_Wilson_fundraising_site_recovers_from_DDoS_attack" target="_blank"><span style="text-decoration: underline;">political</span></a> groups from publicly publishing their opinions. High-profile organizations make headlines most often, but really <a href="http://inboxrevenge.wordpress.com/2009/11/16/inboxrevenge-under-attack-again/" target="_blank"><span style="text-decoration: underline;">any group</span></a> with &#8220;offbeat&#8221; opinions could be the target of a DoS/DDoS onslaught.</p>
<p>Extortion is another popular motive behind DoS/DDoS attacks. Just recently, several Australian sports-betting <a href="http://www.australiangambling.com.au/gambling-news/australian-sports-betting-sites-attacked/827/" target="_blank"><span style="text-decoration: underline;">websites</span></a> lost millions in revenue over a busy weekend when criminals held their web services hostage for ransom money. Other commercial entities are starting to feel the effect of DoS/DDoS deployments too. <a href="http://www.itwire.com/content/view/29336/53/" target="_blank"><span style="text-decoration: underline;">Recruit Advantage</span></a> and <a href="http://blog.bitbucket.org/2009/10/04/on-our-extended-downtime-amazon-and-whats-coming/" target="_blank"><span style="text-decoration: underline;">Bitbucket</span></a> have both recently suffered losses due to prolonged outages, and it&#8217;s only a matter of time before mass-market retailers use attack-for-hire services to wreck holiday sales for the competition.</p>
<p>DoS/DDoS attacks can take a website or online service to it&#8217;s knees effectively and inexpensively, so they are growing to become a <a href="http://www.darkreading.com/security/attacks/showArticle.jhtml?articleID=221600184&amp;cid=ref-true" target="_blank"><span style="text-decoration: underline;">popular</span></a> add on to botnet operators&#8217; portfolios. For a mere $200/day, common <a href="http://www.darkreading.com/security/attacks/showArticle.jhtml?articleID=221600184&amp;cid=ref-true" target="_blank"><span style="text-decoration: underline;">Rent-a-DDoS</span></a> operations can dish out botnet deployments ranging from 100Mbps to 100Gbps. Prolonged over several days, an attack of this magnitude could leave your start-up with a 5-digit invoice for bandwidth.</p>
<p><strong> </strong></p>
<p><strong>How to Prevent a DoS/DDoS Smackdown</strong></p>
<p>Unlike other cyber crimes, this type of attack may not pose a direct threat to your clients&#8217; PII (personally identifiable information). That doesn&#8217;t spare you the expense of lost sales, regaining public opinion, and technical resources however. In addition to those more &#8220;expected&#8221; costs, you&#8217;ll face charges for the bandwidth consumed during the exploit, and that bill alone could be enough to lead your startup business to early retirement.</p>
<p>The worst part is that if a cyber opponent has you in his or her sights, you&#8217;re going down for the count. There are no known prevention methods on record. DoS/DDoS attacks are like a jump spinning rear kick delivered in your blindspot. Scary, deadly stuff.</p>
<p><span id="more-2760"></span><strong>Don&#8217;t Take DoS/DDoS Exploits Lying Down</strong></p>
<p>Since you can&#8217;t &#8220;eat healthy and excise&#8221; your way out of a DoS/DDoS attack, your best bet is to position your website or online application to mitigate the incident. Do this by monitoring your traffic and system state closely at all times. Knowing traffic trends gives you the best chance for getting your guard up FAST, so you have a chance at successfully mitigating the attack.</p>
<p>No matter what equipment or techniques are deployed to mitigate a DDoS/DoS attack, if your internet connection is smaller than the attack size – you’re down. For example, if you have a 100Mbps connection to the internet and the attack is 400Mbps (typical attack size), then the attack exceeds your available bandwidth by 4x saturating your entire network rendering services incapable of responding.</p>
<p>However, if you have enough bandwidth capacity available these techniques and devices are good allies to have when you&#8217;re immersed in the heat of a denial of service battle:</p>
<ul>
<li>Traffic Redirection &#8211; Deny all      traffic, good and bad. This method is effective for getting your resource consumption      under control and restoring order to your server, but it does not solve      the problem of getting customers back in your virtual door.</li>
<li>IP Filtering &#8211; Using routers or      firewalls to filter traffic by geography for example can be an effective      way to deny traffic from IPs based outside your service area &#8211; the US for      example. Unfortunately, these devices can only sniff invalid IPs; they are      not effective when spoofed or valid IPs are attacking.</li>
<li>Intrusion Prevention Systems /      Application Firewalls &#8211; These expensive and adaptable devices      &#8220;learn&#8221; your traffic and can help deny access from malicious      origins very effectively.</li>
<li>DoS Mitigation Appliances &#8211;      Specialized hardware and software made specifically to fight DoS attacks, DoS/DDoS mitigation appliances provide functionality      similar to IPSs and WAFs. This appliance should sit on the very edge      of your network (outside your firewall) so it’s taking the attack load off      your network.</li>
<li>Application Optimization &#8211;      Expertly configured applications can help mitigate D0S/DDoS incidents or      an influx of desirable traffic for that matter. Caching pages, for example, can help defray the impact of an attack.</li>
<li>Load Balancing / Clustering –      Servers can handle a substantial amount of traffic (both good and bad), so      load balanced / clustered environments provide diversification and help prevent a bottleneck within a single piece of hardware.</li>
</ul>
<p>If you’re attacked by a DoS/DDoS exploit, your network will consume bandwidth at a high rate for a sustained period of time, so review and understand your billing agreement for bandwidth overage. The alternative, limiting your bandwidth pipe will help prevent the unexpected bill, but again it doesn&#8217;t get you back online for business.</p>
<p>If you find yourself under attack by DoS/DDoS, use social platforms like Twitter and Facebook to communicate updates with your customers and other interested parties. Customers and prospective business partners appreciate being notified as soon as possible. Plus, being the first to report the attack lets you control the message and keeps any rumors at bay.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fireblog.com/ddos-attacks-the-ultimate-cyber-smackdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You&#8217;ve Been Hacked! Now What? A Guide for Entrepreneurs and eCommerce Website Owners</title>
		<link>http://www.fireblog.com/save-this-list-what-ecommerce-site-owners-should-do-in-the-event-of-a-security-breach/</link>
		<comments>http://www.fireblog.com/save-this-list-what-ecommerce-site-owners-should-do-in-the-event-of-a-security-breach/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 13:00:06 +0000</pubDate>
		<dc:creator>FireHost Evangelist</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[eCommerce Cybercrime Holiday 2009]]></category>
		<category><![CDATA[Online Shopping Safety 2009]]></category>
		<category><![CDATA[Secure Cloud Hosting]]></category>

		<guid isPermaLink="false">http://www.fireblog.com/?p=2651</guid>
		<description><![CDATA[You've just plopped down in your favorite chair after a big Turkey Day meal. Your first "real break" in months. Your only intention today is to relax because you know the next five weeks (from CyberMonday through New Years) will be non-stop, chaotic “fun” for your new business online. Just as your head tips back and your mind wanders off to dream about the great momentum strong holiday sales will provide for your new enterprise, the phone rings. It's your Web site developer. The news is not good. Somehow, someone has compromised your site's customer database and taken critical customer data, like credit card information.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2664" title="CSA_04" src="http://www.fireblog.com/wp-content/uploads/2009/11/CSA_04.png" alt="CSA_04" width="161" height="80" />You&#8217;ve just plopped down in your favorite chair after a big Turkey Day meal. Your first &#8220;real break&#8221; in months. Your only intention today is to relax because you know the next five weeks (from CyberMonday through New Years) will be non-stop, chaotic “fun” for your new business online.</p>
<p>Just as your head tips back and your mind wanders off to dream about the great momentum strong holiday sales will provide for your new enterprise, the phone rings. It&#8217;s your Web site developer. The news is not good. Somehow, someone has compromised your site&#8217;s customer database and taken critical customer data, like credit card information.</p>
<p>What you do in the next 48 hours will be critical to getting your business back online, on track, and on safe ground. Two things to remember: Transparency and Communication. It’s not just about restoring your Web site to a secure state but restoring your customer’s confidence to continue to shop with you.</p>
<p><strong>Step 1: Announce and Assess (Timeframe: Immediately &#8211; 12 hours after the breach is discovered)</strong></p>
<p>Immediately, get your site offline. Google has some specific <a href="http://googlewebmastercentral.blogspot.com/2008/04/my-sites-been-hacked-now-what.html">recommendations</a> regarding the best way to accomplish this.</p>
<p>Customers appreciate being notified as soon as possible, and they would rather hear it from you first. Plus, being the first to report the cyber crime lets you control the message. Concurrently, make a general public statement about what has happened and instruct all individuals (or companies) who have done business with your company to monitor their credit report and banking statements for inconsistencies.</p>
<p>Deliver the statement to all concerned parties via email and make sure to train all customer-facing representatives with the appropriate dialogue. Here&#8217;s a concise and effective example from <a href="http://cyberinsecure.com/customers-data-stolen-from-compromised-balmar-e-commerce-server/">Balmar</a> Incorporated.</p>
<p><strong>Step 2: Conduct a Deeper Investigation (Timeframe: 12 hours &#8211; 36 hours+)</strong></p>
<p>Computer forensic auditors, PCI representatives, governmental agencies, and others may be involved in the process depending on the nature of your business.</p>
<p>Start by interviewing all personnel responsible for securing your environment and find out if they are aware of any known vulnerabilities. Next, begin reviewing log files with the following specific goals in mind: Identifying the date(s) of the breach, how many customers were compromised, and what information was stolen.</p>
<p><strong> </strong></p>
<p><span id="more-2651"></span><strong>Step 3: Notifications and Remediation (Timeframe: 36 hours &#8211; 48 hours or as soon as you&#8217;ve pinpointed the problem)</strong></p>
<p>Contact the police, FBI, and Attorney General with all the details you&#8217;ve compiled about the situation. This may sound severe, but forty-five states have enacted legislature that dictates who should be <a href="http://www.ncsl.org/IssuesResearch/TelecommunicationsInformationTechnology/SecurityBreachNotificationLaws/tabid/13489/Default.aspx">notified</a>, and how, when PII (personally identifiable information) is leaked, and these governmental agencies will direct you on what information to divulge and what to keep private for their investigation. Government agencies are taking cybercrime very seriously these days. They want to help businesses curtail these events so don’t feel silly bringing in the agents.</p>
<p>Concurrently, start technically remediating the breach. The exact steps you take will depend on the nature of the compromise, however these general rules of thumb almost always apply.</p>
<ul>
<li>Remove customer data from the compromised area of the database and move it to a separate, secure location.</li>
<li>Back up your site, database and all log files. If possible, backup your entire server including all operating system files. This help forensics determine the breach.</li>
<li>Perform a complete reinstall of the OS and your Web applications, and make sure to use the most updated software versions available.</li>
<li>Reintroduce your Web site files to the hosting environment using a clean backup, free of any hacked content. Keep in mind, the only way to be 100 percent sure all affected code, links, comments, etc have been removed is to rebuild the site from scratch. If speed is of the essence, restore from an encrypted site version saved prior to the breach.</li>
<li>Change your password scheme. Believe it. Most hacks result from weak or conspicuous user logins and password credentials, so start fresh with a new scheme and separate logins for each service &#8211; FTP, control panel, software admin, email.<strong> </strong></li>
<li>Run third-party vulnerability scans on your site. <a href="http://www.whitehatsec.com/">WhiteHat Security</a> offers a SaaS solution that will uncover vulnerabilities that need to be shored up before re-launching your site.<strong> </strong></li>
</ul>
<p><strong> </strong></p>
<p><strong>Step 4: Re-launch </strong></p>
<p>When you&#8217;re confident the site is secure and all vulnerabilities have been patched, launch and <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=34397">resubmit</a> your site to search engines in the appropriate way so it&#8217;s crawled again ASAP.</p>
<p><strong>Step 5: Communicate </strong></p>
<p>You’ve worked so hard to get your site secure and back online. It’s now time to tell your customers the efforts taken to ensure the security of their information is your number one priority. Not only do you need to honestly and transparently communicate the breach but confidently affirm that their information is protected to the best of your abilities. This final communication is what determines if your customers are going to ever buy from you again.</p>
<p><strong>Step 6: Prevention and “The Aftermath” </strong></p>
<p>Even after your Web site is back online and business has returned to normal, your work is not done.</p>
<p>You’ll be facing fines, payment card industry (PCI) probation, forensic audits, and remediation. It’s not uncommon for even the smallest of businesses to rack up five or six digit expenses between penalties and legal fees. Forrester Research estimates that mitigation will cost an average of $200 for each person/credit card account that is compromised.</p>
<p>In reality, the unanticipated financial expense and “negative time” invested in remediating a security breach (especially during peak selling period like the holidays) could be enough to squelch your start-ups chance of ever becoming a successful medium-size or large enterprise. That’s why it’s extremely important to focus your limited and precious resources wisely.</p>
<p>As with your many other start up costs, protecting your Web site may seem like a hefty cost up front, but if it’s where you do business, it could save you an arm and a leg down the road. Get your site prepared for the worst-case scenario, so this holiday you can finally take that nap.</p>
<p>A version of this article was featured in Venture Beat&#8217;s <a href="http://entrepreneur.venturebeat.com/2009/11/25/youve-been-hacked-now-what/" target="_blank">Entrepreneur Corner</a> on November 25, 2009.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fireblog.com/save-this-list-what-ecommerce-site-owners-should-do-in-the-event-of-a-security-breach/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

