<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>BreakingPoint Labs Blog</title><link>http://www.breakingpointsystems.com/community/blog</link><description>BreakingPoint Labs Blog</description><language>en</language><syn:updatePeriod xmlns:syn="http://purl.org/rss/1.0/modules/syndication/">daily</syn:updatePeriod><syn:updateFrequency xmlns:syn="http://purl.org/rss/1.0/modules/syndication/">1</syn:updateFrequency><syn:updateBase xmlns:syn="http://purl.org/rss/1.0/modules/syndication/">2008-05-15T06:50:00Z</syn:updateBase><itunes:explicit>no</itunes:explicit><itunes:subtitle>BreakingPoint Labs Blog</itunes:subtitle><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/BreakingPointBlog" type="application/rss+xml" /><feedburner:emailServiceId>BreakingPointBlog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><title>TCP Portals: The Handshake's a Lie!</title><link>http://feedproxy.google.com/~r/BreakingPointBlog/~3/Oap4hh9ioLY/tcp-portals-the-three-way-handshake-is-a-lie</link><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tod Beardsley</dc:creator><pubDate>Tue, 10 Nov 2009 16:00:00 PST</pubDate><guid isPermaLink="false">http://www.breakingpointsystems.com/community/blog/tcp-portals-the-three-way-handshake-is-a-lie</guid><description>&lt;p&gt;Whenever I interview someone for an Application Engineer or Security
Research position, my favorite introductory question is, "Can you describe for
me the TCP three-way handshake?". It is a fine baseline question to
understand a candidate's knowledge of modern
networking. Answers range from "SYN, SYN/ACK, ACK,", to a full description of ARP, to initial sequence number generation. It's a good
springboard question, because then you can start talking about
spoofing addresses, port scanning, the significance of IPIDs, and more.&lt;/p&gt;
&lt;p&gt;We are &lt;a class="external-link" href="/company/careers"&gt;hiring a lot here at BreakingPoint&lt;/a&gt;, which means
I'm asking this question a lot. After the fourth or fifth interview, I
decided one morning to look over &lt;a href="http://www.faqs.org/rfcs/rfc793.html"&gt;RFC 793&lt;/a&gt; to make sure
that I really did know everything there is to know about the
handshake. That is when I found out that we've all been living a lie.&lt;/p&gt;
&lt;p&gt;If you've spent any reasonable amount of time around network
protocols, you're probably familiar with some version of this diagram:&lt;/p&gt;
&lt;img src="/community/images/3way-handshake.png" alt="3 way handshake" height="320" width="460"&gt;
&lt;p&gt;Here, we see the client on the left starting up a conversation with
the server on the right. All pretty normal and familar, right? Well,
when I was reviewing the RFC again, I noticed something very, very,
odd. Disturbing, even. Allow me to quote at some length:&lt;/p&gt;
&lt;pre&gt;  The synchronization requires each side to send its own initial
  sequence number and to receive a confirmation of it in acknowledgment
  from the other side.  Each side must also receive the other side's
  initial sequence number and send a confirming acknowledgment.

    1) A --&gt; B  SYN my sequence number is X
    2) A &amp;lt;-- B  ACK your sequence number is X
    3) A &amp;lt;-- B  SYN my sequence number is Y
    4) A --&gt; B  ACK your sequence number is Y

  Because steps 2 and 3 can be combined in a single message this is
  called the three-way (or three message) handshake.&lt;/pre&gt;
&lt;p&gt;Do you see what I see? Because I'm thinking, "this is not a three-way
handshake. This is a four-way handshake." The handshake is a lie, born
of coalescing steps 2 and 3.&lt;/p&gt;
&lt;p&gt;
Now, surely, if I just decided to ACK a SYN, then send my own SYN,
that couldn't possibly work, right? Enter &lt;a href="http://code.google.com/p/packetfu"&gt;PacketFu, my little Ruby
library for crafting packets&lt;/a&gt;. Turns out, 28 years or so after this RFC
was written, clients behave rather strangely when you decide to
actually honor ol' RFC 793. After some experimentation, I have a
pretty decent proof-of-concept stack that behaves like so:&lt;/p&gt;
&lt;p&gt;&lt;img src="/community/images/4way-handshake.png" alt="4 way handshake" height="320" width="460"&gt;&lt;/p&gt;
&lt;p&gt;This is the point where things get a little weird. What's happening here is:&lt;/p&gt;
&lt;pre&gt;    1) A --&gt; B  SYN my sequence number is X
    2) That's nice. I'm not going to bother to ack that, because...
    3) A &amp;lt;-- B  SYN my sequence number is Y.
    4) A --&gt; B  ACK your sequence number is Y, and my sequence number is X.
    5) A &amp;lt;-- B ACK your sequence number is X&lt;/pre&gt;
&lt;p&gt;Does this work? You betcha! Take a look at the &lt;a href="/community/files/triumph_pcaps.tar.gz"&gt;packet captures&lt;/a&gt;, collected from Linux
(stock Ubuntu), Apple (stock OSX), and Microsoft (stock Windows XP).
These three desktop operating systems are all totally cool with this
crazy backwards TCP portal.&lt;/p&gt;
&lt;p&gt;But what does it mean? Is this simply a parlor trick, where you can
reverse the roles of client and server? How does this &lt;a class="external-link" href="/resources/testmethodologies/breakingpoint-firewall-testing-methodology"&gt;affect stateful
firewalls&lt;/a&gt;? How about inspection devices like &lt;a class="external-link" href="/resources/testmethodologies/IPS_Test_Methodology"&gt;IPSes&lt;/a&gt;, which often need
to have an idea of who the "real" client and server are? How about NAT
devices, where the idea of "relatedness" is absolutely tied up with
where SYN packets come from.&lt;/p&gt;
&lt;p&gt;Clearly, there is a ton of testing work to be done here. Lucky for me,
I happen to work at a really advanced testing equipment manufacturer,
so I've dropped this nugget in the next StrikePack. Now, strikes can 
employ the "SneakAckHandshake" TCP override option, and all servers 
simulated will behave in accordance with this crazy backwards handshake. We'll see how
well network inspection gear detects clientside attacks when the
client is tricked into behaving like a server.&lt;/p&gt;
&lt;p&gt;At the very least, now I have better interview questions and I should at
least be able to detect if the next candidate is reading this blog. :)&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Oap4hh9ioLY:w9nsReo8Bmw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Oap4hh9ioLY:w9nsReo8Bmw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=Oap4hh9ioLY:w9nsReo8Bmw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Oap4hh9ioLY:w9nsReo8Bmw:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Oap4hh9ioLY:w9nsReo8Bmw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Oap4hh9ioLY:w9nsReo8Bmw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=Oap4hh9ioLY:w9nsReo8Bmw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Oap4hh9ioLY:w9nsReo8Bmw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BreakingPointBlog/~4/Oap4hh9ioLY" height="1" width="1"/&gt;</description><dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">No publisher</dc:publisher><dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/" /><dc:type xmlns:dc="http://purl.org/dc/elements/1.1/">Blog Entry</dc:type><feedburner:origLink>http://www.breakingpointsystems.com/community/blog/tcp-portals-the-three-way-handshake-is-a-lie</feedburner:origLink></item><item><title>60 Minutes on Cyber War: The True Threat of Cyber Attack</title><link>http://feedproxy.google.com/~r/BreakingPointBlog/~3/O-lFmIWQUf4/cyber-war-tipping-point</link><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kyle Flaherty</dc:creator><pubDate>Tue, 10 Nov 2009 05:52:22 PST</pubDate><guid isPermaLink="false">http://www.breakingpointsystems.com/community/blog/cyber-war-tipping-point</guid><description>&lt;p&gt;Ten years ago, &lt;a class="external-link" href="http://www.cbsnews.com/sections/60minutes/main3415.shtml"&gt;60 Minutes&lt;/a&gt; reported on the new threat of "&lt;a class="external-link" href="/government"&gt;cyber war&lt;/a&gt;." At the time, the story introduced the American public to a developing danger that would come to realization in the future. According to Sunday's program, that day has arrived. The television show dived back into the topic of cyber warfare and it was evident that not only has the threat arrived, but the United States is not prepared to face the attacks.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/John_Michael_McConnell"&gt;Retired Admiral Mike McConnell&lt;/a&gt;, the former chief of national intelligence and director of the National Security Agency, outlined the gravest threat to the U.S.'s critical infrastructure: our power grid.&lt;/p&gt;
&lt;blockquote&gt;"If I were an attacker and I wanted to do strategic damage to the United States I would take the cold of winter or the heat of summer and sack electric power on the East Coast...and hope for a cascading effect. All of this is in the art of the possible for a sophisticated attacker and the United States is not prepared for such an attack."&lt;/blockquote&gt;
&lt;p&gt;A few months ago President Barack Obama admitted that the U.S. electrical grid had already been probed by cyber intruders and acknowledged that another country had seen entire cities plunging into darkness due to cyber attacks. The president failed to mention which country had seen its electric grid shut down due to cyber attacks, but 60 Minutes reported that Brazil had experienced the attacks in 2005 and 2007. The actual perpetrators are unkown, but 60 Minutes acknowledged that there are now highly trained cyber warriors throughout the world poised to lead such attacks. (&lt;a class="external-link" href="http://www.wired.com/threatlevel/2009/11/brazil_blackout/"&gt;UDPATE&lt;/a&gt;: Raphael Mandarino Jr., director of Brazil's Homeland Security Information and Communication Directorate, told the newspaper Folha de S. Paulo that he’s investigated the claims and found no evidence of hacker attacks.)&lt;/p&gt;
&lt;h2&gt;Electronic Pearl Harbor&lt;/h2&gt;
&lt;p&gt;Awareness of the threat of cyber war started to take hold in 2007 according to Jim Lewis, a director at the &lt;a class="external-link" href="http://csis.org/"&gt;Center for Strategic and International Studies&lt;/a&gt;. It was at that point the United States witnessed what Lewis called an "electronic Pearl Harbor," when unknown foreign entities conducted online espionage and broke into the Department of Defense, Department of State, Department of Energy, NASA and others, walking away with terabytes of information. Lewis also acknowleged that the intrusion into &lt;a class="external-link" href="http://www.centom.mil"&gt;CENTCOM&lt;/a&gt; last December was the second major "wake-up call" for the government, as foreign entities penetrated the highly secure military system and remained inside the digital infrastructure for several days "listening" to all traffic and activities.&lt;/p&gt;
&lt;p&gt;The full segment is embedded below and I encourage everyone to watch. Overall, the piece reiterates much of the information &lt;a class="external-link" href="/community/blog/search?SearchableText=cyber&amp;amp;x=0&amp;amp;y=0"&gt;we have blogged about several times&lt;/a&gt;, but as I watched the piece I was reminded of comments made by BreakingPoint's Dennis Cox during the recent "&lt;a class="external-link" href="ddos-and-botnet-test-methodology-released"&gt;Preparing for DDoS and Botnet Attacks&lt;/a&gt;" webcast:&lt;/p&gt;
&lt;object height="344" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/VuASMVO4o7g&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/VuASMVO4o7g&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;p&gt;Dennis warned about the threat to the electrical grid as a whole but expanded that threat to individual households as we see the continuing adoption of "eHome" technology such as online energy monitoring. This all being part of the cascading effect mentioned by Admiral McConnell.&lt;/p&gt;
&lt;p&gt;Also during the &lt;a class="external-link" href="ddos-and-botnet-test-methodology-released"&gt;DDoS/botnet webcast&lt;/a&gt;, I asked our experts why more wasn't being done to stop these attacks by the government or crime-fighting organizations. One of the answers was simple yet powerful. The perception remains that nobody is truly being hurt by these attacks, thus there is never a groundswell to take action. Jim Lewis called it "death by a thousand cuts" during the 60 Minutes segment. Unless we actually see the damage inflicted by cyber war we often will stand idly by and let the threat remain.&lt;/p&gt;
&lt;h2&gt;Reality Must Defeat Perception&lt;/h2&gt;
&lt;p&gt;In 2009 more than $100M was stolen from U.S. banks according to Sean Henry, assistant director in charge of the FBI Cyber Crime Division. Yet how many of those bank robberies have you heard of during this year? Henry continued:&lt;/p&gt;
&lt;blockquote&gt;"I've seen attacks where $10 million has been lost in a 24-hour period. If that had happened in a bank robbery where people had walked in with guns blazing it would have been headline news all over the world."&amp;nbsp;&lt;/blockquote&gt;
&lt;p&gt;And this is where the problem lies today. We are faced with an imminent threat of cyber war and cyber crime, yet the perception remains that nothing is seriously wrong. Today however, due to the 60 Minutes piece, people are seemingly waking up to the threat and the serious damage cyber warfare and cyber crime have already inflicted. Will last night's show prove to be the tipping point for solidifying the cyber war battle lines or forgotten again as the news cycle churn us towards another topic?&lt;/p&gt;
&lt;p&gt;As someone who is involved in this topic every day, I'm certainly rooting for the former and I think the piece will actually help in five distinct ways:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Put pressure on the Obama administration to begin taking action on securing our critical infrastructure including solidifying the &lt;a class="external-link" href="/community/blog/interviewing-the-cyber-czar-what-question-would-you-ask"&gt;cyber coordinator&lt;/a&gt; position.&lt;/li&gt;&lt;li&gt;Educate Congress on this threat so that more members become involved with pending and new legislation.&lt;/li&gt;&lt;li&gt;Create support for the emergence and success of such programs as &lt;a class="external-link" href="/community/blog/four-critical-priorities-for-uscybercom"&gt;USCYBERCOM&lt;/a&gt; and &lt;a class="external-link" href="/community/blog/cyber-security-cyber-warfare-training"&gt;National Cyber Range.&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Force everyday Americans to realize that the threat of cyber war is real and that we are all responsible in some way for defending against this invisible enemy.&lt;/li&gt;&lt;li&gt;Place some pressure on service providers and network equipment manufacturers to test equipment and services under true cyber war replication.&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;As promised, here is the full 60 Minutes segment:&lt;/p&gt;
&lt;embed src="http://cnettv.cnet.com/av/video/cbsnews/atlantis2/player-dest.swf" flashvars="linkUrl=http://www.cbsnews.com/video/watch/?id=5578986n&amp;amp;releaseURL=http://cnettv.cnet.com/av/video/cbsnews/atlantis2/player-dest.swf&amp;amp;videoId=50079282&amp;amp;partner=news&amp;amp;vert=News&amp;amp;si=254&amp;amp;autoPlayVid=false&amp;amp;name=cbsPlayer&amp;amp;allowScriptAccess=always&amp;amp;wmode=transparent&amp;amp;embedded=y&amp;amp;scale=noscale&amp;amp;rv=n&amp;amp;salign=tl" allowfullscreen="true" width="425" height="324" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"&gt;&lt;/embed&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=O-lFmIWQUf4:uENFcwMF0Mc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=O-lFmIWQUf4:uENFcwMF0Mc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=O-lFmIWQUf4:uENFcwMF0Mc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=O-lFmIWQUf4:uENFcwMF0Mc:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=O-lFmIWQUf4:uENFcwMF0Mc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=O-lFmIWQUf4:uENFcwMF0Mc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=O-lFmIWQUf4:uENFcwMF0Mc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=O-lFmIWQUf4:uENFcwMF0Mc:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BreakingPointBlog/~4/O-lFmIWQUf4" height="1" width="1"/&gt;</description><dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">No publisher</dc:publisher><dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/" /><dc:type xmlns:dc="http://purl.org/dc/elements/1.1/">Blog Entry</dc:type><media:content url="http://feedproxy.google.com/~r/BreakingPointBlog/~5/iGyOrGmfMqs/VuASMVO4o7g&amp;amp;hl=en&amp;amp;fs=1" fileSize="1025" type="application/x-shockwave-flash" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> Ten years ago, 60 Minutes reported on the new threat of "cyber war." At the time, the story introduced the American public to a developing danger that would come to realization in the future. According to Sunday's program, that day has arrived. The telev</itunes:subtitle><itunes:summary> Ten years ago, 60 Minutes reported on the new threat of "cyber war." At the time, the story introduced the American public to a developing danger that would come to realization in the future. According to Sunday's program, that day has arrived. The television show dived back into the topic of cyber warfare and it was evident that not only has the threat arrived, but the United States is not prepared to face the attacks. Retired Admiral Mike McConnell, the former chief of national intelligence and director of the National Security Agency, outlined the gravest threat to the U.S.'s critical infrastructure: our power grid. "If I were an attacker and I wanted to do strategic damage to the United States I would take the cold of winter or the heat of summer and sack electric power on the East Coast...and hope for a cascading effect. All of this is in the art of the possible for a sophisticated attacker and the United States is not prepared for such an attack." A few months ago President Barack Obama admitted that the U.S. electrical grid had already been probed by cyber intruders and acknowledged that another country had seen entire cities plunging into darkness due to cyber attacks. The president failed to mention which country had seen its electric grid shut down due to cyber attacks, but 60 Minutes reported that Brazil had experienced the attacks in 2005 and 2007. The actual perpetrators are unkown, but 60 Minutes acknowledged that there are now highly trained cyber warriors throughout the world poised to lead such attacks. (UDPATE: Raphael Mandarino Jr., director of Brazil's Homeland Security Information and Communication Directorate, told the newspaper Folha de S. Paulo that he’s investigated the claims and found no evidence of hacker attacks.) Electronic Pearl Harbor Awareness of the threat of cyber war started to take hold in 2007 according to Jim Lewis, a director at the Center for Strategic and International Studies. It was at that point the United States witnessed what Lewis called an "electronic Pearl Harbor," when unknown foreign entities conducted online espionage and broke into the Department of Defense, Department of State, Department of Energy, NASA and others, walking away with terabytes of information. Lewis also acknowleged that the intrusion into CENTCOM last December was the second major "wake-up call" for the government, as foreign entities penetrated the highly secure military system and remained inside the digital infrastructure for several days "listening" to all traffic and activities. The full segment is embedded below and I encourage everyone to watch. Overall, the piece reiterates much of the information we have blogged about several times, but as I watched the piece I was reminded of comments made by BreakingPoint's Dennis Cox during the recent "Preparing for DDoS and Botnet Attacks" webcast: Dennis warned about the threat to the electrical grid as a whole but expanded that threat to individual households as we see the continuing adoption of "eHome" technology such as online energy monitoring. This all being part of the cascading effect mentioned by Admiral McConnell. Also during the DDoS/botnet webcast, I asked our experts why more wasn't being done to stop these attacks by the government or crime-fighting organizations. One of the answers was simple yet powerful. The perception remains that nobody is truly being hurt by these attacks, thus there is never a groundswell to take action. Jim Lewis called it "death by a thousand cuts" during the 60 Minutes segment. Unless we actually see the damage inflicted by cyber war we often will stand idly by and let the threat remain. Reality Must Defeat Perception In 2009 more than $100M was stolen from U.S. banks according to Sean Henry, assistant director in charge of the FBI Cyber Crime Division. Yet how many of those bank robberies have you heard of during this year? Henry continued: "I've seen attacks where $10 million has been lost in a 24-hour period. If tha</itunes:summary><feedburner:origLink>http://www.breakingpointsystems.com/community/blog/cyber-war-tipping-point</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/BreakingPointBlog/~5/iGyOrGmfMqs/VuASMVO4o7g&amp;amp;hl=en&amp;amp;fs=1" length="1025" type="application/x-shockwave-flash" /><feedburner:origEnclosureLink>http://www.youtube.com/v/VuASMVO4o7g&amp;amp;hl=en&amp;amp;fs=1</feedburner:origEnclosureLink></item><item><title>DDoS and Botnet Test Methodology Released</title><link>http://feedproxy.google.com/~r/BreakingPointBlog/~3/VPaPulvhZvo/ddos-and-botnet-test-methodology-released</link><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kyle Flaherty</dc:creator><pubDate>Thu, 05 Nov 2009 14:05:49 PST</pubDate><guid isPermaLink="false">http://www.breakingpointsystems.com/community/blog/ddos-and-botnet-test-methodology-released</guid><description>&lt;a class="external-link" href="/resources/testmethodologies/breakingpoint-ddos-botnet-testing-methodology"&gt;&lt;img src="/images/ddos-botnet-simulation.gif" alt="DDoS and Botnet Testing Methodology" height="140" width="140" align="left"&gt;&lt;/a&gt;
&lt;p&gt;&lt;a class="external-link" href="/resources/testmethodologies/breakingpoint-ddos-botnet-testing-methodology"&gt;Distributed denial of service (DDoS) attacks&lt;/a&gt; have become an enormous risk, shutting down businesses, halting bank transactions and disrupting government communications. Yesterday, BreakingPoint hosted a webcast diving into many of the issues surrounding DDoS and botnet attacks and what people can do to prepare. The main lesson? &lt;strong&gt;Test, test and test! &lt;/strong&gt;I've included the webcast below, slides and audio, the discussion was highly informative, so take a look.&lt;/p&gt;
&lt;p&gt;Additionally, we have just published the &lt;a class="external-link" href="/resources/testmethodologies/breakingpoint-ddos-botnet-testing-methodology"&gt;BreakingPoint DDoS and Botnet Test Methodology&lt;/a&gt;, which details, step-by-step, how to replicate a variety of DDoS and botnet attacks to help you find weaknesses before others do. We encourage you to &lt;a class="external-link" href="/resources/testmethodologies/breakingpoint-ddos-botnet-testing-methodology"&gt;download the test methodology&lt;/a&gt; today and certainly let us know your thoughts.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div id="__ss_2432529" style="text-align: left;"&gt;&lt;a title="Preparing For DDoS And Botnet Attacks" href="http://www.slideshare.net/BreakingPoint/preparing-for-ddos-and-botnet-attacks"&gt;Preparing For DDoS And Botnet Attacks Webcast&lt;/a&gt;&lt;br&gt;&lt;object height="355" width="425"&gt;&lt;param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=preparingforddosandbotnetattacks-091105143557-phpapp01&amp;amp;stripped_title=preparing-for-ddos-and-botnet-attacks"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=preparingforddosandbotnetattacks-091105143557-phpapp01&amp;amp;stripped_title=preparing-for-ddos-and-botnet-attacks" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=VPaPulvhZvo:KXFbYGJ13pU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=VPaPulvhZvo:KXFbYGJ13pU:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=VPaPulvhZvo:KXFbYGJ13pU:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=VPaPulvhZvo:KXFbYGJ13pU:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=VPaPulvhZvo:KXFbYGJ13pU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=VPaPulvhZvo:KXFbYGJ13pU:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=VPaPulvhZvo:KXFbYGJ13pU:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=VPaPulvhZvo:KXFbYGJ13pU:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BreakingPointBlog/~4/VPaPulvhZvo" height="1" width="1"/&gt;</description><dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">No publisher</dc:publisher><dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/" /><dc:type xmlns:dc="http://purl.org/dc/elements/1.1/">Blog Entry</dc:type><media:content url="http://feedproxy.google.com/~r/BreakingPointBlog/~5/CVVxxPRksH0/ssplayer2.swf" fileSize="121655" type="application/x-shockwave-flash" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> Distributed denial of service (DDoS) attacks have become an enormous risk, shutting down businesses, halting bank transactions and disrupting government communications. Yesterday, BreakingPoint hosted a webcast diving into many of the issues surrounding </itunes:subtitle><itunes:summary> Distributed denial of service (DDoS) attacks have become an enormous risk, shutting down businesses, halting bank transactions and disrupting government communications. Yesterday, BreakingPoint hosted a webcast diving into many of the issues surrounding DDoS and botnet attacks and what people can do to prepare. The main lesson? Test, test and test! I've included the webcast below, slides and audio, the discussion was highly informative, so take a look. Additionally, we have just published the BreakingPoint DDoS and Botnet Test Methodology, which details, step-by-step, how to replicate a variety of DDoS and botnet attacks to help you find weaknesses before others do. We encourage you to download the test methodology today and certainly let us know your thoughts. &amp;nbsp; Preparing For DDoS And Botnet Attacks Webcast </itunes:summary><feedburner:origLink>http://www.breakingpointsystems.com/community/blog/ddos-and-botnet-test-methodology-released</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/BreakingPointBlog/~5/CVVxxPRksH0/ssplayer2.swf" length="121655" type="application/x-shockwave-flash" /><feedburner:origEnclosureLink>http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=preparingforddosandbotnetattacks-091105143557-phpapp01&amp;amp;stripped_title=preparing-for-ddos-and-botnet-attacks</feedburner:origEnclosureLink></item><item><title>Live Video Webcast: Preparing for DDoS and Botnet Attacks</title><link>http://feedproxy.google.com/~r/BreakingPointBlog/~3/Qa7cr9h6yaU/live-video-webcast-preparing-for-ddos-and-botnet-attacks</link><category>DDoS</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kyle Flaherty</dc:creator><pubDate>Tue, 03 Nov 2009 16:00:00 PST</pubDate><guid isPermaLink="false">http://www.breakingpointsystems.com/community/blog/live-video-webcast-preparing-for-ddos-and-botnet-attacks</guid><description>&lt;p&gt;UPDATE: Today's WebCast has concluded, but you can watch it in its entriety by clicking on the viewer below. You can also download the &lt;a class="external-link" href="/resources/testmethodologies/breakingpoint-ddos-botnet-testing-methodology"&gt;BreakingPoint DDoS and Botnet Test Methodology&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Distributed denial of service (DDoS) and botnet attacks are an imminent threat to your network and the only way to test network equipment and application servers is by hitting them with actual DDoS and botnet attacks. &lt;strong&gt;Join BreakingPoint security experts right here at 2pm CT&lt;/strong&gt; to learn the best ways of replicating DDoS and botnet attacks to find vulnerabilities before someone else does. This discussion will include BreakingPoint Chief Technology Officer, Dennis Cox and BreakingPoint Labs security researchers Tod Beardsley and Dustin Trammell.&lt;/p&gt;
&lt;p&gt;At 2pm CT today you will be able to watch the webcast in its entirety below or on our &lt;a class="external-link" href="http://www.ustream.tv/channel/network-equipment-testing"&gt;USTREAM Channel&lt;/a&gt;. If you would also like to recieve the "BreakingPoint DDoS and Botnet Test Methodology" after the webcast be sure to &lt;a href="http://clicky.me/ddosbotnet"&gt;register here&lt;/a&gt;.&lt;/p&gt;
&lt;object id="utv89959" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="320" width="400"&gt;&lt;param name="flashvars" value="autoplay=false&amp;amp;brand=embed&amp;amp;cid=267048"&gt;&lt;param name="allowfullscreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;param name="movie" value="http://www.ustream.tv/flash/live/1/267048"&gt;&lt;embed flashvars="autoplay=false&amp;amp;brand=embed&amp;amp;cid=267048" width="400" height="320" allowfullscreen="true" allowscriptaccess="always" id="utv89959" name="utv_n_876513" src="http://www.ustream.tv/flash/live/1/267048" type="application/x-shockwave-flash"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;a style="text-align: center;" href="http://www.ustream.tv/" target="_blank"&gt;&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Qa7cr9h6yaU:w1FQlLhwBXU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Qa7cr9h6yaU:w1FQlLhwBXU:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=Qa7cr9h6yaU:w1FQlLhwBXU:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Qa7cr9h6yaU:w1FQlLhwBXU:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Qa7cr9h6yaU:w1FQlLhwBXU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Qa7cr9h6yaU:w1FQlLhwBXU:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=Qa7cr9h6yaU:w1FQlLhwBXU:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Qa7cr9h6yaU:w1FQlLhwBXU:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BreakingPointBlog/~4/Qa7cr9h6yaU" height="1" width="1"/&gt;</description><dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">No publisher</dc:publisher><dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/" /><dc:type xmlns:dc="http://purl.org/dc/elements/1.1/">Blog Entry</dc:type><media:content url="http://feedproxy.google.com/~r/BreakingPointBlog/~5/pYx2wQD57Qo/267048" fileSize="175721" type="application/x-shockwave-flash" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> UPDATE: Today's WebCast has concluded, but you can watch it in its entriety by clicking on the viewer below. You can also download the BreakingPoint DDoS and Botnet Test Methodology. Distributed denial of service (DDoS) and botnet attacks are an imminent</itunes:subtitle><itunes:summary> UPDATE: Today's WebCast has concluded, but you can watch it in its entriety by clicking on the viewer below. You can also download the BreakingPoint DDoS and Botnet Test Methodology. Distributed denial of service (DDoS) and botnet attacks are an imminent threat to your network and the only way to test network equipment and application servers is by hitting them with actual DDoS and botnet attacks. Join BreakingPoint security experts right here at 2pm CT to learn the best ways of replicating DDoS and botnet attacks to find vulnerabilities before someone else does. This discussion will include BreakingPoint Chief Technology Officer, Dennis Cox and BreakingPoint Labs security researchers Tod Beardsley and Dustin Trammell. At 2pm CT today you will be able to watch the webcast in its entirety below or on our USTREAM Channel. If you would also like to recieve the "BreakingPoint DDoS and Botnet Test Methodology" after the webcast be sure to register here. </itunes:summary><itunes:keywords>DDoS</itunes:keywords><feedburner:origLink>http://www.breakingpointsystems.com/community/blog/live-video-webcast-preparing-for-ddos-and-botnet-attacks</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/BreakingPointBlog/~5/pYx2wQD57Qo/267048" length="175721" type="application/x-shockwave-flash" /><feedburner:origEnclosureLink>http://www.ustream.tv/flash/live/1/267048</feedburner:origEnclosureLink></item><item><title>MILCOM Cyber Security Takeaways: Lessons from the Physical Battlefield</title><link>http://feedproxy.google.com/~r/BreakingPointBlog/~3/Nr0mGjLdjnM/cyber-security-cyber-warfare-training</link><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pam O'Neal</dc:creator><pubDate>Mon, 02 Nov 2009 11:07:04 PST</pubDate><guid isPermaLink="false">http://www.breakingpointsystems.com/community/blog/cyber-security-cyber-warfare-training</guid><description>&lt;p&gt;If the recent barrage of government security events is any indication, civilian and military personnel are energized about hardening cyber security. The largest event in recent months was &lt;a class="external-link" href="http://www.milcom.org"&gt;MILCOM 2009&lt;/a&gt;, where I had three days to talk &lt;a class="external-link" href="/solutions/cyber-simulation"&gt;cyber simulation and cyber warfare&lt;/a&gt; with some of the best and brightest. The experience was both educational and a bit surreal, as BreakingPoint showcased resiliency testing products on an exhibit floor where networking products were intermingled closely (almost perilously, in my case) with military hardware like satellite receivers and armored vehicles.&lt;/p&gt;
&lt;p&gt;These products once formed a strange combination, but now their mingling illustrates how the lines are blurring between the physical battleground and cyber warfare. Experts from academia and government have warned for years that new battles will be fought online, where traditionally weaker parties have a level playing field with the militaries of larger nations. Just this month the United Nations Telecommunications Agency chief warned that “&lt;a class="external-link" href="http://www.spacewar.com/reports/Threat_of_next_world_war_may_be_in_cyberspace_UN_999.html"&gt;the next world war could take place in cyberspace&lt;/a&gt;.”&lt;/p&gt;
&lt;p&gt;Each day, thousands of individuals attack networks around the world for reasons ranging from personal amusement to organized cyber crime. As this graph taken from Infonetics Research data shows, cyber intruders and enemies of the state are becoming more sophisticated and aggressive in network attacks.&lt;/p&gt;
&lt;img src="/community/images/discoveredvulnerabilities.jpg" alt="discovered vulnerabilities" height="225" width="480"&gt;
&lt;p&gt;While government-operated networks are the targets of more than a million attacks each week, privately owned infrastructures are also increasingly vulnerable to attack. And more than data and communications are at risk. Here in the U.S., much of our critical infrastructure, such as energy, transportation, and financial networks, is private. A single attack taking out one of these networks could threaten the U.S. market and personal safety.&lt;/p&gt;
&lt;p&gt;Both the public and private sectors are investing heavily in experimental and proven techniques for hardening the networks and data centers that form our critical information infrastructure. They are also scrambling to recruit and train security researchers in an effort to launch a proactive defense. This is particularly difficult in the world of information or digital warfare, where the terrain is complex and virtually invisible, conditions are ever changing, and attackers are widely distributed. To fight on this virtual battlefield, the U.S. is gearing up to hire some 4,000 specialists, and they are going to need actual hands-on experience to identify and block attacks that are ever morphing.&lt;/p&gt;
&lt;p&gt;For the U.S. military, training was—and still is—one of the greatest challenges facing leaders in achieving the goal of Information Superiority, defined as “the capability to collect, process, analyze and disseminate information while denying an adversary’s ability to do the same.” It strikes me that there are a few lessons from the physical battlefront we can apply to the virtual world of cyber warfare, such as the use of simulation to prepare soldiers for battle.&lt;/p&gt;
&lt;p&gt;Unlike training for the battlefield by using war games and battle simulations, our cyber warriors will conduct their missions online, and these cyber warriors must have Internet-scale cyber simulation capabilities to replicate commercial, military, and government network conditions. When it comes to cyber war, network mayhem is the enemy. Cyber warriors must know how to navigate the mayhem and spot the most deadly attacks in some of the most complex and confusing terrain imaginable—an ever-morphing online world filled with invisible enemies.&lt;/p&gt;
&lt;p&gt;With an increasingly sophisticated army of guerrilla hackers operating in a highly distributed cyber battlefront, the ability to detect an attack and respond to prevent damage instantly is paramount. The enemy who strikes first can take out an entire network through coordinated &lt;a class="external-link" href="http://clicky.me/ddosbotnet"&gt;distributed denial of service (DDoS) attacks&lt;/a&gt;. Before most products or experts even know anything is happening, the attack is over and critical systems are compromised.&lt;/p&gt;
&lt;p&gt;Intelligence and the ability to spot and block attacks instantly are paramount to protect against devastating DDoS assaults. However, network-traffic-generation products or emulators cannot generate the evolving application and attack traffic or simulate the user load necessary to replicate realistic attacks and prepare our defenses to block them. In fact, from the reactions we received at MILCOM, it is evident that cyber simulation of the scale and sophistication created by BreakingPoint products has never before been possible. While that is exciting to hear, it is also frightening.&lt;/p&gt;
&lt;p&gt;The U.S. government’s answer is to invest billions in building the &lt;a class="external-link" href="http://www.darpa.mil/sto/ia/ncr.html"&gt;U.S. Defense Advanced Research Projects Agency’s (DARPA) National Cyber Range (NCR)&lt;/a&gt;. It’s a great idea and an ambitious undertaking, but it will take years to fully realize. Meanwhile, our military and intelligence communities do not have the tools they need now to properly prepare for the dangers of cyber warfare, and that is simply not acceptable when &lt;a class="external-link" href="/products"&gt;the technology exists in such a small form factor&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It is encouraging to speak with so many in the military who “get it” and are actively looking for solutions to train cyber soldiers to defend the network. With any hope, we can take yet another lesson learned from the physical battlefront and arm our soldiers with the tools they need to keep our infrastructure safe from growing cyber threats.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Nr0mGjLdjnM:q3r4S3PbxmI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Nr0mGjLdjnM:q3r4S3PbxmI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=Nr0mGjLdjnM:q3r4S3PbxmI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Nr0mGjLdjnM:q3r4S3PbxmI:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Nr0mGjLdjnM:q3r4S3PbxmI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Nr0mGjLdjnM:q3r4S3PbxmI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=Nr0mGjLdjnM:q3r4S3PbxmI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Nr0mGjLdjnM:q3r4S3PbxmI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BreakingPointBlog/~4/Nr0mGjLdjnM" height="1" width="1"/&gt;</description><dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">No publisher</dc:publisher><dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/" /><dc:type xmlns:dc="http://purl.org/dc/elements/1.1/">Blog Entry</dc:type><feedburner:origLink>http://www.breakingpointsystems.com/community/blog/cyber-security-cyber-warfare-training</feedburner:origLink></item><item><title>Preparing for DDoS and Botnet Attacks: Webcast and Test Methodology</title><link>http://feedproxy.google.com/~r/BreakingPointBlog/~3/3v5vyZzTZsE/testing-ddos-and-botnet-attacks-webcast-test-methodology</link><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kyle Flaherty</dc:creator><pubDate>Thu, 29 Oct 2009 06:57:31 PDT</pubDate><guid isPermaLink="false">http://www.breakingpointsystems.com/community/blog/testing-ddos-and-botnet-attacks-webcast-test-methodology</guid><description>&lt;p&gt;DDoS and botnet attacks are an imminent threat to every network. Just look at the damage we saw over the summer. In July, &lt;a class="external-link" href="/government"&gt;cyber attacks&lt;/a&gt; targeted a number of &lt;a class="external-link" href="http://www.theregister.co.uk/2009/07/08/federal_websites_ddosed/"&gt;government, news media, and financial websites in both South Korea and the United States&lt;/a&gt;. Shortly after, we witnessed DDoS attacks, aided by botnets, bringing down social networking services such as &lt;a class="external-link" href="http://social-networking-tagging.suite101.com/article.cfm/how_twitter_was_brought_down_in_august_2009"&gt;Twitter, Facebook and Google&lt;/a&gt;. In the face of an imminent threat how do you prepare?&lt;/p&gt;
&lt;p&gt;If I can channel my inner Sun Tzu for a second; it is critical to know your enemy in order to protect your network assets. This means testing your network elements and application servers with genuine DDoS and botnet attacks to determine your weak points, before someone else does.&lt;/p&gt;
&lt;a href="http://clicky.me/ddosbotnet"&gt;&lt;img src="/community/images/ddosbotnettesting.jpeg" alt="DDoS Botnet Attack Testing" height="80" width="215" align="left"&gt;&lt;/a&gt;
&lt;p&gt;Next Wednesday, three BreakingPoint experts are getting together to discuss how to &lt;a class="external-link" href="http://clicky.me/ddosbotnet"&gt;prepare for DDoS and botnets&lt;/a&gt; through replicating these attacks during testing. &lt;a class="external-link" href="/community/blog/authors/dcox"&gt;Dennis Cox&lt;/a&gt;, the CTO of BreakingPoint, will be joined by &lt;a class="external-link" href="/community/blog/authors/tbeardsley"&gt;Tod Beardsley&lt;/a&gt; and &lt;a class="external-link" href="/community/blog/authors/dtrammell"&gt;Dustin Trammell&lt;/a&gt; for what plans to be a lively conversation. The webcast will also highlight some of the information in the soon to be published "BreakingPoint DDoS and Botnet Test Methodology". The methodology will be sent to all registrants of the webcast and details, step-by-step, how to replicate these scenarios in your testing environment.&lt;/p&gt;
&lt;p&gt;&lt;a class="external-link" href="http://clicky.me/ddosbotnet"&gt;Register now for the webcast and secure your copy of the test methodology.&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=3v5vyZzTZsE:rcIzner4rNg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=3v5vyZzTZsE:rcIzner4rNg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=3v5vyZzTZsE:rcIzner4rNg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=3v5vyZzTZsE:rcIzner4rNg:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=3v5vyZzTZsE:rcIzner4rNg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=3v5vyZzTZsE:rcIzner4rNg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=3v5vyZzTZsE:rcIzner4rNg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=3v5vyZzTZsE:rcIzner4rNg:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BreakingPointBlog/~4/3v5vyZzTZsE" height="1" width="1"/&gt;</description><dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">No publisher</dc:publisher><dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/" /><dc:type xmlns:dc="http://purl.org/dc/elements/1.1/">Blog Entry</dc:type><feedburner:origLink>http://www.breakingpointsystems.com/community/blog/testing-ddos-and-botnet-attacks-webcast-test-methodology</feedburner:origLink></item><item><title>Demonstrating Cyber Range Simulation During MILCOM</title><link>http://feedproxy.google.com/~r/BreakingPointBlog/~3/Pydp8hKuII0/cyber-war-simulation</link><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kyle Flaherty</dc:creator><pubDate>Sun, 18 Oct 2009 17:00:00 PDT</pubDate><guid isPermaLink="false">http://www.breakingpointsystems.com/community/blog/cyber-war-simulation</guid><description>&lt;p&gt;This week we have a team in Boston at &lt;a class="external-link" href="http://www.milcom.org/"&gt;MILCOM 2009&lt;/a&gt;, demonstrating &lt;a class="external-link" href="/government"&gt;cyber range simulation&lt;/a&gt;&lt;a class="external-link" href="/products"&gt;.&lt;/a&gt; MILCOM, for those not familiar, is a "conference for military communications, and attracts the best and brightest with high-level attendance from government, military, industry and academia. MILCOM 2009 gives industry the opportunity to promote communications technologies and services to commanders from all branches of the armed forces, Department of Defense, federal government, and the heads of multi-national forces from around the globe."&lt;/p&gt;
&lt;p&gt;BreakingPoint will be demonstrating how our products deliver cyber simulation on a scale never before possible without building and maintaining an enormous environment similar to the vision for the U.S. Defense Advanced Research Projects Agency’s &lt;a class="external-link" href="http://www.darpa.mil/sto/ia/ncr.html"&gt;National Cyber Range&lt;/a&gt;. During the show we will be showing off the three-slot BreakingPoint chassis in booth number 453. Show attendees will be able to see how BreakingPoint replicates massive Internet-scale network traffic in order to find and address critical performance issues and security vulnerabilities, all in order to assure &lt;a class="external-link" href="/solutions/resiliency-testing"&gt;network resiliency.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you are attending MILCOM let us know or stop by the booth. I will also be blogging a bit from the show during the week for those of you who are not attending.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Pydp8hKuII0:vbh4QShmTO8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Pydp8hKuII0:vbh4QShmTO8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=Pydp8hKuII0:vbh4QShmTO8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Pydp8hKuII0:vbh4QShmTO8:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Pydp8hKuII0:vbh4QShmTO8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Pydp8hKuII0:vbh4QShmTO8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=Pydp8hKuII0:vbh4QShmTO8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=Pydp8hKuII0:vbh4QShmTO8:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BreakingPointBlog/~4/Pydp8hKuII0" height="1" width="1"/&gt;</description><dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">No publisher</dc:publisher><dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/" /><dc:type xmlns:dc="http://purl.org/dc/elements/1.1/">Blog Entry</dc:type><feedburner:origLink>http://www.breakingpointsystems.com/community/blog/cyber-war-simulation</feedburner:origLink></item><item><title>Realistic Testing of Server Load Balancers</title><link>http://feedproxy.google.com/~r/BreakingPointBlog/~3/emiUBRAJRuk/how-to-test-server-load-balancers</link><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kyle Flaherty</dc:creator><pubDate>Tue, 13 Oct 2009 13:14:06 PDT</pubDate><guid isPermaLink="false">http://www.breakingpointsystems.com/community/blog/how-to-test-server-load-balancers</guid><description>&lt;p&gt;&lt;a class="external-link" href="/resources/testmethodologies/server-load-balancer-testing-methodology"&gt;Realistic server load balancer testing&lt;/a&gt; is now critical, as load balancers have become a key network device. Lack of proper testing has unfortunately resulted in serious performance and security issues. One primary example would be the recent problems for &lt;a class="external-link" href="http://www.internetnews.com/webcontent/article.php/3837461/Google+Gmail+Outage+Could+Have+Been+Avoided.htm"&gt;Google's Gmail&lt;/a&gt;. Testing load balancers means hitting them with realistic and actual network scenarios, rather than the "ideal scenario", in order to assure their resiliency. BreakingPoint has published an updated &lt;a class="external-link" href="/resources/testmethodologies/server-load-balancer-testing-methodology"&gt;Server Load Balancer Test Methodology&lt;/a&gt; and I took this opportunity to sit down with BreakingPoint CTO &lt;a class="external-link" href="/community/blog/authors/dcox"&gt;Dennis Cox&lt;/a&gt; to talk server load balancer testing.&lt;/p&gt;
&lt;object height="340" width="460"&gt;&lt;param name="movie" value="http://www.youtube.com/v/lM_lcUM-82g&amp;amp;hl=en&amp;amp;fs=1&amp;amp;"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/lM_lcUM-82g&amp;amp;hl=en&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="340"&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;p&gt;You can download the &lt;a class="external-link" href="/resources/testmethodologies/server-load-balancer-testing-methodology"&gt;BreakingPoint Server Load Balancer Test Methodology&lt;/a&gt;, which includes multiple test scenarios including:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;em&gt;Testing the number of TCP connections&lt;/em&gt; per second the load balancer is able to handle to provide a baseline test of the device’s performance capabilities.&lt;/li&gt;&lt;li&gt;&lt;em&gt;Determining the overall bandwidth&lt;/em&gt; the load balancer can support through testing the number of HTTP/HTTPs connections per second the device can handle.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Emulating &lt;a class="external-link" href="/products/application-protocol-testing"&gt;blended application traffic&lt;/a&gt;&lt;/em&gt; to validate the load balancer can handle a true network scenario.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Simulating dynamic pages and image files&lt;/em&gt; to validate HTTP Caching performance.&lt;/li&gt;
&lt;li&gt;Confirming the load balancer can &lt;em&gt;handle malformed packets or errors&lt;/em&gt; with the packet through &lt;a class="external-link" href="/solutions/application-fuzzing"&gt;application fuzzing&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;And more...&lt;/li&gt;&lt;/ul&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=emiUBRAJRuk:U8MFoaY8dE0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=emiUBRAJRuk:U8MFoaY8dE0:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=emiUBRAJRuk:U8MFoaY8dE0:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=emiUBRAJRuk:U8MFoaY8dE0:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=emiUBRAJRuk:U8MFoaY8dE0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=emiUBRAJRuk:U8MFoaY8dE0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=emiUBRAJRuk:U8MFoaY8dE0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=emiUBRAJRuk:U8MFoaY8dE0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BreakingPointBlog/~4/emiUBRAJRuk" height="1" width="1"/&gt;</description><dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">No publisher</dc:publisher><dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/" /><dc:type xmlns:dc="http://purl.org/dc/elements/1.1/">Blog Entry</dc:type><media:content url="http://feedproxy.google.com/~r/BreakingPointBlog/~5/3yp4DmfD4f0/lM_lcUM-82g&amp;amp;hl=en&amp;amp;fs=1&amp;amp;" fileSize="1051" type="application/x-shockwave-flash" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> Realistic server load balancer testing is now critical, as load balancers have become a key network device. Lack of proper testing has unfortunately resulted in serious performance and security issues. One primary example would be the recent problems for</itunes:subtitle><itunes:summary> Realistic server load balancer testing is now critical, as load balancers have become a key network device. Lack of proper testing has unfortunately resulted in serious performance and security issues. One primary example would be the recent problems for Google's Gmail. Testing load balancers means hitting them with realistic and actual network scenarios, rather than the "ideal scenario", in order to assure their resiliency. BreakingPoint has published an updated Server Load Balancer Test Methodology and I took this opportunity to sit down with BreakingPoint CTO Dennis Cox to talk server load balancer testing. You can download the BreakingPoint Server Load Balancer Test Methodology, which includes multiple test scenarios including: Testing the number of TCP connections per second the load balancer is able to handle to provide a baseline test of the device’s performance capabilities.Determining the overall bandwidth the load balancer can support through testing the number of HTTP/HTTPs connections per second the device can handle. Emulating blended application traffic to validate the load balancer can handle a true network scenario. Simulating dynamic pages and image files to validate HTTP Caching performance. Confirming the load balancer can handle malformed packets or errors with the packet through application fuzzing.And more...</itunes:summary><feedburner:origLink>http://www.breakingpointsystems.com/community/blog/how-to-test-server-load-balancers</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/BreakingPointBlog/~5/3yp4DmfD4f0/lM_lcUM-82g&amp;amp;hl=en&amp;amp;fs=1&amp;amp;" length="1051" type="application/x-shockwave-flash" /><feedburner:origEnclosureLink>http://www.youtube.com/v/lM_lcUM-82g&amp;amp;hl=en&amp;amp;fs=1&amp;amp;</feedburner:origEnclosureLink></item><item><title>Open Letter to Twitter: Can We Help?</title><link>http://feedproxy.google.com/~r/BreakingPointBlog/~3/CsEf7IohJco/server-load-testing-twitter-resiliency</link><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kyle Flaherty</dc:creator><pubDate>Fri, 09 Oct 2009 09:44:09 PDT</pubDate><guid isPermaLink="false">http://www.breakingpointsystems.com/community/blog/server-load-testing-twitter-resiliency</guid><description>&lt;p&gt;Dear Twitter,&lt;/p&gt;
&lt;p&gt;In &lt;a class="external-link" href="http://redcouch.typepad.com/weblog/2009/01/twitterville-notebook-breakingpoints-kyle-flaherty.html"&gt;December 2006&lt;/a&gt; I jumped onto Twitter, not realizing the impact it would have on my life. &lt;a class="external-link" href="http://www.forbes.com/2009/04/07/twitter-tweet-jobs-leadership-careers-employment.html"&gt;Twitter helped introduce me to &lt;/a&gt;Pam O’Neal (&lt;a class="external-link" href="http://www.twitter.com/poneal"&gt;@poneal&lt;/a&gt;) at BreakingPoint (&lt;a class="external-link" href="http://www.twitter.com/breakingpoint"&gt;@breakingpoint&lt;/a&gt;) and subsequently move my family from Boston to Austin to work here. Now, each day at BreakingPoint, we use Twitter (30%+ of our employees are registered) to communicate with our &lt;a class="external-link" href="/community"&gt;community of server load testing professionals and network and security engineers&lt;/a&gt;, as well as communicate amongst one another.&lt;/p&gt;
&lt;p&gt;As a company, BreakingPoint recognized the potential of Twitter early and in 2008,&lt;a class="external-link" href="/community/blog/twitter-protocol-testing"&gt; even added a product feature to test the ability of network devices' and application servers' &lt;/a&gt;to handle the load of Twitter traffic. Our team has worked for decades developing the latest in networking and data center technology and they know first-hand how hard it can be to sustain a reliable network and service. It is why they created a better &lt;a class="external-link" href="/products"&gt;network and load testing solution.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Yesterday, when Twitter was down due to a "&lt;a class="external-link" href="http://status.twitter.com/post/207632462/timeline-delays-this-morning"&gt;bug triggered by an edge case in one of the core services&lt;/a&gt;", I thought about how important Twitter had become to our business and me. I watched the predictable posts complaining about the fail whale and it hit me; rather than throwing criticism, I would be best served getting my hands dirty and helping with the problem. An idea surfaced, which I talked through with our CTO and co-founder Dennis Cox (&lt;a class="external-link" href="http://www.twitter.com/denniscox"&gt;@denniscox&lt;/a&gt;), and the green flag was waved.&lt;/p&gt;
&lt;p&gt;BreakingPoint wants to help Twitter by providing the use of its &lt;a class="external-link" href="/solutions/server-load-testing"&gt;server load testing product &lt;/a&gt;and wicked smart folks (sorry, the Boston still in me) to help assure the resiliency of your company's network devices, servers and overall data center infrastructure. We want to provide the use of our &lt;a class="external-link" href="/products"&gt;BreakingPoint Elite,&lt;/a&gt; combined with a team of experts, many of them industry-recognized resources in &lt;a class="external-link" href="/community/blog/search?SearchableText=security&amp;amp;x=0&amp;amp;y=0"&gt;security&lt;/a&gt;, &lt;a class="external-link" href="../../search?SearchableText=ruby&amp;amp;x=0&amp;amp;y=0"&gt;Ruby&lt;/a&gt;, &lt;a class="external-link" href="/community/blog/tags/Application%20Simulation"&gt;software engineering&lt;/a&gt; and &lt;a class="external-link" href="/solutions/server-load-testing"&gt;load testing&lt;/a&gt;. As your company will see, we can provide server load testing on the scale a service like Twitter would need. I can have someone from our San Francisco office meet with your team today if needed (and I can be on the next flight).&lt;/p&gt;
&lt;p&gt;BreakingPoint is a huge fan of Twitter and hopes that it can help! I've included the Twitter profiles for some of our team below. We are all looking forward to working with your company.&lt;/p&gt;
&lt;table id="ttl_0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class="tam"&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="http://twitter.com/denniscox" target="_tab"&gt;&lt;img src="http://a3.twimg.com/profile_images/58929709/Photo_13_normal.jpg" alt="null" height="48" width="48"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;
&lt;div class="twpu"&gt;&lt;a href="http://twitter.com/denniscox"&gt;denniscox&lt;/a&gt; - Dennis Cox&lt;/div&gt;
&lt;div class="twpud"&gt;CTO and founder of @breakingpoint&lt;/div&gt;
&lt;/td&gt;
&lt;td class="tam"&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="http://twitter.com/tmanning" target="_tab"&gt;&lt;img src="http://a3.twimg.com/profile_images/357344001/IMG_0031_normal.png" alt="null" height="48" width="48"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;
&lt;div class="twpu"&gt;&lt;a href="http://twitter.com/tmanning"&gt;tmanning&lt;/a&gt; - Todd Manning&lt;/div&gt;
&lt;div class="twpu"&gt;Author of @breakingpoint Twitter testing protocol&lt;/div&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class="tam"&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="http://twitter.com/todb" target="_tab"&gt;&lt;img src="http://a3.twimg.com/profile_images/355636859/o2avatar_normal.jpg" alt="null" height="48" width="48"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;
&lt;div class="twpu"&gt;&lt;a href="http://twitter.com/todb"&gt;todb&lt;/a&gt; - Tod Beardsley&lt;/div&gt;
&lt;div class="twpud"&gt;@breakingpoint "protocol monkey" (his words, not mine)&lt;/div&gt;
&lt;/td&gt;
&lt;td class="tam"&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="http://twitter.com/poneal" target="_tab"&gt;&lt;img src="http://a1.twimg.com/profile_images/66161904/twitterpix_normal.jpg" alt="null" height="48" width="48"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;
&lt;div class="twpu"&gt;&lt;a href="http://twitter.com/poneal"&gt;poneal&lt;/a&gt; - Pam Oneal&lt;/div&gt;
&lt;div class="twpud"&gt;Vice President of Marketing @breakingpoint&lt;/div&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class="tam"&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class="tam"&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="http://twitter.com/mikehamilton" target="_tab"&gt;&lt;img src="http://a1.twimg.com/profile_images/213502672/tower_normal.gif" alt="null" height="48" width="48"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;
&lt;div class="twpu"&gt;&lt;a href="http://twitter.com/mikehamilton"&gt;mikehamilton&lt;/a&gt; - Michael Hamilton&lt;/div&gt;
&lt;div class="twpu"&gt;Product Marketing @breakingpoint&lt;/div&gt;
&lt;/td&gt;
&lt;td class="tam"&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="http://twitter.com/kkuehl" target="_tab"&gt;&lt;img src="http://a3.twimg.com/profile_images/354363485/twitter_normal.JPG" alt="null" height="48" width="48"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;
&lt;div class="twpu"&gt;&lt;a href="http://twitter.com/kkuehl"&gt;kkuehl&lt;/a&gt; -Kirby Kuehl&lt;/div&gt;
&lt;div class="twpud"&gt;Writes protocol (de|en)coders in C/C++ @breakingpoint&lt;/div&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class="tam"&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="http://twitter.com/jgstroud" target="_tab"&gt;&lt;img src="http://a3.twimg.com/profile_images/268387965/Photo_6_normal.jpg" alt="null" height="48" width="48"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;
&lt;div class="twpu"&gt;&lt;a href="http://twitter.com/jgstroud"&gt;jgstroud&lt;/a&gt; - Jonathan Stroud&lt;/div&gt;
&lt;div class="twpu"&gt;Hardware design @breakingpoint&lt;/div&gt;
&lt;/td&gt;
&lt;td class="tam"&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="http://twitter.com/druidian" target="_tab"&gt;&lt;img src="http://a1.twimg.com/profile_images/327387082/druid-logo-squared_normal.gif" alt="null" height="48" width="48"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;
&lt;div class="twpu"&gt;&lt;a href="http://twitter.com/druidian"&gt;druidian&lt;/a&gt; - I)ruid&lt;/div&gt;
&lt;div class="twpud"&gt;@breakingpoint Labs&lt;/div&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class="tam"&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="http://twitter.com/chrisfenton" target="_tab"&gt;&lt;img src="http://a1.twimg.com/profile_images/60814572/fentonchris_normal.jpg" alt="null" height="48" width="48"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;
&lt;div class="twpu"&gt;&lt;a href="http://twitter.com/chrisfenton"&gt;chrisfenton&lt;/a&gt; - Chris Fenton&lt;/div&gt;
&lt;div class="twpud"&gt;@breakingpoint--West Region&lt;/div&gt;
&lt;/td&gt;
&lt;td class="tam"&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="http://twitter.com/KyleFlaherty" target="_tab"&gt;&lt;img src="http://a1.twimg.com/profile_images/449270246/photo_054_normal.jpg" alt="null" height="48" width="48"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;
&lt;div class="twpu"&gt;&lt;a href="http://twitter.com/KyleFlaherty"&gt;KyleFlaherty&lt;/a&gt; - Kyle Flaherty&lt;/div&gt;
&lt;div class="twpud"&gt;Communications for @breakingpoint&lt;/div&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;Many thanks for everything your company has provided our community,&lt;/p&gt;
&lt;p&gt;&lt;a class="external-link" href="http://www.twitter.com/kyleflaherty"&gt;@kyleflaherty&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;UPDATE: I'd be remiss if I didn't also link to &lt;a href="http://www.twitter.com/busterbcook"&gt;@busterbcook&lt;/a&gt; and &lt;a href="http://www.twitter.com/rhythmx"&gt;@rhythmx&lt;/a&gt;, two more great BreakingPoint Tweeters!&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=CsEf7IohJco:ZVBPOK9buao:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=CsEf7IohJco:ZVBPOK9buao:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=CsEf7IohJco:ZVBPOK9buao:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=CsEf7IohJco:ZVBPOK9buao:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=CsEf7IohJco:ZVBPOK9buao:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=CsEf7IohJco:ZVBPOK9buao:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=CsEf7IohJco:ZVBPOK9buao:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=CsEf7IohJco:ZVBPOK9buao:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BreakingPointBlog/~4/CsEf7IohJco" height="1" width="1"/&gt;</description><dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">No publisher</dc:publisher><dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/" /><dc:type xmlns:dc="http://purl.org/dc/elements/1.1/">Blog Entry</dc:type><feedburner:origLink>http://www.breakingpointsystems.com/community/blog/server-load-testing-twitter-resiliency</feedburner:origLink></item><item><title>Cisco Security Agent Exits the Market?</title><link>http://feedproxy.google.com/~r/BreakingPointBlog/~3/mXws7qzn7rg/cisco-csa-demise</link><category>firewall testing</category><category>Cisco</category><category>network security</category><category>Check Point</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dennis Cox</dc:creator><pubDate>Mon, 05 Oct 2009 12:29:14 PDT</pubDate><guid isPermaLink="false">http://www.breakingpointsystems.com/community/blog/cisco-csa-demise</guid><description>This morning, Ron Gula &lt;a href="http://twitter.com/RonGula/status/4627329896"&gt;tweeted a link regarding the possible discontinuation of Cisco Security Agent (CSA)&lt;/a&gt;. Gula, the &lt;a href="http://www.tenablesecurity.com"&gt; CEO/CTO of Tenable Security&lt;/a&gt;, pondered whether this was the first of many Cisco security products to be discontinued. While I think he may be right in that regard, I was hoping CSA remained alive. Patrick Ogenstad wrote the actual blog post in &lt;a href="http://networklore.com/rest-in-peace-cisco-security-agent/"&gt;Network Lore&lt;/a&gt; to which Gula referred in his tweet. It's a wonderful article and I agree with most of what Ogenstad writes, with the exception of a sentence in the last paragraph:
&lt;blockquote&gt;"Perhaps Cisco is the wrong vendor to have this specific product in its portfolio, and perhaps someone else will buy it."&lt;/blockquote&gt;
&lt;p&gt;While I do hope someone picks up the product, I actually think Cisco is the best company to own CSA. This was its trojan horse into the desktop  to disseminate a whole host of other products and services. Perhaps even &lt;a class="external-link" href="http://www.networkworld.com/community/node/45886"&gt;TelePresence&lt;/a&gt;?&lt;/p&gt;
&lt;p&gt;Cisco has the manpower, a technical sales force and a strong technical support organization. Those are key factors, in my opinion, to make CSA successful. CSA reminds me a lot of Network Flight Recorder (NFR), &lt;a class="external-link" href="http://www.checkpoint.com/press/2006/nfrsecurity121906.html"&gt;acquired by Check Point in 2006&lt;/a&gt;. The products are (were?) both extremely powerful. You could do most anything you wanted and neither product required constant upgrading. The general feedback on both, however, was that they were complicated and required knowledgeable people to set them up and get the most out of them. I really dislike that as an argument for their demise: "I'm too lazy to read the manual and do a few &lt;a href="http://www.bing.com"&gt;Bing&lt;/a&gt; searches, Mr. Vendor. Just make it all auto-magically happen for me.".&lt;/p&gt;
&lt;p&gt;Sorry, buddy, but networking doesn't work that way and network security definitely doesn't work that way. It's a detail-oriented profession and if you are not detailed enough to understand the difference between UDP and TCP, get out of networking. You are not doing anybody any favors by judging everything on presets and defaults. You sir, are the type of person being mocked in &lt;a href="http://www.youtube.com/watch?v=ETrWZsYYJOQ"&gt;beer commercials&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We see this all the time in testing. Vendor A has built a new content-aware firewall, and its QA team tests the product using a bit blaster to see how many &lt;a href="http://www.networkworld.com/reviews/2009/100509-hp-blade-test-side.html"&gt;UDP packets&lt;/a&gt; can go through at any given packet size and any second. When does that happen on a real network? Never. The QA team is doing what they did in the past and is now simply being lazy. They are not helping the product succeed in the real world. Here is a suggestion to anyone with a &lt;a class="external-link" href="/solutions/firewall-testing"&gt;content-aware firewall, test with some actual content&lt;/a&gt;, and you'll be surprised by the results.&lt;/p&gt;
&lt;p&gt;As I noted in my last blog post, &lt;a href="/community/blog/cisco-becomes-the-weakest-link-in-national-infrastructure-security"&gt;network administrators&lt;/a&gt; are once again failing to secure their networks properly, whether it's failing to update their routers and switches with the latest Cisco patches or not deploying solid security solutions such as CSA. It leads me to a couple of important questions for the peanut gallery: Why is CSA leaving the market (or is it)? And what could Cisco have done to save it?&lt;/p&gt;
&lt;p&gt;Oh, one last thing, what are you doing to save your product? God knows I hope you're testing.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=mXws7qzn7rg:3xJOcGUPT5Y:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=mXws7qzn7rg:3xJOcGUPT5Y:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=mXws7qzn7rg:3xJOcGUPT5Y:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=mXws7qzn7rg:3xJOcGUPT5Y:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=mXws7qzn7rg:3xJOcGUPT5Y:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=mXws7qzn7rg:3xJOcGUPT5Y:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?i=mXws7qzn7rg:3xJOcGUPT5Y:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BreakingPointBlog?a=mXws7qzn7rg:3xJOcGUPT5Y:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BreakingPointBlog?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BreakingPointBlog/~4/mXws7qzn7rg" height="1" width="1"/&gt;</description><dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">No publisher</dc:publisher><dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/" /><dc:type xmlns:dc="http://purl.org/dc/elements/1.1/">Blog Entry</dc:type><feedburner:origLink>http://www.breakingpointsystems.com/community/blog/cisco-csa-demise</feedburner:origLink></item><media:rating>nonadult</media:rating></channel></rss>
