<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  <channel>
    <title><![CDATA[[SecurityRatty] tag: requests]]></title>
    <link>http://securityratty.com/tag/requests</link>
    <description></description>
    <pubDate>Mon, 08 Sep 2008 02:23:54 +0000</pubDate>
    <generator>iRatty Engine</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <item>
      <title><![CDATA[Vulnerabilities quickly mitigated by security-conscious vendors]]></title>
      <link>http://securityratty.com/article/7953938c09c36aba1397daeec84ac8ab</link>
      <guid>http://securityratty.com/article/7953938c09c36aba1397daeec84ac8ab</guid>
      <description><![CDATA[As you are likely aware, I spend a fair bit of time heckling those I believe deserving due to their shortcomings with regard to protecting online consumers
I do, however, continue to seek...]]></description>
      <content:encoded><![CDATA[As you are likely aware, I spend a fair bit of time heckling those I believe deserving due to their shortcomings with regard to protecting online consumers.<br />I do, however, continue to seek opportunities to shed positive light as well, and recent responses from a number of vendor/developers warrant an opportunity to do just that.<br />In the last 30 days, I've discovered vulnerabilities in products from four different vendors, and <a href="http://holisticinfosec.org/content/category/6/23/45/" target="_blank">advised</a> them all immediately upon discovery. Usually, that's where the story ends, as sadly, my repeated requests for action are often ignored. The last 30 days have proven to be entirely different, with swift responses and action from ALL vendors to whom I reported vulnerabilities. In all cases I received replies within 24 hours or less, and patches/fixes/updates were typically released within 24-72 additional hours. These are exemplary responses, and reflect why I choose to conduct vulnerability research. I believe we, as web application professionals (both developers and security practitioners), are beholden to the greater public and must endeavor to protect the online safety of the Internet consumer. <br />To each of these vendors/developers I'd like to issue a hearty "well done" and issue public kudos for their diligence and security consciousness, on behalf of consumers and website operators.<br />To Lukas of <a href="http://planetluc.com/en/" target="_blank">PlanetLuc</a>, Jasper and Eric of <a href="http://infrae.com/products/silva" target="_blank">Infrae/Silva</a>, Alexander of <a href="http://www.compactcms.nl/" target="_blank">CompactCMS</a>, and Peter from <a href="http://activecampaign.com/" target="_blank">ActiveCampaign</a> may I say that your efforts are greatly appreciated. Where too few choose to do the right thing, your responses leave us with the perception of caring and integrity.<br />Thank you.<br /><br /><a href="http://del.icio.us/post?url=http://holisticinfosec.blogspot.com/2008/11/vulnerabilities-quickly-mitigated-by.html&title=Vulnerabilities%20quickly%20mitigated%20by%20security-conscious%20vendors " title="Vulnerabilities quickly mitigated by security-conscious vendors ">del.icio.us</a> | <a href="http://digg.com/submit?phase=2&amp;url=http://holisticinfosec.blogspot.com/2008/11/vulnerabilities-quickly-mitigated-by.html" title="Vulnerabilities quickly mitigated by security-conscious vendors ">digg</a> | <a href="http://slashdot.org/submit.pl?url=http://holisticinfosec.blogspot.com/2008/11/vulnerabilities-quickly-mitigated-by.html">Submit to Slashdot</a>]]></content:encoded>
      <pubDate>Tue, 11 Nov 2008 17:10:00 +0000</pubDate>
      <category domain="http://securityratty.com/tag/responses">responses</category>
      <category domain="http://securityratty.com/tag/swift responses">swift responses</category>
      <category domain="http://securityratty.com/tag/exemplary responses">exemplary responses</category>
      <category domain="http://securityratty.com/tag/issue public kudos">issue public kudos</category>
      <category domain="http://securityratty.com/tag/public">public</category>
      <category domain="http://securityratty.com/tag/issue">issue</category>
      <category domain="http://securityratty.com/tag/vendors">vendors</category>
      <category domain="http://securityratty.com/tag/vulnerabilities">vulnerabilities</category>
      <category domain="http://securityratty.com/tag/web application professionals">web application professionals</category>
      <source url="http://holisticinfosec.blogspot.com/2008/11/vulnerabilities-quickly-mitigated-by.html">Vulnerabilities quickly mitigated by security-conscious vendors</source>
    </item>
    <item>
      <title><![CDATA[Credit Cards Failing Open]]></title>
      <link>http://securityratty.com/article/0d97a3eab73024d98685f3d33f481217</link>
      <guid>http://securityratty.com/article/0d97a3eab73024d98685f3d33f481217</guid>
      <description><![CDATA[Most consumers are aware that when you close a credit card account, its not really closed . For convenience reasons, recurring subscription charges such as your cable bill will continue to be...]]></description>
      <content:encoded><![CDATA[<p>Most consumers are aware that when you close a credit card account, <a href="http://news.bbc.co.uk/2/hi/programmes/moneybox/3227850.stm">it&#8217;s not really closed</a>.  For &#8220;convenience&#8221; reasons, recurring subscription charges such as your cable bill will continue to be approved.  You can kind of see where the credit card companies are coming from, but it&#8217;s a pretty weak argument.  The cable company just needs to notify me that the credit card on file is no longer valid, and I&#8217;ll update my information.  Problem solved.</p>
<p>But that credit card weirdness is nothing compared to the one I&#8217;m about to describe.  </p>
<p>Before we do that, let&#8217;s take a moment to discuss the design principle of <a href="https://buildsecurityin.us-cert.gov/daisy/bsi/articles/knowledge/principles/349-BSI.html">failing securely</a>.  The general idea is that if a security mechanism fails, it should fail closed.  If your firewall crashes, it should block all traffic, not allow all the packets through.  If the power source to your card key system is interrupted, it shouldn&#8217;t unlock all the doors.  If the connection between your application server and your LDAP directory is severed, subsequent authentication requests should be rejected, not approved.  This is not rocket science.</p>
<p>So back to credit cards.  I had a conversation last night with an old friend who related a bizarre situation they had encountered during the QA process for one of their web applications.  One of their tests involved repeatedly attempting a credit card transaction using a canceled/expired American Express card.  Here&#8217;s what they saw in their logs, paraphrased by me:</p>
<pre>
Attempt 1: Denied
Attempt 2: Denied
Attempt 3: Denied
 .
 .
 .
Attempt 49: Denied
Attempt 50: Denied
Attempt 51: Approved
</pre>
<p>What the&#8230;?  Approved?  That can&#8217;t be right.  So they ran the test again.  Every time, after multiple consecutive rejected attempts, the transaction would inexplicably go through.  The threshold wasn&#8217;t always 50, but the general pattern was consistent &#8212; keep trying and eventually it&#8217;ll work.  Clearly, this had to be a bug in the code, but a deep-dive into the guts of the application turned up nothing. The application security group got American Express on the phone to see if they had any insight on this odd behavior.  The answer?  They didn&#8217;t concede the failure was on their end, despite log data showing the successful authorization codes.  </p>
<p>My gut instinct would be that the application requesting the transactions wasn&#8217;t failing securely (e.g. network connection to AmEx timed out, so just approve the transaction).  But that explanation wouldn&#8217;t account for authorization codes coming back.</p>
<p>So what in the world is going on here?  Why would the system behave this way?  Is it by design?  I can&#8217;t think of a single legitimate use case for failing open like this.  If this is actually a design decision by the credit card companies, I have no doubt that someone in our audience knows the rest of the story.</p>
]]></content:encoded>
      <pubDate>Thu, 30 Oct 2008 16:35:34 +0000</pubDate>
      <category domain="http://securityratty.com/tag/credit card transaction">credit card transaction</category>
      <category domain="http://securityratty.com/tag/transaction">transaction</category>
      <category domain="http://securityratty.com/tag/credit card">credit card</category>
      <category domain="http://securityratty.com/tag/credit card companies">credit card companies</category>
      <category domain="http://securityratty.com/tag/credit card weirdness">credit card weirdness</category>
      <category domain="http://securityratty.com/tag/credit card account">credit card account</category>
      <category domain="http://securityratty.com/tag/attempt">attempt</category>
      <category domain="http://securityratty.com/tag/application server">application server</category>
      <category domain="http://securityratty.com/tag/application">application</category>
      <source url="http://www.veracode.com/blog/2008/10/credit-cards-failing-open/">Credit Cards Failing Open</source>
    </item>
    <item>
      <title><![CDATA[Pseudo Email Marketing Tools Empowering Spammers]]></title>
      <link>http://securityratty.com/article/7568db3beb1fe59141f6ec74902d2ae7</link>
      <guid>http://securityratty.com/article/7568db3beb1fe59141f6ec74902d2ae7</guid>
      <description><![CDATA[Largely ignoring its real life applicability, a vendor of &quot;email marketing&quot; tools continues the development of a DIY spamming tools, whose features greatly evolved throughout the last couple of years....]]></description>
      <content:encoded><![CDATA[<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://1.bp.blogspot.com/_wICHhTiQmrA/SQj-qLXa7XI/AAAAAAAACZs/eVrvlQbC73Y/s1600-h/marketing_spamming_6.gif" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://1.bp.blogspot.com/_wICHhTiQmrA/SQj-qLXa7XI/AAAAAAAACZs/ByNNe5khEhY/s200-R/marketing_spamming_6.gif" /></a>Largely ignoring its real life applicability, a vendor of "email marketing" tools continues the development of a DIY spamming tools, whose features greatly evolved throughout the last couple of years. Originally released in 2004, the vendor appears to have been actively improving the real-time metrics of the campaigns, next to building interactivity into the spamming process through the WYSIWYG editor.<br />
<br />
For better or worse, despite that these applications are empowering spammers and lowering down the entry barriers into spamming, the tools have gotten <a href="http://ddanchev.blogspot.com/2008/07/dissecting-managed-spamming-service.html">largely replaced</a> by the <a href="http://ddanchev.blogspot.com/2008/10/inside-managed-spam-service.html">increasing number</a> of <a href="http://ddanchev.blogspot.com/2007/10/managed-spamming-appliances-future-of.html">managed spamming services</a>, whose quality assurance features of bypassing spam filters act as a main differentiation factor. Here are some of this tool's features :<br />
<br />
<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://1.bp.blogspot.com/_wICHhTiQmrA/SQj3AWUp3WI/AAAAAAAACZE/IJaKNStG3tY/s1600-h/marketing_spamming_1.gif" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" height="151" src="http://1.bp.blogspot.com/_wICHhTiQmrA/SQj3AWUp3WI/AAAAAAAACZE/A906A5o9i1I/s200-R/marketing_spamming_1.gif" width="200" /></a><i>"- High speed distribution - 200,000 letters per hour.</i><br />
<i>- Contains an embedded SMTP server that allows you to send letters directly to the recipient's mailbox without using your provider's SMTP server.</i><br />
<i>-&nbsp; If you are accessing the Internet via modem, and distribution using the SMTP server, you do not fit - also allowed to send mail through any number of remote SMTP servers (relay), or via SMTP server provider.</i><br />
<i>- Support for SMTP authentication.</i><br />
<br />
<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://1.bp.blogspot.com/_wICHhTiQmrA/SQj_l02fWvI/AAAAAAAACZ8/V9kNzRzibCQ/s1600-h/marketing_spamming_2.gif" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://1.bp.blogspot.com/_wICHhTiQmrA/SQj_l02fWvI/AAAAAAAACZ8/_uP9YfEEhEk/s200-R/marketing_spamming_2.gif" /></a><i>- Supports up to 500 concurrent streams to send to each mailing.</i><br />
<i>- Automatic caching DNS requests to speed up distribution and reducing the load on the DNS server.</i><br />
<i>- Ability to run multiple independent shots at the same time.</i><br />
<i>- Ability to suspend delivery and continue later with a point.</i><br />
<i>- All modes distribution - TO, CC, BCC and PersonalCopy. In the latter case, the program generates a personal letter to each recipient.</i><br />
<br />
<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://3.bp.blogspot.com/_wICHhTiQmrA/SQj_VDIUypI/AAAAAAAACZ0/-Zr9CYINTlY/s1600-h/marketing_spamming_3.gif" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/_wICHhTiQmrA/SQj_VDIUypI/AAAAAAAACZ0/aJp3Ub3Uwfo/s200-R/marketing_spamming_3.gif" /></a><i>- Ability to specify the size of BCC package regimes TO, CC, and BCC.</i><br />
<i>- Ability to specify the TO: field for mailing regimes and CS BCC.</i><br />
<i>- Full emulation signature letters Outlook Express to increase cross-your-mails through spam filters.</i><br />
<i>- Support for distribution via a proxy server.</i><br />
<i>- Automatically detect the bad (non-existent) and not by E-Mail addresses directly in the process of distribution based on a flexible, user SMTP rules. Thanks SMTP rules achieved a very precise definition of bad addresses virtually no false positives.</i><br />
<br />
<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://3.bp.blogspot.com/_wICHhTiQmrA/SQj3jFAM6tI/AAAAAAAACZc/Rf_WZkjuJ84/s1600-h/marketing_spamming_7.gif" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/_wICHhTiQmrA/SQj3jFAM6tI/AAAAAAAACZc/kujVnisjcjY/s200-R/marketing_spamming_7.gif" /></a><i>- Ability to create lists of addresses, depending on the specific responses of remote servers for SMTP commands.</i><br />
<i>- Organize automatically subscribe / unsubscribe to the mailing addresses.</i><br />
<i>- Perform any processing of existing lists.</i><br />
<i>- Develop a letter to the powerful WYSIWYG Html editor.</i><br />
<br />
<i>- Automatically apply to each recipient by name, as well as paste in a letter to a specific, personalized information through powerful Mail Merge templates.</i><br />
<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://4.bp.blogspot.com/_wICHhTiQmrA/SQj3vx0a3PI/AAAAAAAACZk/dlmHlT-5hyw/s1600-h/marketing_spamming_8.gif" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://4.bp.blogspot.com/_wICHhTiQmrA/SQj3vx0a3PI/AAAAAAAACZk/fRcQsC-6XlY/s200-R/marketing_spamming_8.gif" /></a><i>- Set the calendar to automatically launch shots at the right time.</i><br />
<i>- Quickly send out mail.</i>"<br />
<br />
With managed spam services' on-demand, risk forwarding and completely outsourced processes, they're not only going to replace such DIY tools, but also, <a href="http://ddanchev.blogspot.com/2007/11/managed-fast-flux-provider.html">position them as a dynamically</a> evolving <a href="http://ddanchev.blogspot.com/2008/10/managed-fast-flux-provider-part-two.html">cybercrime platforms</a>.<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=CqO0M"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=CqO0M" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=HbgzM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=HbgzM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=KVshm"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=KVshm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=wJpMm"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=wJpMm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=ON79M"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=ON79M" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=nKPXM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=nKPXM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=hPU3m"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=hPU3m" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~4/436383197" height="1" width="1"/>]]></content:encoded>
      <pubDate>Wed, 29 Oct 2008 16:28:30 +0000</pubDate>
      <category domain="http://securityratty.com/tag/bad addresses">bad addresses</category>
      <category domain="http://securityratty.com/tag/addresses">addresses</category>
      <category domain="http://securityratty.com/tag/tools">tools</category>
      <category domain="http://securityratty.com/tag/smtp server">smtp server</category>
      <category domain="http://securityratty.com/tag/smtp server provider">smtp server provider</category>
      <category domain="http://securityratty.com/tag/e-mail addresses directly">e-mail addresses directly</category>
      <category domain="http://securityratty.com/tag/distribution">distribution</category>
      <category domain="http://securityratty.com/tag/modes distribution">modes distribution</category>
      <category domain="http://securityratty.com/tag/speed distribution">speed distribution</category>
      <source url="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~3/436383197/pseudo-email-marketing-tools-empowering.html">Pseudo Email Marketing Tools Empowering Spammers</source>
    </item>
    <item>
      <title><![CDATA[DDoS Attack Graphs from Russia vs Georgia's Cyberattacks]]></title>
      <link>http://securityratty.com/article/dc1b9df0e6d3f3f43b5c110a78a3be89</link>
      <guid>http://securityratty.com/article/dc1b9df0e6d3f3f43b5c110a78a3be89</guid>
      <description><![CDATA[Part of Georgia's information warfare campaign aiming to minimize the bandwidth impact on its de-facto media platforms such as the web site of their Ministry of Foreign Affairs, I've just received a...]]></description>
      <content:encoded><![CDATA[<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://4.bp.blogspot.com/_wICHhTiQmrA/SPZIdRd6kMI/AAAAAAAACTA/fkKSEaSfIXc/s1600-h/ddos_attack_graph_georgia_russia.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://4.bp.blogspot.com/_wICHhTiQmrA/SPZIdRd6kMI/AAAAAAAACTA/KRKwlE_hA04/s200-R/ddos_attack_graph_georgia_russia.JPG" /></a>Part of <a href="http://www.mediachannel.org/wordpress/2008/08/14/the-cnn-effect-georgia-schools-russia-in-information-warfare/">Georgia's information warfare campaign</a> aiming to minimize the bandwidth impact on its de-facto media platforms such as the web site of&nbsp; their Ministry of Foreign Affairs, <a href="http://georgiaupdate.gov.ge/doc/10006744/CYBERWAR-%20fd_2_new.pdf">I've just received a report</a> part of Georgia's "<i>Russian Invasion of Georgia</i>" series entitled "<i>Russian Cyberwar on Georgia</i>", which is quoting me on page 4 in regard to the "too good to be courtesy of <a href="http://computerworld.com/action/article.do?command=viewArticleBasic&amp;taxonomyName=cybercrime_and_hacking&amp;articleId=9112443&amp;taxonomyId=82&amp;intsrc=kc_top">Russia's cyber militia</a>" creative that appeared on the defaced Georgian President's web site. The report also includes DDoS attack graphs and related details worth going through : <br />
<br />
"<i>The last large cyberattack took place on 27 August. After that, there have been no serious attacks on Georgian cyberspace. By that is meant that minor attacks are still continuing but these are indistinguishable from regular traffic and can certainly be attributed to regular civilians. On 27 August, at approximately 16:18 (GMT +3) a DDoS attack against the Georgian websites was launched. The main target was the Georgian Ministry of Foreign Affairs. The attacks peaked at approx 0,5 million network packets per second, and up to 200–250 Mbits per second in bandwidth (see attached graphs). The graphs represent a 5-minute average: actual peaks were higher.</i><br />
<br />
<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://1.bp.blogspot.com/_wICHhTiQmrA/SPZI1-qp3kI/AAAAAAAACTI/-xuWJWJj9gg/s1600-h/ddos_attack_graph_georgia_russia1.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://1.bp.blogspot.com/_wICHhTiQmrA/SPZI1-qp3kI/AAAAAAAACTI/Fef2CL-KlH4/s200-R/ddos_attack_graph_georgia_russia1.JPG" /></a><i>The attacks mainly consisted of HTTP queries to the http://mfa.gov.ge website. These were requests for the main page script with randomly generated parameters. These requests were generated to overload the web server in a way where every single request would need significant CPU time. The initial wave of the attack disrupted services for some Georgian websites. The services became slow and unresponsive. This was due to the load on the servers by these requests. As you see from the graphs above the attacks started to wind down after most of the attackers were successfully blocked. The latest attack may have been initiated as a response to the media coverage on the Russian cyber attacks.</i>"<br />
<br />
In case you're interested in more factual evidence about what was happening at the particular moment in time, go through the following assessment - "<a href="http://blogs.zdnet.com/security/?p=1670">Coordinated Russia vs Georgia cyber attack in progress</a>", as well as through the following posts - "<a href="http://ddanchev.blogspot.com/2008/08/russia-vs-georgia-cyber-attack.html">The Russia vs Georgia Cyber Attack</a>"; "<a href="http://ddanchev.blogspot.com/2008/08/whos-behind-georgia-cyber-attacks.html">Who's Behind the Georgia Cyber Attacks?</a>"; "<a href="http://blogs.zdnet.com/security/?p=1533">Georgia President’s web site under DDoS attack from Russian hackers</a>".<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=OctdM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=OctdM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=YNEdM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=YNEdM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=i8cZm"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=i8cZm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=Qfnnm"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=Qfnnm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=gCSDM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=gCSDM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=TEWEM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=TEWEM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=SVKNm"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=SVKNm" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~4/421908026" height="1" width="1"/>]]></content:encoded>
      <pubDate>Wed, 15 Oct 2008 11:01:58 +0000</pubDate>
      <category domain="http://securityratty.com/tag/georgia">georgia</category>
      <category domain="http://securityratty.com/tag/attacks">attacks</category>
      <category domain="http://securityratty.com/tag/georgia cyber attacks">georgia cyber attacks</category>
      <category domain="http://securityratty.com/tag/attack">attack</category>
      <category domain="http://securityratty.com/tag/georgia cyber attack">georgia cyber attack</category>
      <category domain="http://securityratty.com/tag/ddos attack">ddos attack</category>
      <category domain="http://securityratty.com/tag/russian cyber attacks">russian cyber attacks</category>
      <category domain="http://securityratty.com/tag/graphs">graphs</category>
      <category domain="http://securityratty.com/tag/russia">russia</category>
      <source url="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~3/421908026/ddos-attack-graphs-from-russia-vs.html">DDoS Attack Graphs from Russia vs Georgia's Cyberattacks</source>
    </item>
    <item>
      <title><![CDATA[Skype security flub leads to discovery of Chinese monitoring]]></title>
      <link>http://securityratty.com/article/45c85bac2a4d86fa20904e4f706539a8</link>
      <guid>http://securityratty.com/article/45c85bac2a4d86fa20904e4f706539a8</guid>
      <description><![CDATA[Researchers have found evidence that Skype and Chinese partner TOM Online are monitoring text communications online for &quot;sensitive&quot; topics, and storing extensive logs on publicly-accessible servers....]]></description>
      <content:encoded><![CDATA[Researchers have found evidence that Skype and Chinese partner TOM Online are monitoring text communications online for "sensitive" topics, and storing extensive logs on publicly-accessible servers. Not only is this a major security risk, it also raises questions as to what level Skype is complying with the requests of the Chinese government.]]></content:encoded>
      <pubDate>Thu, 02 Oct 2008 22:00:10 +0000</pubDate>
      <category domain="http://securityratty.com/tag/skype">skype</category>
      <category domain="http://securityratty.com/tag/major security risk">major security risk</category>
      <category domain="http://securityratty.com/tag/level skype">level skype</category>
      <category domain="http://securityratty.com/tag/text communications online">text communications online</category>
      <category domain="http://securityratty.com/tag/extensive logs">extensive logs</category>
      <category domain="http://securityratty.com/tag/chinese government">chinese government</category>
      <category domain="http://securityratty.com/tag/raises questions">raises questions</category>
      <category domain="http://securityratty.com/tag/requests">requests</category>
      <category domain="http://securityratty.com/tag/researchers">researchers</category>
      <source url="http://digg.com/security/Skype_security_flub_leads_to_discovery_of_Chinese_monitoring">Skype security flub leads to discovery of Chinese monitoring</source>
    </item>
    <item>
      <title><![CDATA[Skype security flub leads to discovery of Chinese monitoring]]></title>
      <link>http://securityratty.com/article/f9c06619347f24a5198b9c80bb5d1495</link>
      <guid>http://securityratty.com/article/f9c06619347f24a5198b9c80bb5d1495</guid>
      <description><![CDATA[Researchers have found evidence that Skype and Chinese partner TOM Online are monitoring text communications online for &quot;sensitive&quot; topics, and storing extensive logs on publicly-accessible servers....]]></description>
      <content:encoded><![CDATA[Researchers have found evidence that Skype and Chinese partner TOM Online are monitoring text communications online for "sensitive" topics, and storing extensive logs on publicly-accessible servers. Not only is this a major security risk, it also raises questions as to what level Skype is complying with the requests of the Chinese government.<img src="http://feedproxy.google.com/~r/digg/topic/security/popular/~4/0Jmulo06QTg" height="1" width="1"/>]]></content:encoded>
      <pubDate>Thu, 02 Oct 2008 22:00:10 +0000</pubDate>
      <category domain="http://securityratty.com/tag/skype">skype</category>
      <category domain="http://securityratty.com/tag/major security risk">major security risk</category>
      <category domain="http://securityratty.com/tag/level skype">level skype</category>
      <category domain="http://securityratty.com/tag/text communications online">text communications online</category>
      <category domain="http://securityratty.com/tag/extensive logs">extensive logs</category>
      <category domain="http://securityratty.com/tag/chinese government">chinese government</category>
      <category domain="http://securityratty.com/tag/raises questions">raises questions</category>
      <category domain="http://securityratty.com/tag/requests">requests</category>
      <category domain="http://securityratty.com/tag/researchers">researchers</category>
      <source url="http://feeds.digg.com/~r/digg/topic/security/popular/~3/0Jmulo06QTg/Skype_security_flub_leads_to_discovery_of_Chinese_monitoring">Skype security flub leads to discovery of Chinese monitoring</source>
    </item>
    <item>
      <title><![CDATA[Managed Fast Flux Provider - Part Two]]></title>
      <link>http://securityratty.com/article/210da9c1b19bf76a539ca28b24edc989</link>
      <guid>http://securityratty.com/article/210da9c1b19bf76a539ca28b24edc989</guid>
      <description><![CDATA[We're slowly entering into a stage where RBN bullet proof hosting franchises are vertically integrating, and due to the requests from their customers are starting to offer that they refer to as...]]></description>
      <content:encoded><![CDATA[<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://1.bp.blogspot.com/_wICHhTiQmrA/SOQymgVga0I/AAAAAAAACOw/geleqRWDOE0/s1600-h/pharma_spam_fastflux.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://1.bp.blogspot.com/_wICHhTiQmrA/SOQymgVga0I/AAAAAAAACOw/8PTQr8G6mBM/s200-R/pharma_spam_fastflux.png" /></a>We're slowly entering into a stage where <a href="http://ddanchev.blogspot.com/2008/09/estdomains-and-intercage-vs-cybercrime.html">RBN bullet proof hosting franchises</a> are vertically integrating, and due to the requests from their customers are starting to offer that they refer to as "mirrored hosting" which in practice is plain simple fast flux network consisting of RBN-alike purchased netblocks, and naturally, botnet infected hosts.<br />
<br />
Managed fast-fluxing is only starting to go mainstream, for instance, in July I found evidence that <a href="http://ddanchev.blogspot.com/2008/07/money-mule-recruiters-use-asproxs-fast.html">money mule recruiters were using ASProx's infected hosts as hosting infrastructure</a>, and in November, 2007, <a href="http://ddanchev.blogspot.com/2007/11/managed-fast-flux-provider.html">an infamous spamming software vendor</a> was also found to have been offering fast-flux services in the past.<br />
<br />
In this most recent fast-flux service, we have a known spammer and botnet master that in between self-serving himself on is way to ensure his portfolio of scammy domains remains online for a "little longer", is commercializing fast-fluxing and is offered a DIY service :<br />
<br />
"<i>Finally after hardwork and great appreciation from our normal bullet proof  hosting/server clients we are able to launch Mirrored hosting. What is </i><i>Mirrored hosting</i><i> ?</i><br />
<i><br />
================<br />
</i><i>Mirrored hosting</i><i> is a powerful mirrored  web hosting management, uses multiple Virtual servers to host  website with 100% uptime. </i><i>Mirrored hosting </i><i>is a combination of two things, which  are:<br />
<br />
1. Specially Designed Virtual Servers</i><br />
<i> 2. Powerful  Automated Control Panel</i><br />
<br />
<i>How does it work ?<br />
===============&nbsp;</i><br />
<br />
<i>Mirrored hosting</i><i> uses specially configured Virtual Servers making them link with the </i><i>Mirrored hosting</i><i> Control Panel  which is then controlled by our own control panel allowing us to provide smooth  streamline hosting with no downtime. No one is able to trace original IP of the  server or the place where the files are hosted so the websites/domains hosted  have a 100% Uptime. This is achieved by unique customisation of our Virtual Servers.<br />
<br />
<b>Actually, it takes ips around the world and our  powerful control panel just rotates the ips every 15 minutes. though all these  ips you will see will be fake no one can trace the orignal ip where files are  hosted. Sometimes the ip is from China, Korea, USA, UK, Japan, Lithuania etc.</b></i>"<br />
<br />
The concept has always been there for cybercriminals to take advantage of, but once it matures into a managed service it would undoubtedly lower down the entry barriers allowing yesterday's average phishers to take advantage of what only the "pros" were used to.<br />
<br />
<b>Related posts:</b><br />
<a href="http://ddanchev.blogspot.com/2007/09/storm-worms-fast-flux-networks.html">Storm Worm's Fast Flux Networks</a><br />
<b> </b><a href="http://ddanchev.blogspot.com/2007/11/managed-fast-flux-provider.html">Managed Fast Flux Provider</a><br />
<a href="http://ddanchev.blogspot.com/2007/10/fast-flux-spam-and-scams-increasing.html">Fast Flux Spam and Scams Increasing</a><br />
<a href="http://ddanchev.blogspot.com/2007/10/fast-fluxing-yet-another-pharmacy-scam.html">Fast Fluxing Yet Another Pharmacy Spam</a><br />
<a href="http://ddanchev.blogspot.com/2008/07/obfuscating-fast-fluxed-sql-injected.html">Obfuscating Fast Fluxed SQL Injected Domains</a><br />
<a href="http://ddanchev.blogspot.com/2008/05/storm-worm-hosting-pharmaceutical-scams.html">Storm Worm Hosting Pharmaceutical Scams</a><br />
<a href="http://blogs.zdnet.com/security/?p=1122">Fast-Fluxing SQL injection attacks executed from the Asprox botnet</a><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=AO71M"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=AO71M" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=xZIrM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=xZIrM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=ZGgOm"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=ZGgOm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=e7OAm"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=e7OAm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=BVPbM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=BVPbM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=iS1HM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=iS1HM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=iQOUm"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=iQOUm" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~4/409475392" height="1" width="1"/>]]></content:encoded>
      <pubDate>Thu, 02 Oct 2008 08:39:01 +0000</pubDate>
      <category domain="http://securityratty.com/tag/fast">fast</category>
      <category domain="http://securityratty.com/tag/fast flux provider">fast flux provider</category>
      <category domain="http://securityratty.com/tag/fast flux networks">fast flux networks</category>
      <category domain="http://securityratty.com/tag/recent fast-flux service">recent fast-flux service</category>
      <category domain="http://securityratty.com/tag/powerful control panel">powerful control panel</category>
      <category domain="http://securityratty.com/tag/control panel">control panel</category>
      <category domain="http://securityratty.com/tag/virtual servers">virtual servers</category>
      <category domain="http://securityratty.com/tag/multiple virtual servers">multiple virtual servers</category>
      <category domain="http://securityratty.com/tag/fast flux spam">fast flux spam</category>
      <source url="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~3/409475392/managed-fast-flux-provider-part-two.html">Managed Fast Flux Provider - Part Two</source>
    </item>
    <item>
      <title><![CDATA[Enhanced Domain Protection Services Emerge]]></title>
      <link>http://securityratty.com/article/7acf5055cb56782b95c8c264468b8373</link>
      <guid>http://securityratty.com/article/7acf5055cb56782b95c8c264468b8373</guid>
      <description><![CDATA[Registrars are beginning to offer new services to protect against domain name loss. Are they worth it? Well, they're worth something, but maybe not all the money being charged. Yesterday, Domain Name...]]></description>
      <content:encoded><![CDATA[Registrars are beginning to offer new services to protect against domain name loss. Are they worth it? Well, they're worth something, but maybe not all the money being charged.

Yesterday, Domain Name Wire revealed that <a href="http://domainnamewire.com/2008/09/23/godaddy-files-patent-for-domain-name-hijack-protection/">GoDaddy has filed for a patent for "Domain Name Hijack Protection."</a> The basic idea of the service is that domain name transfer-out requests are automatically ignored. The customer gets a notice that the request was received and ignored. The user then has the option of turning off the service, and must supply photo ID in order to do it. Comments on the Domain Name Wire article say it's an intentionally cumbersome process, which certainly works out well for GoDaddy, but I'm not so sure I'd call this innovative.

This application may be related to <a href="https://www.godaddy.com/gdshop/protect/landing.asp?ci=9004">GoDaddy's Protected Registration service</a>, which similarly protects against casual transfers, a service they call Deadbolt Transfer Protection. In order to perform a transfer, more thorough verification procedures are required, probably involving genuine human beings.

GoDaddy also claims to protect the domain in case of billing problems, such as "credit card expiration, failed billing or outdated contact information." If your domain expires and cannot be renewed because the credit card expired or some other such reason the domain will be placed in "invalid, protected status" for up to one year. In other words, it will be taken off-line, but not made available for anyone else to register. If you've parked it you may not notice, but if you're using the domain you will, because it won't work anymore. At this point you can go back to GoDaddy and make things right. All this costs $24.99 a year, which is a lot of money compared to the base registration. You'd be much better off with a standard domain lock and just being responsible about your domains and reading the e-mail GoDaddy sends you.

And thanks to <a href="http://www.domainnamenews.com/registrars/moniker-launches-domainmaxlock/2452">DomainNameNews for reporting</a> that Moniker, a registrar aimed at higher-volume domain name owners, has launched <a href="http://www.moniker.com/maxlock/">their DomainMaxLock service</a>.

DomainMaxLock, like GoDaddy's Deadbolt, makes you provide more stringent identification for transfers. According to the company you must:
<UL>
<LI>Provide a government I.D. number for verification of your identity.
<LI>Set up custom security questions and answers, further safeguarding your domain assets.
<LI>Provide special verification instructions and artifacts to ensure that your unique business or ownership interests are protected.
<LI>When you request that your domains be unlocked, our security team works directly with you to verify all of the above off-line - further eliminating risks of doing business in an online world! </LI>
</UL>
It's essentially an admission of the failure of automated services with respect to security. The idea is we can trust humans in person, not software. The service costs $34.95 per domain per year for a limited time, but the cost will increase later to $59.99.

These verification services are similar in many ways to those performed by CAs (certificate authorities). Since GoDaddy is also one of those, it's likely they can get better utilization out of that staff by offering such services.
<p><a href="http://feedads.googleadservices.com/~a/FCZhqYUdUonhGhpMKWK6obfrCas/a"><img src="http://feedads.googleadservices.com/~a/FCZhqYUdUonhGhpMKWK6obfrCas/i" border="0" ismap="true"></img></a></p><img src="http://feedproxy.google.com/~r/RSS/cheap_hack/~4/8Vacprz_ezY" height="1" width="1"/>]]></content:encoded>
      <pubDate>Wed, 24 Sep 2008 04:23:16 +0000</pubDate>
      <category domain="http://securityratty.com/tag/domain">domain</category>
      <category domain="http://securityratty.com/tag/standard domain lock">standard domain lock</category>
      <category domain="http://securityratty.com/tag/higher-volume domain">higher-volume domain</category>
      <category domain="http://securityratty.com/tag/domain assets">domain assets</category>
      <category domain="http://securityratty.com/tag/domain expires">domain expires</category>
      <category domain="http://securityratty.com/tag/service">service</category>
      <category domain="http://securityratty.com/tag/domainmaxlock service">domainmaxlock service</category>
      <category domain="http://securityratty.com/tag/godaddy">godaddy</category>
      <category domain="http://securityratty.com/tag/services">services</category>
      <source url="http://feeds.ziffdavisenterprise.com/~r/RSS/cheap_hack/~3/8Vacprz_ezY/enhanced_domain_protection_services_emerge.html">Enhanced Domain Protection Services Emerge</source>
    </item>
    <item>
      <title><![CDATA[Are we asking the right questions often enough?]]></title>
      <link>http://securityratty.com/article/601d5fb7737b0abf217a83566ea88fb5</link>
      <guid>http://securityratty.com/article/601d5fb7737b0abf217a83566ea88fb5</guid>
      <description><![CDATA[An increase in management's awareness of the importance of information security has come with a commensurate willingness to approve budget requests for security controls. But are security managers...]]></description>
      <content:encoded><![CDATA[An increase in management's awareness of the importance of information security has come with a commensurate willingness to approve budget requests for security controls.  But are security managers targeting the right challenges?  Are they asking the right questions?]]></content:encoded>
      <pubDate>Tue, 09 Sep 2008 03:13:47 +0000</pubDate>
      <category domain="http://securityratty.com/tag/approve budget requests">approve budget requests</category>
      <category domain="http://securityratty.com/tag/security controls">security controls</category>
      <category domain="http://securityratty.com/tag/security managers">security managers</category>
      <category domain="http://securityratty.com/tag/questions">questions</category>
      <category domain="http://securityratty.com/tag/information security">information security</category>
      <category domain="http://securityratty.com/tag/awareness">awareness</category>
      <category domain="http://securityratty.com/tag/challenges">challenges</category>
      <category domain="http://securityratty.com/tag/importance">importance</category>
      <category domain="http://securityratty.com/tag/increase">increase</category>
      <source url="http://networking.ittoolbox.com/r/rss.asp?url=http://it.toolbox.com/blogs/adventuresinsecurity/are-we-asking-the-right-questions-often-enough-27046">Are we asking the right questions often enough?</source>
    </item>
    <item>
      <title><![CDATA[BT, Phorm, and Me]]></title>
      <link>http://securityratty.com/article/094f87769899b613ad4eb0e8a0b7ad49</link>
      <guid>http://securityratty.com/article/094f87769899b613ad4eb0e8a0b7ad49</guid>
      <description><![CDATA[Over the past year I have gotten many requests, both public and private, to comment on the BT and Phorm incident
I was not involved with BT and Phorm, then or now. Everything I know about Phorm and...]]></description>
      <content:encoded><![CDATA[<p>Over the past year I have gotten many requests, both public and private, to comment on the BT and Phorm incident.</p>

<p>I was not involved with BT and Phorm, then or now.  Everything I know about Phorm and BT's relationship with Phorm came from the same news articles you read.  I have not gotten involved as an employee of BT. But anything I say is -- by definition -- said by a BT executive.  That's not good.</p>

<p>So I'm sorry that I can't write about Phorm.  But -- honestly -- lots of others have been giving their views on the issue.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/schneier/fulltext?a=nA7uL"><img src="http://feeds.feedburner.com/~f/schneier/fulltext?i=nA7uL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/schneier/fulltext?a=WKUtL"><img src="http://feeds.feedburner.com/~f/schneier/fulltext?i=WKUtL" border="0"></img></a>
</div>]]></content:encoded>
      <pubDate>Mon, 08 Sep 2008 02:23:54 +0000</pubDate>
      <category domain="http://securityratty.com/tag/phorm">phorm</category>
      <category domain="http://securityratty.com/tag/phorm incident">phorm incident</category>
      <category domain="http://securityratty.com/tag/news articles">news articles</category>
      <category domain="http://securityratty.com/tag/relationship">relationship</category>
      <category domain="http://securityratty.com/tag/requests">requests</category>
      <category domain="http://securityratty.com/tag/issue">issue</category>
      <category domain="http://securityratty.com/tag/lots">lots</category>
      <category domain="http://securityratty.com/tag/executive">executive</category>
      <category domain="http://securityratty.com/tag/definition">definition</category>
      <source url="http://www.schneier.com/blog/archives/2008/09/bt_phorm_and_me.html">BT, Phorm, and Me</source>
    </item>
  </channel>
</rss>
