Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-23 Thread Chris
On Thu, Jan 22, 2009 at 4:47 PM, Nephyrin Zey Nephyrin at doublezen.net 
wrote:
 The iptables startup script combined with the iptables command
 *should* autoload necessary modules as they're asked for.

 -m length pulls in the xt_length module, so you might not have
 this module supported, or your scripts might not be autoloading it.

In particular:
  ls -l /lib/modules/`uname -r`/kernel/net/netfilter/xt_length.*

 Note that uses 'backticks' not single quote. Typically located on the
 tilde (~) key in a full size US QWERTY keyboard.

 BTW as covered before, remove the -m udp which isn't supported,
because you include '-p udp' which matches UDP packets.

Thanks fellas. The module was not in that directory so I recompiled
the kernel with
that module turned on and it works great now!

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-22 Thread Chris
I was hoping it would work on CSS even though it was written for tf. I
made the pertinent changes in the .vdf file, but it does not seem to
load up. I get no error messages.

 Message: 1
 Date: Wed, 21 Jan 2009 21:14:06 +0100
 From: Pawel tra...@gmail.com
 Subject: Re: [hlds_linux] DoS Attack Fix Plugin Released
 To: Half-Life dedicated Linux server mailing list
hlds_linux@list.valvesoftware.com
 Message-ID:
80894ffe0901211214i1b297e2cp6b58b04a98477...@mail.gmail.com
 Content-Type: text/plain; charset=ISO-8859-1

 How about CS:S?
 Will it be working?

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-22 Thread Chris
 Date: Tue, 20 Jan 2009 14:10:38 -0600
 Subject: Re: [hlds_linux] Counterstrike Source DDos Attack !!! NO JOKE!!!
 hello neph we tested this script one he gives a error

 iptables -A INPUT -p udp -m udp --dport 27015 -m length --length 28 -j
 DROP
 - iptables: No chain/target/match by that name

 can u help me ?

What is the output of lsmod?

I am having the same problem. I _do_ have an INPUT and _do_ have a
DROP section and am already using iptables with these sections for
other things.
I tried messing with the command a bit to see what is wrong. The -p
udp -m udp --dport 27015 options work fine.
I tried the command like this to see what error I get:
/usr/sbin/iptables -A INPUT -p udp -m udp --dport 27015 -m length  -j DROP
and it replies:iptables v1.3.6: length: You must specify `--length'
so it seems like it will work. But when I add --length 28 I get the
same error as the others:

 /usr/sbin/iptables -A INPUT -p udp -m udp --dport 27015 -m length
--length 28 -j DROP
iptables: No chain/target/match by that name

Since I can't use the TF2 plugin I'd like to get iptables to work.
Here is my lsmod output:

Module  Size  Used by
ipt_LOG 6784  5
xt_tcpudp   4096  35
iptable_filter  3328  1
ip_tables  18856  1 iptable_filter
x_tables   17032  3 ipt_LOG,xt_tcpudp,ip_tables
i2c_viapro  9496  0
via_velocity   30404  0
i2c_core   23296  1 i2c_viapro
sata_sis8132  0
pata_sis   14340  1 sata_sis

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-22 Thread Nephyrin Zey
The iptables startup script combined with the iptables command
*should* autoload necessary modules as they're asked for.

-m length pulls in the xt_length module, so you might not have
this module supported, or your scripts might not be autoloading it.

- Neph

On Thu, Jan 22, 2009 at 11:50 AM, Chris yoit...@gmail.com wrote:
 Date: Tue, 20 Jan 2009 14:10:38 -0600
 Subject: Re: [hlds_linux] Counterstrike Source DDos Attack !!! NO JOKE!!!
 hello neph we tested this script one he gives a error

 iptables -A INPUT -p udp -m udp --dport 27015 -m length --length 28 -j
 DROP
 - iptables: No chain/target/match by that name

 can u help me ?

What is the output of lsmod?

 I am having the same problem. I _do_ have an INPUT and _do_ have a
 DROP section and am already using iptables with these sections for
 other things.
 I tried messing with the command a bit to see what is wrong. The -p
 udp -m udp --dport 27015 options work fine.
 I tried the command like this to see what error I get:
 /usr/sbin/iptables -A INPUT -p udp -m udp --dport 27015 -m length  -j DROP
 and it replies:iptables v1.3.6: length: You must specify `--length'
 so it seems like it will work. But when I add --length 28 I get the
 same error as the others:

  /usr/sbin/iptables -A INPUT -p udp -m udp --dport 27015 -m length
 --length 28 -j DROP
 iptables: No chain/target/match by that name

 Since I can't use the TF2 plugin I'd like to get iptables to work.
 Here is my lsmod output:

 Module  Size  Used by
 ipt_LOG 6784  5
 xt_tcpudp   4096  35
 iptable_filter  3328  1
 ip_tables  18856  1 iptable_filter
 x_tables   17032  3 ipt_LOG,xt_tcpudp,ip_tables
 i2c_viapro  9496  0
 via_velocity   30404  0
 i2c_core   23296  1 i2c_viapro
 sata_sis8132  0
 pata_sis   14340  1 sata_sis

 ___
 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-22 Thread michael taylor
On Thu, Jan 22, 2009 at 4:47 PM, Nephyrin Zey nephy...@doublezen.net wrote:
 The iptables startup script combined with the iptables command
 *should* autoload necessary modules as they're asked for.

 -m length pulls in the xt_length module, so you might not have
 this module supported, or your scripts might not be autoloading it.

In particular:
  ls -l /lib/modules/`uname -r`/kernel/net/netfilter/xt_length.*

Note that uses 'backticks' not single quote. Typically located on the
tilde (~) key in a full size US QWERTY keyboard.

BTW as covered before, remove the -m udp which isn't supported,
because you include '-p udp' which matches UDP packets.

-Michael

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


[hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread Tony Paloma
Hey all,

I've released a plugin that fixes the attack done by the denial of service
program floating around. The plugin is a Valve server plugin, and does not
require metamod or Sourcemod. It can be loaded in the middle of a game with
no noticeable load time. You can download it from my website:
http://www.sourceop.com/modules.php?name=Downloadsd_op=viewdownloadcid=9

Direct link:
http://www.sourceop.com/modules.php?name=Downloadsd_op=getitlid=31

Both Linux and Windows binaries are included. Extract the contents of the
ZIP file to your addons directory.

Contents of the README file:
DoS Attack Fix
Version: 1 for TF2
Date: 1/21/09
Creator: Drunken F00l, www.sourceop.com

This plugin blocks the denial of service attacks released into the wild
recently.

Console commands:
daf_status
 - Returns the status of the DoS Attack Fix plugin and prints the IP address
of any blocked offenders
daf_version
 - prints the version of the DoS Attack Fix plugin
daf_reset
 - Resets the banned IP list

CVARs:
daf_enable
 - Enables the DoS Attack Fix plugin (defaults to on)



___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread AFAdmin
I would be more tempted to try it if I saw some source.  How do I know 
this wont repeatedly rickroll everyone with the motd window when Im not on?

Tony Paloma wrote:
 Hey all,

 I've released a plugin that fixes the attack done by the denial of service
 program floating around. The plugin is a Valve server plugin, and does not
 require metamod or Sourcemod. It can be loaded in the middle of a game with
 no noticeable load time. You can download it from my website:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=viewdownloadcid=9

 Direct link:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=getitlid=31

 Both Linux and Windows binaries are included. Extract the contents of the
 ZIP file to your addons directory.

 Contents of the README file:
 DoS Attack Fix
 Version: 1 for TF2
 Date: 1/21/09
 Creator: Drunken F00l, www.sourceop.com

 This plugin blocks the denial of service attacks released into the wild
 recently.

 Console commands:
 daf_status
  - Returns the status of the DoS Attack Fix plugin and prints the IP address
 of any blocked offenders
 daf_version
  - prints the version of the DoS Attack Fix plugin
 daf_reset
  - Resets the banned IP list

 CVARs:
 daf_enable
  - Enables the DoS Attack Fix plugin (defaults to on)



 ___
 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux
   


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread Hüseyin Cerik
hello this one is for TF2

can i install this addon on css server ?









Tony Paloma schrieb:
 Hey all,

 I've released a plugin that fixes the attack done by the denial of service
 program floating around. The plugin is a Valve server plugin, and does not
 require metamod or Sourcemod. It can be loaded in the middle of a game with
 no noticeable load time. You can download it from my website:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=viewdownloadcid=9

 Direct link:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=getitlid=31

 Both Linux and Windows binaries are included. Extract the contents of the
 ZIP file to your addons directory.

 Contents of the README file:
 DoS Attack Fix
 Version: 1 for TF2
 Date: 1/21/09
 Creator: Drunken F00l, www.sourceop.com

 This plugin blocks the denial of service attacks released into the wild
 recently.

 Console commands:
 daf_status
  - Returns the status of the DoS Attack Fix plugin and prints the IP address
 of any blocked offenders
 daf_version
  - prints the version of the DoS Attack Fix plugin
 daf_reset
  - Resets the banned IP list

 CVARs:
 daf_enable
  - Enables the DoS Attack Fix plugin (defaults to on)



 ___
 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux

   


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread Andrew Armstrong
Most people on this list aren't script kiddies who just want to cause
trouble; I would take this post at face value and appreciate the offered fix
if it works for you - that's my gut feeling anyway.

- Andrew

-Original Message-
From: hlds_linux-boun...@list.valvesoftware.com
[mailto:hlds_linux-boun...@list.valvesoftware.com] On Behalf Of AFAdmin
Sent: Wednesday, 21 January 2009 11:38 PM
To: Half-Life dedicated Linux server mailing list
Subject: Re: [hlds_linux] DoS Attack Fix Plugin Released

I would be more tempted to try it if I saw some source.  How do I know 
this wont repeatedly rickroll everyone with the motd window when Im not on?

Tony Paloma wrote:
 Hey all,

 I've released a plugin that fixes the attack done by the denial of service
 program floating around. The plugin is a Valve server plugin, and does not
 require metamod or Sourcemod. It can be loaded in the middle of a game
with
 no noticeable load time. You can download it from my website:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=viewdownloadcid=9

 Direct link:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=getitlid=31

 Both Linux and Windows binaries are included. Extract the contents of the
 ZIP file to your addons directory.

 Contents of the README file:
 DoS Attack Fix
 Version: 1 for TF2
 Date: 1/21/09
 Creator: Drunken F00l, www.sourceop.com

 This plugin blocks the denial of service attacks released into the wild
 recently.

 Console commands:
 daf_status
  - Returns the status of the DoS Attack Fix plugin and prints the IP
address
 of any blocked offenders
 daf_version
  - prints the version of the DoS Attack Fix plugin
 daf_reset
  - Resets the banned IP list

 CVARs:
 daf_enable
  - Enables the DoS Attack Fix plugin (defaults to on)



 ___
 To unsubscribe, edit your list preferences, or view the list archives,
please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux
   


___
To unsubscribe, edit your list preferences, or view the list archives,
please visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread hlds_linux
Top Notch!!

Thanks for the plugin Tony, We really appreciate you jumping on this issue.

-Steve


 Hey all,

 I've released a plugin that fixes the attack done by the denial of service
 program floating around. The plugin is a Valve server plugin, and does not
 require metamod or Sourcemod. It can be loaded in the middle of a game
 with
 no noticeable load time. You can download it from my website:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=viewdownloadcid=9

 Direct link:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=getitlid=31

 Both Linux and Windows binaries are included. Extract the contents of the
 ZIP file to your addons directory.

 Contents of the README file:
 DoS Attack Fix
 Version: 1 for TF2
 Date: 1/21/09
 Creator: Drunken F00l, www.sourceop.com

 This plugin blocks the denial of service attacks released into the wild
 recently.

 Console commands:
 daf_status
  - Returns the status of the DoS Attack Fix plugin and prints the IP
 address
 of any blocked offenders
 daf_version
  - prints the version of the DoS Attack Fix plugin
 daf_reset
  - Resets the banned IP list

 CVARs:
 daf_enable
  - Enables the DoS Attack Fix plugin (defaults to on)



 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux




___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread 1nsane
Thanks for this! Seeing how Valve isn't fixing it it's once again up to
others to fix their mistakes.

On Wed, Jan 21, 2009 at 5:32 AM, Tony Paloma drunkenf...@hotmail.comwrote:

 Hey all,

 I've released a plugin that fixes the attack done by the denial of service
 program floating around. The plugin is a Valve server plugin, and does not
 require metamod or Sourcemod. It can be loaded in the middle of a game with
 no noticeable load time. You can download it from my website:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=viewdownloadcid=9

 Direct link:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=getitlid=31

 Both Linux and Windows binaries are included. Extract the contents of the
 ZIP file to your addons directory.

 Contents of the README file:
 DoS Attack Fix
 Version: 1 for TF2
 Date: 1/21/09
 Creator: Drunken F00l, www.sourceop.com

 This plugin blocks the denial of service attacks released into the wild
 recently.

 Console commands:
 daf_status
  - Returns the status of the DoS Attack Fix plugin and prints the IP
 address
 of any blocked offenders
 daf_version
  - prints the version of the DoS Attack Fix plugin
 daf_reset
  - Resets the banned IP list

 CVARs:
 daf_enable
  - Enables the DoS Attack Fix plugin (defaults to on)



 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread Pawel
How about CS:S?
Will it be working?

On Wed, Jan 21, 2009 at 6:21 PM, 1nsane 1nsane...@gmail.com wrote:

 Thanks for this! Seeing how Valve isn't fixing it it's once again up to
 others to fix their mistakes.

 On Wed, Jan 21, 2009 at 5:32 AM, Tony Paloma drunkenf...@hotmail.com
 wrote:

  Hey all,
 
  I've released a plugin that fixes the attack done by the denial of
 service
  program floating around. The plugin is a Valve server plugin, and does
 not
  require metamod or Sourcemod. It can be loaded in the middle of a game
 with
  no noticeable load time. You can download it from my website:
 
 http://www.sourceop.com/modules.php?name=Downloadsd_op=viewdownloadcid=9
 
  Direct link:
  http://www.sourceop.com/modules.php?name=Downloadsd_op=getitlid=31
 
  Both Linux and Windows binaries are included. Extract the contents of the
  ZIP file to your addons directory.
 
  Contents of the README file:
  DoS Attack Fix
  Version: 1 for TF2
  Date: 1/21/09
  Creator: Drunken F00l, www.sourceop.com
 
  This plugin blocks the denial of service attacks released into the wild
  recently.
 
  Console commands:
  daf_status
   - Returns the status of the DoS Attack Fix plugin and prints the IP
  address
  of any blocked offenders
  daf_version
   - prints the version of the DoS Attack Fix plugin
  daf_reset
   - Resets the banned IP list
 
  CVARs:
  daf_enable
   - Enables the DoS Attack Fix plugin (defaults to on)
 
 
 
  ___
  To unsubscribe, edit your list preferences, or view the list archives,
  please visit:
  http://list.valvesoftware.com/mailman/listinfo/hlds_linux
 
 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread Rick Payton
I totally understand where you're coming from AFAdmin, and you're
obviously totally justified too, but on the other hand, Tony has been on
this list for quite some time now. I highly doubt he would release a
plugin that would mess with other peoples servers. It's just one admin,
trying help many other admins.

mauirixxx

-Original Message-
From: hlds_linux-boun...@list.valvesoftware.com
[mailto:hlds_linux-boun...@list.valvesoftware.com] On Behalf Of AFAdmin
Sent: Wednesday, January 21, 2009 2:38 AM
To: Half-Life dedicated Linux server mailing list
Subject: Re: [hlds_linux] DoS Attack Fix Plugin Released

I would be more tempted to try it if I saw some source.  How do I know
this wont repeatedly rickroll everyone with the motd window when Im not
on?

Tony Paloma wrote:
 Hey all,

 I've released a plugin that fixes the attack done by the denial of 
 service program floating around. The plugin is a Valve server plugin, 
 and does not require metamod or Sourcemod. It can be loaded in the 
 middle of a game with no noticeable load time. You can download it
from my website:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=viewdownloadc
 id=9

 Direct link:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=getitlid=31

 Both Linux and Windows binaries are included. Extract the contents of 
 the ZIP file to your addons directory.

 Contents of the README file:
 DoS Attack Fix
 Version: 1 for TF2
 Date: 1/21/09
 Creator: Drunken F00l, www.sourceop.com

 This plugin blocks the denial of service attacks released into the 
 wild recently.

 Console commands:
 daf_status
  - Returns the status of the DoS Attack Fix plugin and prints the IP 
 address of any blocked offenders daf_version
  - prints the version of the DoS Attack Fix plugin daf_reset
  - Resets the banned IP list

 CVARs:
 daf_enable
  - Enables the DoS Attack Fix plugin (defaults to on)



 ___
 To unsubscribe, edit your list preferences, or view the list archives,
please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux
   


___
To unsubscribe, edit your list preferences, or view the list archives,
please visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread Nephyrin Zey
Tony is certainly trustworthy, and I can verify that this plugin works fine

- Neph

On Wed, Jan 21, 2009 at 12:21 PM, Rick Payton r...@mai-hawaii.com wrote:
 I totally understand where you're coming from AFAdmin, and you're
 obviously totally justified too, but on the other hand, Tony has been on
 this list for quite some time now. I highly doubt he would release a
 plugin that would mess with other peoples servers. It's just one admin,
 trying help many other admins.

 mauirixxx

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread AFAdmin
I haven't been on this list for very long, So I dont know eveyrone yet...  

But again, I would feel alot more comfortable trying out the plugin if I 
could see what it actually does or how it works, rather than add some 
blackbox addon to my server from someone I do not know. 

You can probably tell I'm not of the Take your medicine it's good for 
you philosophy. ;)

P.S. I'd still like to know what this plugin actually does.


Rick Payton wrote:
 I totally understand where you're coming from AFAdmin, and you're
 obviously totally justified too, but on the other hand, Tony has been on
 this list for quite some time now. I highly doubt he would release a
 plugin that would mess with other peoples servers. It's just one admin,
 trying help many other admins.

 mauirixxx

 -Original Message-
 From: hlds_linux-boun...@list.valvesoftware.com
 [mailto:hlds_linux-boun...@list.valvesoftware.com] On Behalf Of AFAdmin
 Sent: Wednesday, January 21, 2009 2:38 AM
 To: Half-Life dedicated Linux server mailing list
 Subject: Re: [hlds_linux] DoS Attack Fix Plugin Released

 I would be more tempted to try it if I saw some source.  How do I know
 this wont repeatedly rickroll everyone with the motd window when Im not
 on?

 Tony Paloma wrote:
   
 Hey all,

 I've released a plugin that fixes the attack done by the denial of 
 service program floating around. The plugin is a Valve server plugin, 
 and does not require metamod or Sourcemod. It can be loaded in the 
 middle of a game with no noticeable load time. You can download it
 
 from my website:
   
 http://www.sourceop.com/modules.php?name=Downloadsd_op=viewdownloadc
 id=9

 Direct link:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=getitlid=31

 Both Linux and Windows binaries are included. Extract the contents of 
 the ZIP file to your addons directory.

 Contents of the README file:
 DoS Attack Fix
 Version: 1 for TF2
 Date: 1/21/09
 Creator: Drunken F00l, www.sourceop.com

 This plugin blocks the denial of service attacks released into the 
 wild recently.

 Console commands:
 daf_status
  - Returns the status of the DoS Attack Fix plugin and prints the IP 
 address of any blocked offenders daf_version
  - prints the version of the DoS Attack Fix plugin daf_reset
  - Resets the banned IP list

 CVARs:
 daf_enable
  - Enables the DoS Attack Fix plugin (defaults to on)



 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 
 please visit:
   
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux
   
 


 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux

 ___
 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux
   


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread Cc2iscooL
It blocks the packets from offending IP addresses.

 Blocked IPs:
IP Address   | Occurences
 +---

 Blocked 21800 packets total.

I already removed the IP as it was a test run from another person in the
IRC, but it does do what it says it does.

On Wed, Jan 21, 2009 at 4:27 PM, AFAdmin aidsf...@gmail.com wrote:

 I haven't been on this list for very long, So I dont know eveyrone yet...

 But again, I would feel alot more comfortable trying out the plugin if I
 could see what it actually does or how it works, rather than add some
 blackbox addon to my server from someone I do not know.

 You can probably tell I'm not of the Take your medicine it's good for
 you philosophy. ;)

 P.S. I'd still like to know what this plugin actually does.


 Rick Payton wrote:
  I totally understand where you're coming from AFAdmin, and you're
  obviously totally justified too, but on the other hand, Tony has been on
  this list for quite some time now. I highly doubt he would release a
  plugin that would mess with other peoples servers. It's just one admin,
  trying help many other admins.
 
  mauirixxx
 
  -Original Message-
  From: hlds_linux-boun...@list.valvesoftware.com
  [mailto:hlds_linux-boun...@list.valvesoftware.com] On Behalf Of AFAdmin
  Sent: Wednesday, January 21, 2009 2:38 AM
  To: Half-Life dedicated Linux server mailing list
  Subject: Re: [hlds_linux] DoS Attack Fix Plugin Released
 
  I would be more tempted to try it if I saw some source.  How do I know
  this wont repeatedly rickroll everyone with the motd window when Im not
  on?
 
  Tony Paloma wrote:
 
  Hey all,
 
  I've released a plugin that fixes the attack done by the denial of
  service program floating around. The plugin is a Valve server plugin,
  and does not require metamod or Sourcemod. It can be loaded in the
  middle of a game with no noticeable load time. You can download it
 
  from my website:
 
  http://www.sourceop.com/modules.php?name=Downloadsd_op=viewdownloadc
  id=9
 
  Direct link:
  http://www.sourceop.com/modules.php?name=Downloadsd_op=getitlid=31
 
  Both Linux and Windows binaries are included. Extract the contents of
  the ZIP file to your addons directory.
 
  Contents of the README file:
  DoS Attack Fix
  Version: 1 for TF2
  Date: 1/21/09
  Creator: Drunken F00l, www.sourceop.com
 
  This plugin blocks the denial of service attacks released into the
  wild recently.
 
  Console commands:
  daf_status
   - Returns the status of the DoS Attack Fix plugin and prints the IP
  address of any blocked offenders daf_version
   - prints the version of the DoS Attack Fix plugin daf_reset
   - Resets the banned IP list
 
  CVARs:
  daf_enable
   - Enables the DoS Attack Fix plugin (defaults to on)
 
 
 
  ___
  To unsubscribe, edit your list preferences, or view the list archives,
 
  please visit:
 
  http://list.valvesoftware.com/mailman/listinfo/hlds_linux
 
 
 
 
  ___
  To unsubscribe, edit your list preferences, or view the list archives,
  please visit:
  http://list.valvesoftware.com/mailman/listinfo/hlds_linux
 
  ___
  To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
  http://list.valvesoftware.com/mailman/listinfo/hlds_linux
 


 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread Tony Paloma
The plugin hooks valve's receive UDP packet function and filters out the
packets sent by the attacker program.

The amount of code required to do this is very small.

-Original Message-
From: hlds_linux-boun...@list.valvesoftware.com
[mailto:hlds_linux-boun...@list.valvesoftware.com] On Behalf Of AFAdmin
Sent: Wednesday, January 21, 2009 2:28 PM
To: Half-Life dedicated Linux server mailing list
Subject: Re: [hlds_linux] DoS Attack Fix Plugin Released

I haven't been on this list for very long, So I dont know eveyrone yet...  

But again, I would feel alot more comfortable trying out the plugin if I 
could see what it actually does or how it works, rather than add some 
blackbox addon to my server from someone I do not know. 

You can probably tell I'm not of the Take your medicine it's good for 
you philosophy. ;)

P.S. I'd still like to know what this plugin actually does.


Rick Payton wrote:
 I totally understand where you're coming from AFAdmin, and you're
 obviously totally justified too, but on the other hand, Tony has been on
 this list for quite some time now. I highly doubt he would release a
 plugin that would mess with other peoples servers. It's just one admin,
 trying help many other admins.

 mauirixxx

 -Original Message-
 From: hlds_linux-boun...@list.valvesoftware.com
 [mailto:hlds_linux-boun...@list.valvesoftware.com] On Behalf Of AFAdmin
 Sent: Wednesday, January 21, 2009 2:38 AM
 To: Half-Life dedicated Linux server mailing list
 Subject: Re: [hlds_linux] DoS Attack Fix Plugin Released

 I would be more tempted to try it if I saw some source.  How do I know
 this wont repeatedly rickroll everyone with the motd window when Im not
 on?

 Tony Paloma wrote:
   
 Hey all,

 I've released a plugin that fixes the attack done by the denial of 
 service program floating around. The plugin is a Valve server plugin, 
 and does not require metamod or Sourcemod. It can be loaded in the 
 middle of a game with no noticeable load time. You can download it
 
 from my website:
   
 http://www.sourceop.com/modules.php?name=Downloadsd_op=viewdownloadc
 id=9

 Direct link:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=getitlid=31

 Both Linux and Windows binaries are included. Extract the contents of 
 the ZIP file to your addons directory.

 Contents of the README file:
 DoS Attack Fix
 Version: 1 for TF2
 Date: 1/21/09
 Creator: Drunken F00l, www.sourceop.com

 This plugin blocks the denial of service attacks released into the 
 wild recently.

 Console commands:
 daf_status
  - Returns the status of the DoS Attack Fix plugin and prints the IP 
 address of any blocked offenders daf_version
  - prints the version of the DoS Attack Fix plugin daf_reset
  - Resets the banned IP list

 CVARs:
 daf_enable
  - Enables the DoS Attack Fix plugin (defaults to on)



 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 
 please visit:
   
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux
   
 


 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux

 ___
 To unsubscribe, edit your list preferences, or view the list archives,
please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux
   


___
To unsubscribe, edit your list preferences, or view the list archives,
please visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] DoS Attack Fix Plugin Released

2009-01-21 Thread Guillaume Parent
I'm still interested in seeing the source myself to see how you 
accomplished it and what exactly goes on.

Let us know when you host it! :D
 The plugin hooks valve's receive UDP packet function and filters out the
 packets sent by the attacker program.

 The amount of code required to do this is very small.

 -Original Message-
 From: hlds_linux-boun...@list.valvesoftware.com
 [mailto:hlds_linux-boun...@list.valvesoftware.com] On Behalf Of AFAdmin
 Sent: Wednesday, January 21, 2009 2:28 PM
 To: Half-Life dedicated Linux server mailing list
 Subject: Re: [hlds_linux] DoS Attack Fix Plugin Released

 I haven't been on this list for very long, So I dont know eveyrone yet...  

 But again, I would feel alot more comfortable trying out the plugin if I 
 could see what it actually does or how it works, rather than add some 
 blackbox addon to my server from someone I do not know. 

 You can probably tell I'm not of the Take your medicine it's good for 
 you philosophy. ;)

 P.S. I'd still like to know what this plugin actually does.


 Rick Payton wrote:
   
 I totally understand where you're coming from AFAdmin, and you're
 obviously totally justified too, but on the other hand, Tony has been on
 this list for quite some time now. I highly doubt he would release a
 plugin that would mess with other peoples servers. It's just one admin,
 trying help many other admins.

 mauirixxx

 -Original Message-
 From: hlds_linux-boun...@list.valvesoftware.com
 [mailto:hlds_linux-boun...@list.valvesoftware.com] On Behalf Of AFAdmin
 Sent: Wednesday, January 21, 2009 2:38 AM
 To: Half-Life dedicated Linux server mailing list
 Subject: Re: [hlds_linux] DoS Attack Fix Plugin Released

 I would be more tempted to try it if I saw some source.  How do I know
 this wont repeatedly rickroll everyone with the motd window when Im not
 on?

 Tony Paloma wrote:
   
 
 Hey all,

 I've released a plugin that fixes the attack done by the denial of 
 service program floating around. The plugin is a Valve server plugin, 
 and does not require metamod or Sourcemod. It can be loaded in the 
 middle of a game with no noticeable load time. You can download it
 
   
 from my website:
   
 
 http://www.sourceop.com/modules.php?name=Downloadsd_op=viewdownloadc
 id=9

 Direct link:
 http://www.sourceop.com/modules.php?name=Downloadsd_op=getitlid=31

 Both Linux and Windows binaries are included. Extract the contents of 
 the ZIP file to your addons directory.

 Contents of the README file:
 DoS Attack Fix
 Version: 1 for TF2
 Date: 1/21/09
 Creator: Drunken F00l, www.sourceop.com

 This plugin blocks the denial of service attacks released into the 
 wild recently.

 Console commands:
 daf_status
  - Returns the status of the DoS Attack Fix plugin and prints the IP 
 address of any blocked offenders daf_version
  - prints the version of the DoS Attack Fix plugin daf_reset
  - Resets the banned IP list

 CVARs:
 daf_enable
  - Enables the DoS Attack Fix plugin (defaults to on)



 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 
   
 please visit:
   
 
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux
   
 
   
 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux

 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 
 please visit:
   
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux
   
 


 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux


 ___
 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux


 __ Information from ESET NOD32 Antivirus, version of virus signature 
 database 3787 (20090121) __

 The message was checked by ESET NOD32 Antivirus.

 http://www.eset.com


   



__ Information from ESET NOD32 Antivirus, version of virus signature 
database 3787 (20090121) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com



___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux