<?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 &#124; 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>Thu, 29 Jul 2010 14:23:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</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 Web 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>0</slash:comments>
		</item>
		<item>
		<title>Safe Cyber Shopping Suggestions for Consumers</title>
		<link>http://www.fireblog.com/safe-cyber-shopping-suggestions-for-consumers/</link>
		<comments>http://www.fireblog.com/safe-cyber-shopping-suggestions-for-consumers/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 05:01:56 +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 Web Hosting]]></category>

		<guid isPermaLink="false">http://www.fireblog.com/?p=2510</guid>
		<description><![CDATA[It's important to remember that good-hearted, upstanding consumers won't be the only ones filling their shopping cart this holiday season. As cybercriminals prepare to trade massive scores of PII (personally identifiable information) for cash in the "Underground Economy", it's important you recognize the risks and take steps necessary to protect your identity.]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-2662 alignright" title="CSA_03" src="http://www.fireblog.com/wp-content/uploads/2009/11/CSA_03.png" alt="CSA_03" width="161" height="80" />As consumers proceed full force into the online shopping season, it&#8217;s important to remember that good-hearted, upstanding citizens won&#8217;t be the only ones filling their shopping cart. As cybercriminals prepare to trade massive scores of PII (personally identifiable information) for cash in the &#8220;Underground Economy&#8221;, it&#8217;s important you recognize the risks and take steps necessary to protect your identity.</p>
<p>Symantec&#8217;s <a href="http://www.symantec.com/about/news/release/article.jsp?prid=20081123_01" target="_blank">report</a> on cybercrime reveals the volume and lucrativeness of identity theft.</p>
<ul>
<li> Credit cards, the hottest commodity, account for nearly 33% of all illegal transactions and produce approximately $5.3 billion in revenue each year. Credit card numbers fetch between $0.10 to $25 per card, so compromising as many accounts as possible motivates thieves in this category.</li>
<li> Stolen financial accounts, the next most lucrative target, produce approximately $1.7 billion in revenue (20% of the total volume). Historically, stolen bank accounts have carried an average balance of $40,000 and sold for $10 and $1,000 each.</li>
</ul>
<p>Crafty, sneaky, and increasingly sophisticated hacker techniques make it difficult to detect schemes, but (re)educating yourself on the risks and acting on protective measures will help prevent identity theft from ruining your holiday season.</p>
<p><strong>#1 Check Statements Daily and Monitor Credit</strong> &#8211; Review transactions flowing thru your bank and credit card accounts daily. Detecting and reporting fraud or identify theft fast will &#8220;stop the bleeding&#8221; and increase the chances for a complete financial recovery. Federal law provides consumers one free copy of their credit report (from each of the reporting bureaus) every year. Toward the end of the middle or end of the holiday shopping season may be a strategic time to exercise your right. Contact <a href="http://www.experian.com/ " target="_blank">Experian</a>, <a href="http://www.transunion.com/" target="_blank">TransUnion</a>, and <a href="http://www.equifax.com" target="_blank">Equifax</a> annually.</p>
<p><strong>#2 Implement Password Confidentiality and Strength</strong> &#8211; Stolen passwords contribute a great deal to identity theft and security breaches taking place online. Password security seems so simple and obvious, but the recent incident with <a href="http://www.wired.com/threatlevel/2009/10/10000-passwords/" target="_blank">Hotmail</a> shows that consumers are not following basic guidelines for safety and much work and education remains to be done. So, here are the top password guidelines (AGAIN!)</p>
<ul>
<li>Don’t share your password with anyone.</li>
<li>Change passwords often.</li>
<li>Set a different, strong password for every website you visit. For example, Twitter should not have the same PW as your bank account or email, etc.</li>
<li>Strong passwords include 8 characters and a mix of symbols, numbers and letters.</li>
<li>Finally, a service like <a href="http://www.onepassword.com/ " target="_blank">One Password</a> can help make the task of implementing good password safety more manageable.</li>
</ul>
<p><span id="more-2510"></span><strong>#3 Use Credit, Not Debit</strong> &#8211; In general, credit cards provide higher protection against unauthorized charges than debit cards. Also, credit cards are &#8220;safer&#8221; for online shopping because they are not linked directly to a bank account. Whether you&#8217;re using a credit or debit card account to make a purchase, NEVER transmit your credit card number via email. EVER. (<em>Believe it or not, this still happens. We have proof.</em>)</p>
<p>For maximum security forego using personal banking accounts altogether. Use a <a href="http://thefinancebuff.com/2009/01/one-time-credit-card-numbers-for-more-security.html" target="_blank">Single Use Credit Card</a> or <a href="http://www.apple.com/retail/reserve/" target="_blank">instore pickup</a> as a shipping options when available.</p>
<p><strong>#4 Avoid Unfamiliar Sites, Monitor URLs, Keep a Paper Trail</strong> &#8211; When shopping online, you never really know from whom you&#8217;re making a purchase. Sticking with familiar and reputable retailers helps reduce the chance for identity theft. If you&#8217;re determined to make a purchase from a less popular site, look for the privacy policy. If it doesn&#8217;t make sense or is missing altogether, consider taking your business somewhere else.</p>
<ul>
<li>Always enter URLs directly into the browser address bar instead of clicking on an ad link you see online or receive via email.</li>
<li>Monitor the URL in your browser&#8217;s address bar throughout the purchase. If it appears you&#8217;ve been redirected to an unfamiliar place, exit immediately.</li>
<li>Look for https:// (not just http://) EVERY time you are prompted to enter information online.</li>
<li>Be overly cautious of any form asking for social security numbers.</li>
<li>Don&#8217;t buy from retailers that require you to fax or email payment details.</li>
<li>Keep a .pdf or hard copy of your purchase receipt. Don&#8217;t rely on the retailer to email a copy.</li>
</ul>
<p><strong>#5 Patch, A Fancy Word for Installing Updates</strong> &#8211; Keeping your operating system and browser updated with the latest version is critical to protecting your identity online. Installing anti-virus software, anti-spyware software, and a firewall provide an added layer of protection, but having these systems installed is only half the battle. If you don&#8217;t take action when the anti-virus monitor flags a suspicious file, you&#8217;re missing the point and putting yourself at risk for cybercrime. Follow instructions and delete problem files or take your computer to a repair <a href="http://www.geeksquad.com/ " target="_blank">professional</a> that can help you diagnose and treat the breach.</p>
<p><strong>#6 Properly Dispose of Old Computers and Mobile Devices</strong> &#8211; Electronics are high atop many holiday wish (and shopping) lists for 2009. If you&#8217;re lucky enough to receive an iMac, ASUS Seashell PC, or any of Yahoo!&#8217;s top electronic <a href="http://shopping.yahoo.com/seasonals/holidays/top-10-products-of-2008--784724867" target="_blank">gifts</a> this holiday season, take precautions to properly dispose of any media on the soon-to-be-discarded, already-forgotten, &#8220;ancient&#8221; model it&#8217;s replacing. Utility programs designed to &#8220;wipe&#8221; your hard drive are readily available and reasonably priced. Data wipes are sufficient for most cases, but if your computer contains confidential, highly sensitive information you may want to consider removing the hard drive and physically destroying it.</p>
<p><strong>#7 Control Data Storage and Backup Offsite Daily</strong> - All the tips and recommendations we&#8217;ve made are intended to keep you safe from cyber theft this shopping season, but they&#8217;re not infallible. Should malware wipe out your hard drive or corrupt important files, you&#8217;ll be glad you opted for inexpensive and comprehensive <a href="http://firevault.com" target="_blank">online backup</a> ahead of time. Offsite backup should take place daily (at minimum), and all files should be encrypted and stored offsite.</p>
<p><strong>#8 Report Suspected Fraud or Actual Identity Theft Immediately</strong> &#8211; There are several resources available to help if your identity is breached or if you suspect fraud has taken place.</p>
<ul>
<li><a href="http://www.naag.org/attorneys_general.php" target="_blank">Attorney General&#8217;s Office</a></li>
<li><a href="https://www.ftccomplaintassistant.gov/ " target="_blank">Federal Trade Commission</a> / Consumer Protection Agency</li>
<li><a href="http://www.bbb.org/" target="_blank">Better Business Bureau </a></li>
</ul>
<p>It may feel like you will never find the time to implement these safe cyber shopping recommendations, but when it comes to protecting your PII an ounce of prevention equates to more than a pound of cure. The hour or two you&#8217;ll invest in proactively preventing a cyber attack on your identity is nothing compared to the time and frustration you&#8217;ll endure recovering from identity fraud.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fireblog.com/safe-cyber-shopping-suggestions-for-consumers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everyone is Excited for CyberMonday – Your Vendors, Your Customers, and Hackers</title>
		<link>http://www.fireblog.com/everyone-is-excited-for-cybermonday-%e2%80%93-your-vendors-your-customers-and-hackers/</link>
		<comments>http://www.fireblog.com/everyone-is-excited-for-cybermonday-%e2%80%93-your-vendors-your-customers-and-hackers/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 13:00:26 +0000</pubDate>
		<dc:creator>FireHost Evangelist</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[eCommerce Cybercrime Holiday 2009]]></category>
		<category><![CDATA[Online Shopping Safety 2009]]></category>
		<category><![CDATA[Secure Web Hosting]]></category>

		<guid isPermaLink="false">http://www.fireblog.com/?p=1032</guid>
		<description><![CDATA[Less than 20 days until CyberMonday. Your warehouse is full. Your shipper is standing by. But have you considered what will happen at your website after a flood of qualified buyers click on the irresistible and precisely worded ad for your product or service? Now (not then) is the time to find out if your website can take the heat that CyberMonday will dish out.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2662" title="eCommerce Security" src="http://www.fireblog.com/wp-content/uploads/2009/11/CSA_02.png" alt="eCommerce Security" width="161" height="80" />Less than 20 days until CyberMonday. Your warehouse is full. Your shipper is standing by. But have you considered what will happen at your website after a flood of qualified buyers click on the irresistible and precisely worded ad for your product or service? Now (not then) is the time to find out if your website can take the heat that CyberMonday will dish out.</p>
<p>The Yahoo! Network Insights team <a href="http://www.yadvertisingblog.com/blog/2009/10/12/black-friday-is-the-new-cyber-monday/" target="_blank">reveals</a> that eCommerce retailers see a 73% increase in online conversions on the Monday following Thanksgiving (compared to the average shopping day in November). This means when consumers open their wallet on 11/30, they will be ready to buy.</p>
<p>You&#8217;ve got one shot, one day to win their holiday business, and you need to be totally sure your customers’ data is completely secure, as hackers are just waiting to steal all of those juicy credit card numbers from the thousands of people coming to your site that day.</p>
<p>So how can you improve user experience and conversion for your eCommerce Web site on high traffic days like CyberMonday while ensuring their security? Creative elements aside, there a many technical intricacies that help make your Web site stand out online and stay secure.</p>
<p><strong>Load times, load times, load times. </strong>When your Web server is underpowered, pages load slowly and can even fail making it appear that your Web site is down. If your Web site appears to be on the fritz, consumers a) won&#8217;t have the patience to wait on you to get it figured out or b) will lose faith in your ability to process orders successfully.</p>
<p>A Web site on the fritz raises questions in consumers minds and decreases the likelihood that they&#8217;ll hand over their hard earned money. Was my order received? Is this Web site capable of protecting my PII (personally identifiable information)? Could someone steal my credit card number? And you know what? These are totally legitimate fears. Hacker activity in the last year has increased drastically, and your buyers know it.</p>
<p>Nestling your precious eCommerce Web site in a reliable, High Availability hosting environment and deploying a content delivery network capable of quickly serving up all your high-quality product shots, video customer testimonials, and other heavy media files can help prevent the situation from ever becoming a concern.</p>
<p><span id="more-1032"></span></p>
<p><strong>Predators on the prowl. </strong>Like your telephone operators, cybercriminals are standing by to take orders. They attack your website forms with SQL injections. They use CSRF (cross site request forgery) to inject malicious code capable of stealing information or even redirecting unwitting consumers off your website which obviously prevents them from completing a purchase. Malicious malware installations can damage your search engine rankings and even get your website banned from Google altogether.</p>
<p>Now more than ever, cybercriminals attack without regard or preference for Windows or Linux. Surrounding the application with multiple varieties and layers of protection between your code and the outside world is the best way to shield your eCommerce website from hackers.</p>
<p>Locking down ports. Installing application-focused firewalls. Deploying IDS (intrusion detection systems). Patching regularly. Contingency plans and encrypted backup restoration. All of these devices and techniques must be executed with precision and enterprise-level expertise to stand a chance at warding off cyber attacks. And in the event the your Web site or application is breached, you&#8217;ll need a team of responsive, knowledgeable Support Superheroes to help get you back online quickly.</p>
<p><strong>Help users find what they need FAST.</strong> The Google Mini Search Appliance applies Google-grade search algorithms to the content on your website so users can find what they&#8217;re looking for FAST, every time. The Google Mini search service works with all hosting platforms, so Windows and Linux users can benefit from its capabilities.</p>
<p>Highly configurable, the Google Mini gives you control over which content will appear in your web search results to assist visitors in finding the perfect gift quickly on CyberMonday. The Google Mini is capable of indexing content for large websites (up to 300,000 pages to be exact) so all the products in your eCommerce product catalog can be included.</p>
<p><strong>Elicit confidence, solicit a sale.</strong> Once you&#8217;ve achieved a high comfort level with the foundation upon which your website resides, you can turn your sites back to fostering trust by incorporating website elements customers can see and appreciate.</p>
<p>SSL Certificates and Security Badges go a long way toward improving your website conversion rate. The type and grade of SSL you select does more than provide an eye-catching dose of confidence. Most SSL providers back their encryption with warranties and insurance for online shoppers and retailers alike, so the protection goes beyond &#8220;feel good&#8221; sentiments to providing financial compensation in the event the SSL product&#8217;s capabilities are compromised.</p>
<p><strong>So What Now? </strong>We&#8217;d be willing to bet that you&#8217;ve devoted the majority of your effort toward ensuring the &#8220;physical&#8221; components of your shopping season (inventory, staff, packaging, etc) are in place. In the process, you may have inadvertently overlooked the most important factor of your CyberMonday success: Is your Web site capable to handle the influx of shoppers and is it capable of protecting their identity?</p>
<p>You still have time to assess your Web application&#8217;s hosting environment and take steps to improve your capabilities or remediate problems before November 30.  You know the old adage, prepare for the worst, hope for the best. May you all have a profitable holiday season, with few gliches on your site, and nary a hacker to bah-humbug your business!</p>
<p><em><strong>This article was featured in <a href="http://www.ecommercetimes.com/story/Everyones-Stoked-About-Cyber-Monday---Vendors-Customers-and-Hackers-68654.html" target="_blank">eCommerce Times</a> on 11/14/09.</strong></em></p>
<p>eCommerce site owners that transition to a secure web hosting plan from FireHost by Friday 11/27 will receive a free <a href="http://www.firehost.com/secure-hosting/vulnerability-audit" target="_blank">Website Vulnerability Audit</a> to help identify which areas of their website’s hosting environment could be improved to help ensure CyberMonday success. You can <a href="http://www.firehost.com/order/products/add-ons" target="_blank">place your order</a> securely online, now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fireblog.com/everyone-is-excited-for-cybermonday-%e2%80%93-your-vendors-your-customers-and-hackers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cyber Shopping Awareness and Preparedness for 2009</title>
		<link>http://www.fireblog.com/cyber-shopping-awareness-and-preparedness-for-2009/</link>
		<comments>http://www.fireblog.com/cyber-shopping-awareness-and-preparedness-for-2009/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 10:00:25 +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 Web Hosting]]></category>

		<guid isPermaLink="false">http://www.fireblog.com/?p=2485</guid>
		<description><![CDATA[Even if cybercriminals can only maintain conversion rates for malware (Trojans, rootkits, spyware, zero-day exploits, keyloggers, and viruses) and phishing attempts (spam), the voluminous spike in traffic means they will increase their earnings. Cyber thieves know that unpredictable traffic patterns and spikes can make it difficult to detect a security breach meaning hacks carried out during the holidays may go overlooked for a longer period of time thus increasing their score as well.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2658" title="CSA_01" src="http://www.fireblog.com/wp-content/uploads/2009/11/CSA_01.png" alt="CSA_01" width="161" height="80" />Tis the season for shopping, travel, food, and family. Unlike holiday seasons of past, planning and performing these activities will involve the web. Booking travel online. Searching for great buys, and purchasing gifts for your family, friends, and clients. Discovering the best recipes and party ideas to ensure your holiday gathering is memorable. When you sit back to think about it, eCommerce is infiltrating our shopping lives, and for good reason.</p>
<ul>
<li>eCommerce websites never close.</li>
<li>You can easily compare prices from multiple sellers.</li>
<li>No lines, crowded parking lots, or germs (<a href="http://www.prnewswire.com/news-releases/morpace-reports-h1n1-flu-could-adversely-impact-holiday-shopping-season-65988487.html" target="_blank">H1N1</a>).</li>
</ul>
<p>All these benefits mean more and more people (of all ages and economic conditions) will be shopping online during the holidays in 2009 &#8211; enough to generate an estimated $156 Billion in sales. <em>(Online shopping represents 36% of sales expected from all channels this winter according to the <a href="http://www.nrf.com/modules.php?name=Pages&amp;sp_id=1130" target="_blank">National Retail Federation</a>.)</em></p>
<p>That&#8217;s music to the ears of cyberthieves. Like retailers, hackers are going into their busy season. The influx of shoppers using eCommerce websites over the next several weeks means that there are more cyber crime victims upon whom to prey.</p>
<p>Even if cybercriminals can only <em>maintain</em> conversion rates for malware (Trojans, rootkits, spyware, zero-day exploits, keyloggers, and viruses) and phishing attempts (spam), the voluminous spike in traffic means they will increase their earnings. Cyber thieves know that unpredictable traffic patterns and spikes can make it difficult to detect a security breach meaning hacks carried out during the holidays may go overlooked for a longer period of time.</p>
<p>So that&#8217;s that backdrop in front of which a secure web hosting provider views holiday 2009, and we&#8217;re up for the challenge.</p>
<p><span id="more-2485"></span></p>
<p>Our <a href="http://www.firehost.com/about/support" target="_blank">Epic Support Team</a> observes the online shopping season with a wary, cautious and protective eye (so you don&#8217;t have to). We monitor traffic patterns and pre-empt malicious attempts to our network so successfully because we&#8217;re familiar with all the tools in a Cyber thief&#8217;s arsenal. We&#8217;ve seen them all and have what it takes to recognize breaches quickly and remediate when necessary for SMBs.</p>
<ul>
<li>Enterprise application security defends your eCommerce application.</li>
<li>Humongous bandwidth pipes burst to 100 Mbps when needed while <a href="http://www.firehost.com/secure-hosting/cdn" target="_blank">CDN</a> serves heavy media content around the globe to help ensure that more visitors can reach your website without latency and to provide better defense against &#8220;the average&#8221; DDoS attack.</li>
<li>Smart, effective <a href="http://www.firehost.com/secure-hosting/exchange-email" target="_blank">Spam</a> protection will help eliminate phishing attempts from your employees inbox and downloadable malware from penetrating your business&#8217; computers.</li>
</ul>
<p>&#8220;We empower our secure eCommerce hosting clients to focus on bringing the customer to their site because they feel confident that it will be available when visitors arrive via our network. Even if your eCommerce website is not hosted with us, and you are not comfortable changing providers to close to the shopping boom, we can still help you prepare.&#8221; Chris Drake, Founder and CEO.</p>
<p>Throughout the holiday shopping season, FireHost will provide <a href="http://www.firehost.com/secure-hosting/vulnerability-audit" target="_blank">Website Vulnerability Audits</a> for eCommerce websites. <a href="http://www.firehost.com/order/products/add-ons" target="_blank">Place your order</a> now and have your website audited while there is still time to remediate problems, before the traffic really spikes. Going into the shopping wars equipped with detailed report of your vulnerabilities can help you bounce back quickly should any problems arise.</p>
<p><em>In preparation to the &#8220;cyber mayhem&#8221; that&#8217;s about to ensue, the FireBlog will incorporate Cyber Shopping Awareness and Preparedness articles from 11/9-12/24. We&#8217;ll have a plethora of useful information that can improve your holiday shopping season whether you are on the giving (eCommerce) or receiving (eConsumer) end of the spectrum, so follow us on <a href="http://twitter.com/firehost" target="_blank">Twitter</a> and <a href="http://www.facebook.com/pages/FireHost-Inc/57883784390" target="_blank">Facebook</a> for updates. </em></p>
<p><em>Future articles include:</em></p>
<ul>
<li><em>CyberMonday Countdown: How to Ensure Your eCommerce Website Will Perform</em></li>
<li><em>SSL Your Way to a Safer, More Successful CyberMonday</em></li>
<li><em>Incorporating Video Testimonials and Demonstrations Without Compromising Performance</em></li>
<li><em>Safe Cyber Shopping Tips and Methods for Consumers</em></li>
<li><em>Why Hackers Have a Headstart on Holiday Shopping</em></li>
<li><em>How to Identify Unsafe Shopping Conditions &#8211; a visual roadmap</em></li>
<li><em>Make Year-end Donations Safely, Online<br />
</em></li>
<li><em>Best of Holiday 2009 &#8211; Sites that Deliver Security and Performance<br />
</em></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fireblog.com/cyber-shopping-awareness-and-preparedness-for-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
