Top

basic anti proxy #2


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  5.3 (of 3 scores)
Date Added  Jun 14, 2005
Last Updated  Sep 04, 2008

Introduction

Does everything itself.. just some basic regex, if you want an allowed site just add it to the alias allowed

Grab the Code

on @*:JOIN:#: {
  if ($len($nick) >= 4) {
    if (!$regex($nick,(a|e|i|o|u))) {
      if (($right($address($nick,2),19) != .users.quakenet.org) && (!$istok($allowed,$address($nick,2),32))) {
        .mode $chan +mi
        .set %banned $addtok(%banned,$nick,32)
        .inc %counter
        .timerbans 1 2 $banaddr
        .timer $+ $nick 1 3 kick $chan $nick %counter
      }
    }
    elseif ($regex($nick,\d{3}$)) {
      if (($right($address($nick,2),19) != .users.quakenet.org) && (!$istok($allowed,$address($nick,2),32))) {
        .mode $chan +mi
        .set %banned $addtok(%banned,$nick,32)
        .inc %counter
        .timerbans 1 2 $banaddr
        .timer $+ $nick 1 3 kick $chan $nick %counter
      }
    }
    elseif ($regex($nick,\d{4}$)) {
      if (($right($address($nick,2),19) != .users.quakenet.org) && (!$istok($allowed,$address($nick,2),32))) {
        .mode $chan +mi
        .set %banned $addtok(%banned,$nick,32)
        .inc %counter
        .timerbans 1 2 $banaddr
        .timer $+ $nick 1 3 kick $chan $nick %counter
      }
    }
  }
}
 
alias allowed {
  return *!*@quakenet.org *!*@hehe.com
}
 
alias banaddr {
  mode $chan + $+ $str(b,$numtok(%banned,32)) %banned
}
 
 
on me:@*:BAN:#: {
  .timer 1 6 mode $chan -mi
  .timer 1 6 unset %banned
}
 

Comments

  (6)  RSS
DarthReven
Comments: 468
 
mIRC Snippet:  basic anti proxy #2
Posted on Jun 14, 2005 9:14 pm
might want to add that this is for Quakenet only
anthalus
Comments: 70
 
mIRC Snippet:  basic anti proxy #2
Posted on Jun 14, 2005 10:55 pm
I would remove the .users.quakenet.org and change it to <yourserver> or something like that.
DarthReven
Comments: 468
 
mIRC Snippet:  basic anti proxy #2
Posted on Jun 14, 2005 11:13 pm
anthalus some servers don't have vhost's like that
krompert
Comments: 2
 
mIRC Snippet:  basic anti proxy #2
Posted on Jun 22, 2007 3:36 am
hey this code work good but look this..!

81.203.226.60 14237
81.202.193.212 17327
79.3.123.161 17327
79.0.189.80 14237
69.255.52.68 10130
66.189.42.131 10777

dont do nothing with dose proxys :(
krompert
Comments: 2
 
mIRC Snippet:  basic anti proxy #2
Posted on Jun 22, 2007 3:57 am
hay and ignore real nicks just if the nicks got number like mo1254 or some like that hi take efect but look at this..!

*** yamasaki ( u5066@F4859B5F.9D4E125A.FE31252F.IP ) entra [04:54]
*** la_gata ( k9023@Red-Isla-E79CEEA0.red-83-39-77.dynamicip.rima-tde.net ) entra [04:54]
*** el_chivo ( y8022@D99FDB38.E2920504.7B0A5459.IP ) entra [04:54] [entró antes como c7709]

and don't do nothing :(
Joshuaxiong1
Comments: 113
 
mIRC Snippet:  basic anti proxy #2
Posted on Oct 19, 2008 1:10 am
Failed Botnet.

Commenting Options

Register or Login to Hawkee.com or login with your Facebook account by clicking the button below.

Bottom