PtokaX forum

Archive => Archived 4.0 boards => Request for Lua 4 scripts => Topic started by: wiper on 17 February, 2004, 19:56:39

Title: WARNING NEW HUB FLOODER !!!OUT
Post by: wiper on 17 February, 2004, 19:56:39
Warning !!!
New Hub flooder are out 16FEB 2004  name:"*hmm plzz dont tell ppl the name, dont want ppl finding it and using it ;)*

What the flooder do

this program will keep packing user into the hub specified until the hub is maxed out.
This is the ultimate Version! this can access EVERY hubsoft including Yhub.

i have tested that to Y.hub and the new ptokax 0.330.b15.25.dbg

The Y-hub will go down only after 3min
and the ptokax 0.330.b15.25.dbg go down only  after 20sec and generate
Excetion EaccecViolation in module Ptokax.exe at 000E013E
Access violation at address 004E113E in module ptokax.exe read of address 000001FF

damn can any fix script for the new flooder ?
Title:
Post by: kepp on 17 February, 2004, 20:21:37
WRONG thread!!!
Title:
Post by: [T-G-T]M@sto on 17 February, 2004, 20:28:12
QuoteOriginally posted by kepp
WRONG thread!!!
Why is it wrong ? he wrote >>damn can any fix script for the new flooder ?<<
Title:
Post by: pHaTTy on 17 February, 2004, 20:33:11
QuoteOriginally posted by [T-G-T]M@sto
QuoteOriginally posted by kepp
WRONG thread!!!
Why is it wrong ? he wrote >>damn can any fix script for the new flooder ?<<

because i just moved it here lol
Title:
Post by: c h i l l a on 17 February, 2004, 20:34:20
send me that program.

if the prog always uses the same ip then its easy to block it with Ptokax ;), if it also uses different IP's then you need to check other simularities.

other wize set you max allowed users, only a little above your current users. What should be normal.
Title:
Post by: nEgativE on 17 February, 2004, 20:54:16
Hum.. last week and this one, i think i'm having that exactly problem describe by wiper :\
Title:
Post by: NightLitch on 17 February, 2004, 21:10:31
I have had I look at it and it can be stopped... I will try creating a script for it.

Am gonna give you guys I now a bit the programs, like:

Plop, Tezlo, Chilla, Phatty

You guys I see as big programmers so.

but I will PM you guys l8r.

right now I need to head home fix somethings.

But I will give you guys it.

/NL
Title:
Post by: NightLitch on 17 February, 2004, 21:11:57
hope you accept my decision guys. / NL
Title:
Post by: dReiska on 17 February, 2004, 21:17:27
Hi!

I have downloaded those flooders/"hub destroyers" and with using logging + packet sniffer I discovered that those programs just send a big pile of GetINFO and MyINFO request. When hub starts responding and delivering MyINFOs begins problems. Hub starts to use a freaking lot bandwidth and also it begins to run out of memory.

There's a simple solution:
Write a script which controls GetINFO count.

I added to my own bot a control which kicks users after 5 GetINFO and/or MyINFO in 3 seconds. It works, flooder/"hub destroyer" gets kicked but normal users stay online. :P
Title:
Post by: pHaTTy on 17 February, 2004, 21:29:40
QuoteOriginally posted by dReiska
Hi!

I have downloaded those flooders/"hub destroyers" and with using logging + packet sniffer I discovered that those programs just send a big pile of GetINFO and MyINFO request. When hub starts responding and delivering MyINFOs begins problems. Hub starts to use a freaking lot bandwidth and also it begins to run out of memory.

There's a simple solution:
Write a script which controls GetINFO count.

I added to my own bot a control which kicks users after 5 GetINFO and/or MyINFO in 3 seconds. It works, flooder/"hub destroyer" gets kicked but normal users stay online. :P

hmmmm, hmmmm, hmmmm lol hmm, now that almost sounds good if its done by ip....
Title:
Post by: NightLitch on 17 February, 2004, 21:36:36
for every MYINFO an X is added...

if you kick 1 user what about the rest of them...

it is a loot of users added in list...

that must be deleted to...

I notice this is gonna be hard. you cna in the login already
kick the users by the description...

otherwise another way is after x lenght of char. ban/disc. or

for each MyInfo sent an X is added in the names...

but you can't always check the MyInfo all the time or can you.

sooner or later the hub will crash...

mean look at it how FAST it goes when setting it to max.

and say now hub has already 2000+ users the hub will go nuts...

/NL
Title:
Post by: [T-G-T]M@sto on 17 February, 2004, 21:41:53
QuoteOriginally posted by c h i l l a
send me that program.

Speak to Trucker i just posted him a PM on Magmar Forum  ;)
Title:
Post by: tezlo on 17 February, 2004, 21:42:23
hmm lol hmm.. what are you on about?
Title:
Post by: dReiska on 17 February, 2004, 21:47:05
It's best to check ip against getinfos.

I'm filtering incoming traffic. Memory consumption with 300 users is 1700kt (including everything, not just this script) and processor usage is quite low.. CPU1 4-6% and CPU2 0-1%

So there should be no problem with larger hubs.

(I have also pm+main flooding control in the same filtering function and there is no lag at all)


EDIT: LOL.. read a bit too fast your post.. When the setting is at the max it post about 10 or 20 getinfos / myinfos in few seconds.. so trigger at 5 GI / MI in 3 seconds is enough to get that  "evil-bot" out and manage still keep your users in.
Title:
Post by: NightLitch on 17 February, 2004, 22:08:29
Well I would surelly want to see the script now you have talked about.

Could you post it...??
Title:
Post by: c h i l l a on 17 February, 2004, 23:31:10
I still need the proggie for the $GetINFO  if there is one well here are 2 ways to block the MyINFO proggies.

this one is better

change curUser:Disconnect() to
curUser:Ban()



MyInfos = {}

CheckTrig = {
["$MyI"] = 1,
}

function Main()
SetTimer()
StartTimer(1*1000)
end

function OnTimer()
foreach(MyInfos, function(i,v)
if v == 0 then
MyInfos[i] = nil
else
MyInfos[i] = MyInfos[i] - 1
end
end)
end


function DataArrival(curUser,data)
if CheckTrig[strsub(data,1,4)] then
MyInfos[curUser.sName] = MyInfos[curUser.sName] or 1
MyInfos[curUser.sName] = MyInfos[curUser.sName] + 1
if MyInfos[curUser.sName] >= 4 then
MyInfos[curUser.sName] = nil
curUser:Disconnect()
end
end
end


this is also okey but wont check if the MyInfo has different share.


CheckTrig = {
["$MyI"] = 1,
}

function DataArrival(curUser,data)

if CheckTrig[strsub(data,1,4)] then

local _,_,nick = strfind(data,"^%$MyINFO %$ALL (%S+)")
if (not nick) or (nick ~= curUser.sName) then
curUser:Disconnect()
end
end
end
Title:
Post by: Ruri_Ruri on 17 February, 2004, 23:55:10
hehe u like my lil progs? im still working on them, i also have a client attacker but that didnt leak ;)

want more info? ull find me around ;)
Title:
Post by: Ruri_Ruri on 17 February, 2004, 23:58:06
oh, n thanks for the way to stop it, ill work around it now!!!!

hahahaha ur all screwed,  trust me, lol
Title:
Post by: tezlo on 18 February, 2004, 00:12:05
lol moron.. u got too much time on your hands
Title:
Post by: Ruri_Ruri on 18 February, 2004, 00:18:06
QuoteOriginally posted by tezlo
lol moron.. u got too much time on your hands

ha, yea, a moron with too much time on his hands who knows too much

hehe, anybody know Progger and Hisoka?
Title:
Post by: pHaTTy on 18 February, 2004, 00:35:58
QuoteOriginally posted by Ruri_Ruri
oh, n thanks for the way to stop it, ill work around it now!!!!

hahahaha ur all screwed,  trust me, lol

lol *no comment*
Title:
Post by: pHaTTy on 18 February, 2004, 00:49:51
eheh well at least theres a lively topic going on here *lol*

Hey so Ruri does that mean it cant attack private hubs???
Title:
Post by: NightLitch on 18 February, 2004, 01:35:39
Well what can I say ppl don't f*** change.

Why is it SO DAMN FUN destroying ???

What do they expect from this "soft prog".. more users ???

ppl are just getting angry. And why attack privat hubs ??

What is the fun in that...

chheeezzzz...

/NL
Title: HMM
Post by: RollTheDice on 18 February, 2004, 02:04:44
HMM oh well some things will never change ...sad...and this Ruri *lol* ...i already get sumthin'...it means u just cant escape!!!Escape the real danger wot "step" on ur way .....u'll see fa##ot!
Title:
Post by: AMediaMan on 18 February, 2004, 02:30:37
May I ask just what the fist of the 2 scripts above actually do? I seem to be a little lost with it.


Thnx, AMediaMan
Title: Damn!
Post by: RollTheDice on 18 February, 2004, 03:27:08
It can stop it ...but its banning innocent users aswell i though..thats a bad point....dunno sure ..but so it looks.
Title:
Post by: PPK on 18 February, 2004, 04:02:25
Quotehehe u like my lil progs?
Yes i like it.... you small progs help me find 1 bug and 1 PtokaX vulnerability :D
Quoteoh, n thanks for the way to stop it, ill work around it now!!!!
hahahaha ur all screwed, trust me, lol
You want to play with me ??? And new PtokaX ??? Try it here dchub://PePeK.no-ip.com  8) :D
I'm waiting if you now find way to crash it :P
Title:
Post by: kepp on 18 February, 2004, 08:48:08
QuoteOriginally posted by Ruri_Ruri
hehe u like my lil progs? im still working on them, i also have a client attacker but that didnt leak ;)

want more info? ull find me around ;)

you got some serious problem!
Title:
Post by: c h i l l a on 18 February, 2004, 10:01:02
Ruri_Rur

well I gotta say, cause I also tried to these stuff, but never noticed that the hubs only check for the lenght for the usersname and never what comes behind, so I see your program from a different view, I learn from it, make my hub more secure, so you show me how to take down hubs I'll show you how to prevent it ;).

But its funny, you keep the forum going, about this trivial stuff, maybe its what they wanna hear, I tried some good scripts and games but not nearly as much wanted as a little flooder ;).
Title: hehe
Post by: RollTheDice on 18 February, 2004, 11:36:18
right i make badstuff also i don't care anymore
:D<------------WTF i didint wrote that ?
Title: CAN
Post by: RollTheDice on 18 February, 2004, 14:51:46
some mod give me hes ip i show wot means destroy with 5x100mb lines.........and how to destroy someone connection to net 4ever X(
Title: hmm
Post by: RollTheDice on 18 February, 2004, 14:53:48
We found u ...its 4 sure sooner or later Ruri. U edit wrong man post!
Title: Theres
Post by: RollTheDice on 18 February, 2004, 15:06:16
really bad security hole if anybody can edit an others post!
over& out
Title:
Post by: pHaTTy on 18 February, 2004, 15:12:10
i think its time ppl start looking on foot, then just break there hands, then see how much programming they do......
Title: Right
Post by: RollTheDice on 18 February, 2004, 15:24:06
Very true ...hmm i have already bad day...mean in real life (works) ...maybe its time to relax...this is only hobby not work .....yups lifes go on with some prog or without it:)
Title:
Post by: pHaTTy on 18 February, 2004, 15:41:54
hahah cool pic (:
Title:
Post by: PPK on 18 February, 2004, 15:51:55
2Ruri_Ruri
Thx for test :D
Now with Ruri help i find 2 bugs in Ptokax and 3 vulnerabilities... good news is no more crashing :) Or maybe Ruri is too lazy to find new way to crash PtokaX  :P
Btw if anyone want  :]
02/18/04 12:59:27: 02/18/04 13:00:32: Ruri test new chat flooder on my hub
Quote[2004-02-18 12:59] ......
[2004-02-18 13:01] this hub stinks
[2004-02-18 13:01] nobody talks so it sucks
[2004-02-18 13:01] im leaving
[2004-02-18 13:01] this hub stinks
[2004-02-18 13:01] nobody talks so it sucks
[2004-02-18 13:01] im leaving
[2004-02-18 13:01] this hub stinks
[2004-02-18 13:01] nobody talks so it sucks
[2004-02-18 13:01] im leaving
Title: heh
Post by: RollTheDice on 18 February, 2004, 16:11:45
And thxz for ips ...globalban about 600 hubs...its all i can do...and lol ..yeps hmm its good prog Ruri ...3 bugs found already fine.
Keep up good work Ruri:)

*my avatar sucks...must change it ...*LoL*
Title:
Post by: kepp on 18 February, 2004, 16:19:46
Why do people bother?
Can't you see that this is exactly what he wants?
A hot Topic about him and his "Prog"
He mess with hubowners, he will get 10x double up!

By the way, Abuse mail of yours is found!
;) Ciao
Title:
Post by: pHaTTy on 18 February, 2004, 16:51:46
hmm maybe us hub owners shud make some prggies then go fk his comp, fuck with h4x0r and u get it harder back fucker.........btw u like ur visit from 'fucker' yea, u know im so fucking pissed off atm, if i find u im gonna kill u, i dont mind leaving country to get rid of another fucker......its done b4 can be done again.......its because u want to be on pplz walls comps, everywhere ye? well rip your fucking head off and staple it to the fucking wall, stupid ass
Title: hmm
Post by: RollTheDice on 18 February, 2004, 17:08:20
Maybe he's now getting the attention what he was missed out as a child.The only living threath.Yeah,you're right:Why bother to do anything...let it be....Hope he's happy now...Every hub that goes down,will be up again.
I don't really care now......I will go to sleep.....
Title:
Post by: Cid on 18 February, 2004, 17:14:24
If they have too much time on their hands, that little hacker kids, they should go and wank...so they can use their hands to lower their sexual frustration.
Title:
Post by: dReiska on 18 February, 2004, 17:43:21
The script of mine is almost equal to that one which is pasted here already so it would be too much work for a little effort.

Looks like that other scipt doesn't ban any "innocent" users but I would suggest putting an PmToOps there to be sure.

Ruri: You really suck dude.. ;) A bit of lame to build your flooder on a top of Kerberos.
Title:
Post by: Cid on 18 February, 2004, 17:52:03
ruri's thing is not really effective (neither is the flooder) in a hub where only regged users can download and search:P
Title:
Post by: pHaTTy on 18 February, 2004, 17:57:45
ur fucking prog caused me to split up with someone, and if i find u im gonan rip you fucking heart out
Title:
Post by: kepp on 18 February, 2004, 18:06:53
ok, My last post!!

I've caught 3 people this way

abuse@blueyonder.co.uk


Ain't it against the rule / law to spam another computer, or whatever he does?

Your Intenet connection will be gone in a few days kid if you get too many reports on your ip to that abuse e-mail!!

Nuff said :D
Title:
Post by: [NL]Pur on 18 February, 2004, 19:31:27
Quoteha, yea, a moron with too much time on his hands who knows too much

hehe, anybody know Progger and Hisoka?

are that 2 other morons ?
Title:
Post by: pHaTTy on 18 February, 2004, 19:34:05
QuoteOriginally posted by [NL]Pur
Quoteha, yea, a moron with too much time on his hands who knows too much

hehe, anybody know Progger and Hisoka?

are that 2 other morons ?


hahah pmsl nice one purm
Title:
Post by: pHaTTy on 18 February, 2004, 19:40:56
hmmm isnt Ruri a japanese manga cartoon or sumit, i heard it is :p
Title: hmmm
Post by: (uk-kingdom)John on 18 February, 2004, 20:34:11
haha this sad person makes me laugh. LAMER! Go to sleep little boy. What a waste of time. Flooding hubs is a waste of time so why do it??
Title:
Post by: pHaTTy on 18 February, 2004, 22:07:10
hey ruri i think the forum knows u quite well

status...newbie lol
Title: hmmz
Post by: (uk-kingdom)John on 18 February, 2004, 22:08:11
Ive noticed.. he came on here and hasent answered anything on here since we talked about how lame he really is.. Unless he can't read
Title:
Post by: pHaTTy on 18 February, 2004, 22:13:42
QuoteOriginally posted by (uk-kingdom)John
Ive noticed.. he came on here and hasent answered anything on here since we talked about how lame he really is.. Unless he can't read

could be its a possiblity or maybe hes just realised how lame he really is lol

(_!_)     -     Regular arse
(!)     -     Tight arse
(_*_)     -     Sore arse
(_o_)     -     Well used arse
(_e+2=2_)   -   Smart Arse
(_2+2=7_)     -     Stupid ass (Ruri_Ruri)
(_x_)     -     Kiss my arse


i award u this
(http://members.lycos.co.uk/garfvader/assclown.jpg)

u deserve it ;) lol
Title: ...
Post by: (uk-kingdom)John on 18 February, 2004, 22:19:30
lmao.. good one phatty! That might keep him quiet for even longer while he goes crying to his ma... lool

Yep he deserves the award  ;)
Title:
Post by: pHaTTy on 18 February, 2004, 22:22:13
if u are really trying to get respect u can get it by helping, make a client checker, find mldc clients and flood the them or sumit fun, i could resprect flooding fakers.......
Title:
Post by: Ruri_Ruri on 18 February, 2004, 22:29:17
QuoteOriginally posted by (uk-kingdom)pH?tt?
if u are really trying to get respect u can get it by helping, make a client checker, find mldc clients and flood the them or sumit fun, i could resprect flooding fakers.......

i did, kinda

Ragnarok, heard of it? I modded it n it works better

i also have other bots i have made, i dont just make destroyers. the only reason they got out was because they leaked, they werent supposed to get out!
Title:
Post by: pHaTTy on 18 February, 2004, 22:30:54
hmmm ok, fair enough, hmmm well why not release some show ur face here at forum and help out a little, i sure can forgive for helping ;)
Title:
Post by: Ruri_Ruri on 18 February, 2004, 22:40:01
http://www.geocities.com/cat_like_thief/rag.zip (http://www.geocities.com/cat_like_thief/rag.zip)

click there, its the rag bot

unlike the original, this one can get into alot more hubs, its quicker at searching users and other stuff too

just so you know, im actually creating a bot to stop my hub destroyers/flooders, they arent supposed to have got out, i made them for research purposes, not for this

call me a geek, script kiddie, whatever i dont care, im a university programming student, i need to know more and more about this stuff
Title:
Post by: pHaTTy on 18 February, 2004, 22:41:49
QuoteOriginally posted by Ruri_Ruri
http://www.geocities.com/cat_like_thief/rag.zip (http://www.geocities.com/cat_like_thief/rag.zip)

click there, its the rag bot

unlike the original, this one can get into alot more hubs, its quicker at searching users and other stuff too

just so you know, im actually creating a bot to stop my hub destroyers/flooders, they arent supposed to have got out, i made them for research purposes, not for this

call me a geek, script kiddie, whatever i dont care, im a university programming student, i need to know more and more about this stuff

well yeah i have made some nasty progs also, so i understand the research, just got the wrong idea about ur all screwed lol

humm ok ty for link i check it out
Title:
Post by: pHaTTy on 18 February, 2004, 22:44:51
eheh not bad looks alot cleaner.....hmm cant w8 to see these anti hub flooders then....
Title:
Post by: Ruri_Ruri on 18 February, 2004, 22:45:55
sorry, i zipped the wrong file, if u d/l it now, it shud work properly
Title:
Post by: pHaTTy on 18 February, 2004, 22:49:20
hmm well it works but the lib file is corupt
Title:
Post by: MrBuitenhuizenJunior on 18 February, 2004, 22:52:09
Thnx voor the link Ruri_Ruri

MrBuitenhuizen

edit:  But still bad/corrupted files in it
Title:
Post by: Ruri_Ruri on 18 February, 2004, 23:04:15
works fine for me

lemme have a look at the code, ill re-up it if i find anything wrong with it

EDIT: it all seems just fine, you ppl may need the vb runtime files, or the mswinsock.ocx file in C:\WINDOWS\System32

it needs these files otherwise it wont work properly
Title:
Post by: pHaTTy on 18 February, 2004, 23:13:45
pmsl someone just came in network and flooded main with this


[22:04:21] You're hub has been spammed by Ruri_Ruri's Hub Flooder!
[22:04:21] DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!
[22:04:21] DUMB-ASSES
[22:04:21]
[22:04:21]
[22:04:21] You're hub has been spammed by Ruri_Ruri's Hub Flooder!
[22:04:21] crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap
[22:04:21] DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!
[22:04:21] DUMB-ASSES
[22:04:21]



LOL hmm
Title:
Post by: MrBuitenhuizenJunior on 18 February, 2004, 23:16:05
QuoteOriginally posted by Ruri_Ruri
works fine for me

lemme have a look at the code, ill re-up it if i find anything wrong with it

EDIT: it all seems just fine, you ppl may need the vb runtime files, or the mswinsock.ocx file in C:\WINDOWS\System32

it needs these files otherwise it wont work properly

Yep,

It works fine, but while unpacking it I get a error report from winrar that there is a corrupted file in it.
But it works... so np (for me than)

[NL]MrBuitenhuizen
Title: grrrr
Post by: (uk-kingdom)John on 18 February, 2004, 23:23:08
WTF?

DUMB-ASSES


You're hub has been spammed by Ruri_Ruri's Hub Flooder!
crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap
DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!
DUMB-ASSES


You're hub has been spammed by Ruri_Ruri's Hub Flooder!
crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap-crap
DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!-DIE!
DUMB-ASSES

His IP Info ;-)
*** ------------Information for User:Judyroo---------- ***
1. visit for Judyroo from 18/02/2004 22:01:57 to 18/02/2004 22:03:16 (IP=81.103.186.135)
*** ------------Information for IP:81.103.186.135---------- ***
Username:Judyroo = 1 times
*** ------------------------------------------ ***
IP currently used by:
none
*** ------------------------------------------ ***

Look WTF is the big idea here?
Title:
Post by: pHaTTy on 18 February, 2004, 23:24:04
well that aint his ip, his ip is 82.....
Title:
Post by: MrBuitenhuizenJunior on 18 February, 2004, 23:26:12
Yep me too Phatty:

[23:18] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopvv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopvv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopvv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopvv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopvv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopvv
[23:19] vkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
[23:19] vkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekop
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopvv
[23:19] kutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopkutekopv
[23:19] lul
[23:19] lullo


whaha

[NL]MrBuitenhuizen
Title:
Post by: psf8500 on 18 February, 2004, 23:30:29
I get an unpacking error aswell. The .exe works until you try scan someone then it crashes.

File not found: libbz2.dll

same file as in the unpacking error.

Can some1 pm me if they have this hub flooder? so i can try and add detection to CDM.
Title: hmmm
Post by: (uk-kingdom)John on 18 February, 2004, 23:31:29
This program must have leaked everywhere. A load of hubs being flooded now..

btw is this his ip? : *** ------------Information for User:Vash-The-Stampede---------- ***
- 1. visit for Vash-The-Stampede from 18/02/2004 21:17:00 to Still online (IP=82.42.59.235)
Title:
Post by: MrBuitenhuizenJunior on 18 February, 2004, 23:35:44
QuoteOriginally posted by psf8500
I get an unpacking error aswell. The .exe works until you try scan someone then it crashes.

File not found: libbz2.dll

same file as in the unpacking error.

Can some1 pm me if they have this hub flooder? so i can try and add detection to CDM.

Yep when searching I get the same eror

[NL]MrBuitenhuizen
Title:
Post by: Ruri_Ruri on 18 February, 2004, 23:36:37
settle down, im writing a program to stop them as quick as possible, its not exactly all that easy!

i figure, best way i can do it is, op the bot, reboot the hub, and make sure the bot is the first to log in. then as the users log in, it monitors their $MyINFO string, and if it matches one of the $MyINFO strings of a destroyer/flooder, it will kick and ban the IP

it wont get innocent users, because the $MyINFO strings of these bots are unique
Title:
Post by: psf8500 on 18 February, 2004, 23:40:07
if the $MyINFO strings are unique then the hub can detect it....

Whats unique about them?
Title:
Post by: pHaTTy on 19 February, 2004, 00:02:11
QuoteOriginally posted by (uk-kingdom)John
This program must have leaked everywhere. A load of hubs being flooded now..

btw is this his ip? : *** ------------Information for User:Vash-The-Stampede---------- ***
- 1. visit for Vash-The-Stampede from 18/02/2004 21:17:00 to Still online (IP=82.42.59.235)

hmmm no
Title:
Post by: kepp on 19 February, 2004, 00:22:15
well, maybe!!

82.42.16.0 - 82.42.245.255

this is bluyounder's range

May be a dynamic IP, but that dosen't matter, as soon as i see that *beeeeep* head in my hub, i will just report those IP Addresses i know and also write down the time and date when they were used, Then say bye bye to his connection!!

What i don't understand, Why do some of you want to try it?
And WHY THE H*LL SHARE IT?!?!?!?!?
 you should have kept it for yourself, then i wouln't care, but spreading it amongst 13 year old kids, and other nerds that enjoy spamming hubs is not fun!
Title:
Post by: plop on 19 February, 2004, 01:17:11
time 2 teach the flooders what flooding is. lol
bounch baby bounch.
from what i can see in this topic now it might be better 2 raise the amount of msg's it stores.
-- bounch the flood msg back 2 the sender.
-- paybacks a biotch
-- enjoy. plop


-- name of the bot.
Bot="deflood"

-- maximum msg's stored from the user
MaxStored = 3

-- the tables needed
msgTable= {}


function Main()
   frmHub:RegBot(Bot)
end

function DataArrival(user, data)
   if( strsub(data, 1, 1) == "<" ) then
      data = strsub(data, 1, (strlen(data)-1))
      local name = user.sName
      s,e,data = strfind(data, "^%b<>(.+)")
      local count = 0
      if msgTable[name] == nil then
         msgTable[name] = {}
         msgTable[name][1]=data
         user:SendData(Bot, msgTable[name]["1"])
         return
      else
         for i=1,MaxStored do
            if msgTable[name][i] then
               if data == msgTable[name][i] then
                  user:SendPM(Bot, "stop flooding yourself fool :"..data.."|")
                  count = 1
                  return 1
               end
            end
         end
      end
      if count == 0 then
         local count2 = 0
         for i=1,MaxStored do
            if msgTable[name][i] then
               count2 = count2 +1
            else
               break
            end
         end
         if count2 >= MaxStored then
            for i=1,MaxStored do
               if msgTable[name][i] ~= nil then
                  local tmp = i+1
                  if msgTable[name][tmp] then
                     msgTable[name][i] = msgTable[name][tmp]
                  else
                     msgTable[name][i]=data
                     break
                  end
               end
            end
         else
            count2 = count2 +1
            msgTable[name][count2]=data
         end
      end
   elseif(strsub(data, 1, 4) == "$To:") then
      data = strsub(data, 1, (strlen(data)-1))
      name = user.sName
      s,e,data = strfind(data, "$%b<>(.+)")
      if msgTable[name] == nil then
         msgTable[name] = {}
         msgTable[name][1]=data
         user:SendData(Bot, msgTable[name]["1"])
         return
      else
         for i=1,MaxStored do
            if msgTable[name][i] then
               if data == msgTable[name][i] then
                  user:SendPM(Bot, "stop flooding yourself fool :"..data.."|")
                  count = 1
                  return 1
               end
            end
         end
      end
      if count == 0 then
         local count2 = 0
         for i=1,MaxStored do
            if msgTable[name][i] then
               count2 = count2 +1
            else
               break
            end
         end
         if count2 >= MaxStored then
            for i=1,MaxStored do
               if msgTable[name][i] ~= nil then
                  local tmp = i+1
                  if msgTable[name][tmp] then
                     msgTable[name][i] = msgTable[name][tmp]
                  else
                     msgTable[name][i]=data
                     break
                  end
               end
            end
         else
            count2 = count2 +1
            msgTable[name][count2]=data
         end
      end
   end
end
plop

* damn i was sleepy, 1 table 2 much. lol
Title:
Post by: MrBuitenhuizenJunior on 19 February, 2004, 02:11:04
Hehe the description sounds like fun  :D
Thnx for posting it Plop!


[NL]MrBuitenhuizen
Title:
Post by: plop on 19 February, 2004, 03:28:12
it is fun indeed, it bounches the flood msg back 2 the sender so he floods himself, and filters mainchat. lol
should learn them not 2 flood.

missed a tiny thing on the pm part.
forgot 2 declare count = 0, shame on me.

-- bounch the flood msg back 2 the sender.
-- paybacks a biotch
-- enjoy. plop


-- name of the bot.
Bot="deflood"

-- maximum msg's stored from the user
MaxStored = 3

-- the tables needed
msgTable= {}


function Main()
   frmHub:RegBot(Bot)
end

function DataArrival(user, data)
   if( strsub(data, 1, 1) == "<" ) then
      data = strsub(data, 1, (strlen(data)-1))
      local name = user.sName
      s,e,data = strfind(data, "^%b<>(.+)")
      local count = 0
      if msgTable[name] == nil then
         msgTable[name] = {}
         msgTable[name][1]=data
         user:SendData(Bot, msgTable[name]["1"])
         return
      else
         for i=1,MaxStored do
            if msgTable[name][i] then
               if data == msgTable[name][i] then
                  user:SendPM(Bot, "stop flooding yourself fool :"..data.."|")
                  count = 1
                  return 1
               end
            end
         end
      end
      if count == 0 then
         local count2 = 0
         for i=1,MaxStored do
            if msgTable[name][i] then
               count2 = count2 +1
            else
               break
            end
         end
         if count2 >= MaxStored then
            for i=1,MaxStored do
               if msgTable[name][i] ~= nil then
                  local tmp = i+1
                  if msgTable[name][tmp] then
                     msgTable[name][i] = msgTable[name][tmp]
                  else
                     msgTable[name][i]=data
                     break
                  end
               end
            end
         else
            count2 = count2 +1
            msgTable[name][count2]=data
         end
      end
   elseif(strsub(data, 1, 4) == "$To:") then
      data = strsub(data, 1, (strlen(data)-1))
      local name = user.sName
      s,e,data = strfind(data, "$%b<>(.+)")
      local count = 0
      if msgTable[name] == nil then
         msgTable[name] = {}
         msgTable[name][1]=data
         user:SendData(Bot, msgTable[name]["1"])
         return
      else
         for i=1,MaxStored do
            if msgTable[name][i] then
               if data == msgTable[name][i] then
                  user:SendPM(Bot, "stop flooding yourself fool :"..data.."|")
                  count = 1
                  return 1
               end
            end
         end
      end
      if count == 0 then
         local count2 = 0
         for i=1,MaxStored do
            if msgTable[name][i] then
               count2 = count2 +1
            else
               break
            end
         end
         if count2 >= MaxStored then
            for i=1,MaxStored do
               if msgTable[name][i] ~= nil then
                  local tmp = i+1
                  if msgTable[name][tmp] then
                     msgTable[name][i] = msgTable[name][tmp]
                  else
                     msgTable[name][i]=data
                     break
                  end
               end
            end
         else
            count2 = count2 +1
            msgTable[name][count2]=data
         end
      end
   end
end
Title:
Post by: pHaTTy on 19 February, 2004, 05:35:10
Bounce  ?(
Title:
Post by: DoJIN on 19 February, 2004, 07:13:42
i know where all other users get the spammers and stuff

we had a user spam the download link all tru our hub :-\

ruri  wtf   what where u thinkin creatin this its only pissing ppl off
Title:
Post by: dReiska on 19 February, 2004, 09:14:06
Ruri: Please tell me what is unique with your flooders MyINFO's?

Desc. is same in all of them but anything else is just like any other DC-client sending MyINFO.

Desc: <++ V:0.306,M:P,H:3/0/0,S:3>


Ruri: It's really hard to believe that your bots just leaked. The GUI is made easy enough for any asshole to flood hubs. Besides if you were just experienting with those tools why did you hide orginal Kerberos (windows and such can be still raised by window handle to the top..)?

My opinion doesn't change:
 You are just a lame script kiddie.
Title: God Damn
Post by: RollTheDice on 19 February, 2004, 10:48:21
And some believe that kid name Ruri ?All hes prog is rewritten copys  ,code from proggers flooder ,hub destroyer ..GUI is new and some other things he just copy older flooder......and made these progs just for hub flood and destroy ...pityfull kid is all we gonna learn about him!!
Title: hmm
Post by: (uk-kingdom)John on 19 February, 2004, 14:36:53
hmm yep.. I have a screenshot of 1 of his bots or whatever they are with ruri_ruri hub destroyer as description.. my hub started to get as laggy as f*ck and the hub destroyers share changes a lot so was easily noticed when i only had 105 users in at the time and 10tb+ was a bit weird.. i'll post a link to pic later when i get back from college.. laterz ;)
Title:
Post by: wiper on 19 February, 2004, 14:54:16
Hehe

plzz dont tell ppl the name, dont want ppl finding it and using it ;)*
Title:
Post by: neechan on 19 February, 2004, 16:46:09
this is a perfect script .. appart from one thing ... it also floods the ops back with their kick msg's :(

can anyone edit it to stop doing this ?

thanks in advance
neechan
Title:
Post by: plop on 19 February, 2004, 17:22:16
QuoteOriginally posted by neechan
this is a perfect script .. appart from one thing ... it also floods the ops back with their kick msg's :(

can anyone edit it to stop doing this ?

thanks in advance
neechan
done.
-- bounch the flood msg back 2 the sender.
-- paybacks a biotch
-- enjoy. plop


-- name of the bot.
Bot="deflood"

-- maximum msg's stored from the user
MaxStored = 3

-- the tables needed
msgTable= {}


function Main()
   frmHub:RegBot(Bot)
end

function DataArrival(user, data)
   if( strsub(data, 1, 1) == "<" ) then
      if user.bOperator == nil then
         data = strsub(data, 1, (strlen(data)-1))
         local name = user.sName
         s,e,data = strfind(data, "^%b<>(.+)")
         local count = 0
         if msgTable[name] == nil then
            msgTable[name] = {}
            msgTable[name][1]=data
            user:SendData(Bot, msgTable[name]["1"])
            return
         else
            for i=1,MaxStored do
               if msgTable[name][i] then
                  if data == msgTable[name][i] then
                     user:SendPM(Bot, "stop flooding yourself fool :"..data.."|")
                     count = 1
                     return 1
                  end
               end
            end
         end
         if count == 0 then
            local count2 = 0
            for i=1,MaxStored do
               if msgTable[name][i] then
                  count2 = count2 +1
               else
                  break
               end
            end
            if count2 >= MaxStored then
               for i=1,MaxStored do
                  if msgTable[name][i] ~= nil then
                     local tmp = i+1
                     if msgTable[name][tmp] then
                        msgTable[name][i] = msgTable[name][tmp]
                     else
                        msgTable[name][i]=data
                        break
                     end
                  end
               end
            else
               count2 = count2 +1
               msgTable[name][count2]=data
            end
         end
      end
   elseif(strsub(data, 1, 4) == "$To:") then
      if user.bOperator == nil then
         data = strsub(data, 1, (strlen(data)-1))
         local name = user.sName
         s,e,data = strfind(data, "$%b<>(.+)")
         local count = 0
         if msgTable[name] == nil then
            msgTable[name] = {}
            msgTable[name][1]=data
            user:SendData(Bot, msgTable[name]["1"])
            return
         else
            for i=1,MaxStored do
               if msgTable[name][i] then
                  if data == msgTable[name][i] then
                     user:SendPM(Bot, "stop flooding yourself fool :"..data.."|")
                     count = 1
                     return 1
                  end
               end
            end
         end
         if count == 0 then
            local count2 = 0
            for i=1,MaxStored do
               if msgTable[name][i] then
                  count2 = count2 +1
               else
                  break
               end
            end
            if count2 >= MaxStored then
               for i=1,MaxStored do
                  if msgTable[name][i] ~= nil then
                     local tmp = i+1
                     if msgTable[name][tmp] then
                        msgTable[name][i] = msgTable[name][tmp]
                     else
                        msgTable[name][i]=data
                        break
                     end
                  end
               end
            else
               count2 = count2 +1
               msgTable[name][count2]=data
            end
         end
      end
   end
end
maby should also add a timer 2 reset the tables??
what do you folks think.

plop
Title:
Post by: pHaTTy on 19 February, 2004, 18:01:51
2 words 'client hacker'
Title:
Post by: NightLitch on 19 February, 2004, 18:14:13
Wouldn't it be possible to intergrate a check i DC++k CDM that checks for this Destroyers ???

I mean it does that on every other clients ??

What makes this one so special?

Just my idea....

/NL
Title:
Post by: neechan on 19 February, 2004, 18:34:09
thanks plop ... your a life saver  :D

keep up the good work

the timer idear sounds nice :)
Title:
Post by: psf8500 on 19 February, 2004, 18:52:16
QuoteWouldn't it be possible to intergrate a check i DC++k CDM that checks for this Destroyers ???

I mean it does that on every other clients ??

What makes this one so special?

Just my idea....

I did ask for someone to pm me if they had this flooder (or a link) so i could add detection..

No reply yet :(
Title:
Post by: pHaTTy on 19 February, 2004, 19:36:38
ok me and pur been flooding his hub lol. so far easiest way is to check description, if strfind Ruri_Ruri then ban user

cant seem to change description and thats all it has ;)

its not the one to worry about, theres someone else that has something much worse, its not the one thats flooding, it does not send txt to main........also refreshing userlist will clear them, attacking the buffer really........

it seems to flood the clients not the hub, my new client doesnt show them whatsoever
Title:
Post by: pHaTTy on 19 February, 2004, 19:58:44
u know sumit like (tired)


--//AntiRuri_Ruri by Phatty

Bot = "AntiRuri_Ruri"

function DataArrival(user,data)
if strsub(data, 1, 7) == "$MyINFO" then
if strfind(data,"Ruri_Ruri") then
user:Ban()
SendToAll(Bot,"Ruri Hub Destroyer banned!")
return 1
end
end
end

Title:
Post by: plop on 19 February, 2004, 20:09:40
now with timer.
-- bounch the flood msg back 2 the sender.
-- paybacks a biotch
-- enjoy. plop


-- name of the bot.
Bot="deflood"

-- maximum msg's stored from the user
MaxStored = 3

-- the tables needed
msgTable= {}

-- explain the script what seconds, minutes, hours and day's are
sec = 1000
min = 60 * sec
hour = 60 * min
day = 12 * hour

-- timer between table flushes
-- 10 * sec == 10 sec memory
-- 2 * hour == 2 hour memory
time = 10 * sec

function Main()
   frmHub:RegBot(Bot)
   SetTimer(time)
StartTimer()
end

function OnTimer()
   msgTable= nil
   msgTable= {}
end

function DataArrival(user, data)
   if( strsub(data, 1, 1) == "<" ) then
      if user.bOperator == nil then
         data = strsub(data, 1, (strlen(data)-1))
         local name = user.sName
         s,e,data = strfind(data, "^%b<>(.+)")
         local count = 0
         if msgTable[name] == nil then
            msgTable[name] = {}
            msgTable[name][1]=data
            user:SendData(Bot, msgTable[name]["1"])
            return
         else
            for i=1,MaxStored do
               if msgTable[name][i] then
                  if data == msgTable[name][i] then
                     user:SendPM(Bot, "stop flooding yourself fool :"..data.."|")
                     count = 1
                     return 1
                  end
               end
            end
         end
         if count == 0 then
            local count2 = 0
            for i=1,MaxStored do
               if msgTable[name][i] then
                  count2 = count2 +1
               else
                  break
               end
            end
            if count2 >= MaxStored then
               for i=1,MaxStored do
                  if msgTable[name][i] ~= nil then
                     local tmp = i+1
                     if msgTable[name][tmp] then
                        msgTable[name][i] = msgTable[name][tmp]
                     else
                        msgTable[name][i]=data
                        break
                     end
                  end
               end
            else
               count2 = count2 +1
               msgTable[name][count2]=data
            end
         end
      end
   elseif(strsub(data, 1, 4) == "$To:") then
      if user.bOperator == nil then
         data = strsub(data, 1, (strlen(data)-1))
         local name = user.sName
         s,e,data = strfind(data, "$%b<>(.+)")
         local count = 0
         if msgTable[name] == nil then
            msgTable[name] = {}
            msgTable[name][1]=data
            user:SendData(Bot, msgTable[name]["1"])
            return
         else
            for i=1,MaxStored do
               if msgTable[name][i] then
                  if data == msgTable[name][i] then
                     user:SendPM(Bot, "stop flooding yourself fool :"..data.."|")
                     count = 1
                     return 1
                  end
               end
            end
         end
         if count == 0 then
            local count2 = 0
            for i=1,MaxStored do
               if msgTable[name][i] then
                  count2 = count2 +1
               else
                  break
               end
            end
            if count2 >= MaxStored then
               for i=1,MaxStored do
                  if msgTable[name][i] ~= nil then
                     local tmp = i+1
                     if msgTable[name][tmp] then
                        msgTable[name][i] = msgTable[name][tmp]
                     else
                        msgTable[name][i]=data
                        break
                     end
                  end
               end
            else
               count2 = count2 +1
               msgTable[name][count2]=data
            end
         end
      end
   end
end
plop
Title:
Post by: pHaTTy on 19 February, 2004, 20:18:24
so whenever he updates the tag u can update the bot ;)


--//AntiRuri_Ruri v0.02 by Phatty

table = {

["Ruri_Ruri"]="Ruri Hub Destroyer banned!",

}

Bot = "AntiRuri_Ruri"

function DataArrival(user,data)
if strsub(data, 1, 7) == "$MyINFO" then
for i,v in table do
if strfind(data,i) then
user:Ban()
SendToAll(Bot,v)
return 1
end
end
end
end

Title:
Post by: wiper on 19 February, 2004, 20:33:29
Thanx (uk-kingdom)pH?tt?
works good
Title: yup
Post by: RollTheDice on 19 February, 2004, 21:58:47
Y-hub fixed,lol Ruris prog only give error anymore:)..i have copy if some need ...and i think Ptokax too?mean fixed?
Title:
Post by: psf8500 on 20 February, 2004, 00:15:08
*** DC++k CDM V2.84 - 22:46 19/02/2004 *** (http://www.ukdnb.dsl.pipex.com/dcpluspluskcdm/DC++k-CDM-v2.84.rar)

Fixed Multi hub kick.
Added an option to auto kick Ruri's hub flooders.



Simply kicks anyone with Ruri_Ruri in there description  :))
Title:
Post by: PPK on 20 February, 2004, 05:17:23
QuoteOriginally posted by RollTheDice
...and i think Ptokax too?mean fixed?
Not all Ruri progs related things fixed now ...
But no more crashing, and no more posibility to flood hub with MyINFO or chat flooding ;)
Title:
Post by: [NL]trucker on 20 February, 2004, 08:58:55
Plop

great script just one big request

could you add a log and a message to OP,s ?

log stores name and ip +time
Title:
Post by: plop on 20 February, 2004, 14:00:38
QuoteOriginally posted by [NL]trucker
Plop

great script just one big request

could you add a log and a message to OP,s ?

log stores name and ip +time
was actualy a small thing.
-- bounch the flood msg back 2 the sender.
-- paybacks a biotch
-- enjoy. plop


-- name of the bot.
Bot="deflood"

-- maximum msg's stored from the user
MaxStored = 3

-- the tables needed
msgTable= {}

-- explain the script what seconds, minutes, hours and day's are
sec = 1000
min = 60 * sec
hour = 60 * min
day = 12 * hour

-- timer between table flushes
-- 10 * sec == 10 sec memory
-- 2 * hour == 2 hour memory
time = 10 * sec

function Main()
   frmHub:RegBot(Bot)
   SetTimer(time)
StartTimer()
end

function OnTimer()
   msgTable= nil
   msgTable= {}
end

function DataArrival(user, data)
   if( strsub(data, 1, 1) == "<" ) then
      if user.bOperator == nil then
         data = strsub(data, 1, (strlen(data)-1))
         local name = user.sName
         s,e,data = strfind(data, "^%b<>(.+)")
         local count = 0
         if msgTable[name] == nil then
            msgTable[name] = {}
            msgTable[name][1]=data
            user:SendData(Bot, msgTable[name]["1"])
            return
         else
            for i=1,MaxStored do
               if msgTable[name][i] then
                  if data == msgTable[name][i] then
                     user:SendPM(Bot, "stop flooding yourself fool :"..data.."|")
                     StoreLog(user, data)
                     count = 1
                     return 1
                  end
               end
            end
         end
         if count == 0 then
            local count2 = 0
            for i=1,MaxStored do
               if msgTable[name][i] then
                  count2 = count2 +1
               else
                  break
               end
            end
            if count2 >= MaxStored then
               for i=1,MaxStored do
                  if msgTable[name][i] ~= nil then
                     local tmp = i+1
                     if msgTable[name][tmp] then
                        msgTable[name][i] = msgTable[name][tmp]
                     else
                        msgTable[name][i]=data
                        break
                     end
                  end
               end
            else
               count2 = count2 +1
               msgTable[name][count2]=data
            end
         end
      end
   elseif(strsub(data, 1, 4) == "$To:") then
      if user.bOperator == nil then
         data = strsub(data, 1, (strlen(data)-1))
         local name = user.sName
         s,e,data = strfind(data, "$%b<>(.+)")
         local count = 0
         if msgTable[name] == nil then
            msgTable[name] = {}
            msgTable[name][1]=data
            user:SendData(Bot, msgTable[name]["1"])
            return
         else
            for i=1,MaxStored do
               if msgTable[name][i] then
                  if data == msgTable[name][i] then
                     user:SendPM(Bot, "stop flooding yourself fool :"..data.."|")
                     StoreLog(user, data)
                     count = 1
                     return 1
                  end
               end
            end
         end
         if count == 0 then
            local count2 = 0
            for i=1,MaxStored do
               if msgTable[name][i] then
                  count2 = count2 +1
               else
                  break
               end
            end
            if count2 >= MaxStored then
               for i=1,MaxStored do
                  if msgTable[name][i] ~= nil then
                     local tmp = i+1
                     if msgTable[name][tmp] then
                        msgTable[name][i] = msgTable[name][tmp]
                     else
                        msgTable[name][i]=data
                        break
                     end
                  end
               end
            else
               count2 = count2 +1
               msgTable[name][count2]=data
            end
         end
      end
   end
end

function StoreLog(user, msg)
   appendto("logs/flood.log")
   msg = user.sName.." - "..date().." - "..msg
   SendPmToOps(Bot, msg)
   write(msg.."\n")
   writeto()
end
plop
Title:
Post by: NotRabidWombat on 20 February, 2004, 14:29:52
Actaully, that seems like a bad idea. Most broadband connections have a high download throttle, so the flooding probably won't do anything to the user. It could possibly bug down the hub. And this is a way of letting the flooder understand how they are being stopped. It's best to just sillently remove them.

P.S. - plop, your PM message box is full. I can not reply :-(

-NotRabidWombat
Title:
Post by: plop on 20 February, 2004, 15:11:35
QuoteOriginally posted by NotRabidWombat
Actaully, that seems like a bad idea. Most broadband connections have a high download throttle, so the flooding probably won't do anything to the user. It could possibly bug down the hub. And this is a way of letting the flooder understand how they are being stopped. It's best to just sillently remove them.
yea your right, allready thought of that myself but guessed many ppl liked this idea.
removing the pm from being send is a much better idea.
logging can also do damage 2 the hub, can be a lot of data written on a flood.
any flood is just a waste of bandwidth.
might be an idea 2 count the flood and send an abuse email automaticly.
just i'm not sure of how 2 do this.

QuoteOriginally posted by NotRabidWombat
P.S. - plop, your PM message box is full. I can not reply :-(
-NotRabidWombat
box is drained now. lol
was allready wondering why i wasn'r recieving any pm's the last day's (was nice and quiet tho. lol).

plop
Title:
Post by: [NL]trucker on 20 February, 2004, 18:38:03
plop

Quotefunction StoreLog(user, msg)
   appendto("logs/flood.log")
   msg = user.sName.." - "..date().." - "..msg
   SendPmToOps(Bot, msg)
   write(msg.."\n")
   writeto()

if i,m right it stores the messages also and that was not what i ment.

example:

userx  ip = has tried  flooding the hub at 12.10 on 20-02-2004. he was stopped and banned.

that should be logged and send to OP,s chat.

hope this is clearer;
i dont need to know the message he was sending to flood the hub
cause i can imagine this would create a giant log and stress on the hub.
Title:
Post by: plop on 20 February, 2004, 19:01:31
replace the StoreLog function for this 1.
function StoreLog(user, msg)
   appendto("logs/flood.log")
   msg = user.sName.." - "..user.sIp.." tryed 2 flood the hub on "....date().." he was stopped and banned."
   SendPmToOps(frmHub:GetOpChatName() , msg)
   write(msg.."\n")
   writeto()
end
if you want it 2 ban for it (bad idea in my eyes, better 2 kick incase it's a user doing it by accident) you need 2 add user:Ban() or user:Disconnect() just above the return 1's in DataArrival(user).

the line msg can hold anything you like, thats gone be writen 2 the log file.

plop.
Title:
Post by: [NL]trucker on 21 February, 2004, 18:35:19
plop

i get this error :

No syntax errors in the script.
Syntax error: expected;
  last token read: `"tryed to flood the hub on"' at line 144 in file `D:\==PTOTAX==\gekkobeta5\scripts\aanti-flood.lua'


i cant find an error can you?

-------------------------------------------------------------------

function StoreLog(user, msg)
   appendto("logs/flood.log")
   msg ="user.sName.." - "..user.sIp.." "tryed to flood the hub on" "....date().." he was stopped and kicked."
   SendPmToOps(frmHub:GetOpChatName() , msg)
   write(msg.."\n")
   writeto()
end

---------------------------------------------------------------------
Title:
Post by: [NL]trucker on 21 February, 2004, 18:40:51
this is what i have as total script

-----------------------------------------------------------------------

---------------------------------------------------------------------------------- bounch the flood msg back 2 the sender.
-- paybacks a biotch
-- enjoy. plop


-- name of the bot.
Bot="deflood"

-- maximum msg's stored from the user
MaxStored = 3

-- the tables needed
msgTable= {}

-- explain the script what seconds, minutes, hours and day's are
sec = 1000
min = 60 * sec
hour = 60 * min
day = 12 * hour

-- timer between table flushes
-- 10 * sec == 10 sec memory
-- 2 * hour == 2 hour memory
time = 10 * sec

function Main()
--   frmHub:RegBot(Bot)
   SetTimer(time)
   StartTimer()
end

function OnTimer()
   msgTable= nil
   msgTable= {}
end

function DataArrival(user, data)
   if( strsub(data, 1, 1) == "<" ) then
      if user.bOperator == nil then
         data = strsub(data, 1, (strlen(data)-1))
         local name = user.sName
         s,e,data = strfind(data, "^%b<>(.+)")
         local count = 0
         if msgTable[name] == nil then
            msgTable[name] = {}
            msgTable[name][1]=data
            user:SendData(Bot, msgTable[name]["1"])
            user:Disconnect()
            return
         else
            for i=1,MaxStored do
               if msgTable[name] then
                  if data == msgTable[name] then
                     user:SendPM(Bot, "stop flooding yourself fool :"..data.."|")
                     StoreLog(user, data)
                     count = 1
                     return 1
                  end
               end
            end
         end
         if count == 0 then
            local count2 = 0
            for i=1,MaxStored do
               if msgTable[name] then
                  count2 = count2 +1
               else
                  break
               end
            end
            if count2 >= MaxStored then
               for i=1,MaxStored do
                  if msgTable[name] ~= nil then
                     local tmp = i+1
                     if msgTable[name][tmp] then
                        msgTable[name] = msgTable[name][tmp]
                     else
                        msgTable[name]=data
                        break
                     end
                  end
               end
            else
               count2 = count2 +1
               msgTable[name][count2]=data
            end
         end
      end
   elseif(strsub(data, 1, 4) == "$To:") then
      if user.bOperator == nil then
         data = strsub(data, 1, (strlen(data)-1))
         local name = user.sName
         s,e,data = strfind(data, "$%b<>(.+)")
         local count = 0
         if msgTable[name] == nil then
            msgTable[name] = {}
            msgTable[name][1]=data
            user:SendData(Bot, msgTable[name]["1"])
            return
         else
            for i=1,MaxStored do
               if msgTable[name] then
                  if data == msgTable[name] then
                     user:SendPM(Bot, "stop flooding yourself fool :"..data.."|")
                     StoreLog(user, data)
                     count = 1
                     return 1
                  end
               end
            end
         end
         if count == 0 then
            local count2 = 0
            for i=1,MaxStored do
               if msgTable[name] then
                  count2 = count2 +1
               else
                  break
               end
            end
            if count2 >= MaxStored then
               for i=1,MaxStored do
                  if msgTable[name] ~= nil then
                     local tmp = i+1
                     if msgTable[name][tmp] then
                        msgTable[name] = msgTable[name][tmp]
                     else
                        msgTable[name]=data
                        break
                     end
                  end
               end
            else
               count2 = count2 +1
               msgTable[name][count2]=data
            end
         end
      end
   end
end

function StoreLog(user, msg)
   appendto("logs/flood.log")
   msg ="user.sName.." - "..user.sIp.." "tryed to flood the hub on" "....date().." he was stopped and kicked."
   SendPmToOps(frmHub:GetOpChatName() , msg)
   write(msg.."\n")
   writeto()
end

------------------------------------------------------------------------
Title:
Post by: Ruri_Ruri on 25 February, 2004, 00:52:49
ok for those who want them, i will give you these progs, but some parts of them wont work as intended.
they are for research and novelty purposes only.
if you do decided to use these on any hub for malicious purposes, you will get whats coming to you
Title:
Post by: [NL]trucker on 25 February, 2004, 08:44:01
??????

howcome ruri that you have a sudden change of mind?

and i thought that they were allready used for bringing or trying to bring hus down?

Quoteif you do decided to use these on any hub for malicious purposes, you will get whats coming to you

so what else will they get?
Title: wot?
Post by: RollTheDice on 25 February, 2004, 09:09:33
Nuthin' work on those progs and its really wasting of time share em...just crap ...push shift+del its the best choice for all.
Title:
Post by: Guibs on 25 February, 2004, 09:36:30
Ruri_Ruri,,
what's the fun to make such program,... ?

If they're bugguy,.. please stop their development, & try to do sometthing else with your time,... ;)

and about:
> if you do decided to use these on any hub for malicious purposes, you will get whats coming to you <

I don't think user who will try to use such program has nice purposes,... stop lying to yourself,....

l8tr,,
Title:
Post by: pHaTTy on 25 February, 2004, 10:29:01
QuoteOriginally posted by Ruri_Ruri
ok for those who want them, i will give you these progs, but some parts of them wont work as intended.
they are for research and novelty purposes only.
if you do decided to use these on any hub for malicious purposes, you will get whats coming to you

nicely said Ruri, starting to like ur attitude to all this eheh

also i think he could mean they have something that will disallow (edited) so they dont work in flooding hubs, at least i hope thats what he means eheh
Title:
Post by: plop on 07 March, 2004, 23:12:36
QuoteOriginally posted by [NL]trucker
plop

i get this error :

No syntax errors in the script.
Syntax error: expected;
  last token read: `"tryed to flood the hub on"' at line 144 in file `D:\==PTOTAX==\gekkobeta5\scripts\aanti-flood.lua'


i cant find an error can you?

-------------------------------------------------------------------

function StoreLog(user, msg)
   appendto("logs/flood.log")
   msg ="user.sName.." - "..user.sIp.." "tryed to flood the hub on" "....date().." he was stopped and kicked."
   SendPmToOps(frmHub:GetOpChatName() , msg)
   write(msg.."\n")
   writeto()
end

---------------------------------------------------------------------
check this line.
msg ="user.sName.." - "..user.sIp.." "tryed to flood the hub on" "....date().." he was stopped and kicked." just after flood is the error, and 1 before tryed.
"string"..somevallue.."another string"
you see the dot's here between the things?
that should be enough 2 find the bug yourself.

plop
Title:
Post by: plop on 08 March, 2004, 14:51:54
updated.
it now ban's after x times (warns the user).
the log looks better/more human readable.
inserted phatty's ban on descriptions.
inserted chilla's ban on myinfo's.
notification 2 the ops can be set from own window or the opchat.
-- bounch the flood msg back 2 the sender.
-- now bans after x times (user is warned).
-- added phatty's ban on description.
-- added chilla's script against the myInfo flooder.
-- added choise on were 2 show the msg's 2 the ops (own window or opchat).
-- paybacks a biotch!!
-- enjoy. plop


-- name of the bot.
Bot="deflood"

-- maximum msg's stored from the user
MaxStored = 3

-- maximum amount of warnings before it bans for chat flooding
Max = 3

-- location/name of the log file
file = "logs/flood.log"

-- the tables needed
msgTable= {}

-- the table for banning by description (["search string"] = number)
badTable = { ["Ruri_Ruri"]=1 }

-- name of the opchat so the output of this script shows up there instead of it's own window
-- comment this for own window (aka place -- before it like this text has)
opchat = "-OPChat-"  -- fill in the name here if you use a scripted opchat
--opchat = frmHub:GetOpChatName()     -- uncomment this and make the above a comment if you use the ptokax build-in opchat

-- explain the script what seconds, minutes, hours and day's are
sec = 1000
min = 60 * sec
hour = 60 * min
day = 12 * hour

-- timer between table flushes
-- 10 * sec == 10 sec memory
-- 2 * hour == 2 hour memory
time = 10 * sec

function Main()
   frmHub:RegBot(Bot)
   SetTimer(time)
StartTimer()
end

function OnTimer()
   msgTable= nil
   msgTable= {}
end

function DataArrival(user, data)
   if( strsub(data, 1, 1) == "<" ) then
      if user.bOperator == nil then
         data = strsub(data, 1, (strlen(data)-1))
         local name = user.sName
         s,e,data = strfind(data, "^%b<>(.+)")
         local count = 0
         if msgTable[name] == nil then
            msgTable[name] = {}
            msgTable[name][1]=data
            return
         else
            for i=1,MaxStored do
               if msgTable[name][i] then
                  if data == msgTable[name][i] then
                     if msgTable[name]["count"] == nil then
                        user:SendPM(Bot, "Stop flooding you fool :"..data.."|")
                        user:SendPM(Bot, "This is your 1st warning. After "..Max.." you will be banned!!|")
                        msgTable[name]["count"]=1
                        msg = user.sName.." - "..date().." - flood warning number: 1. msg was: "..data
                        StoreLog(user, msg)
                        count = 1
                        return 1
                     else
                        msgTable[name]["count"]=msgTable[name]["count"] +1
                        if msgTable[name]["count"] >= Max then
                           user:SendPM(Bot, "You have been warned!! You are now banned for flooding the hub!!")
                           msg = user.sName.." - "..date().." - now banned for flooding. msg was: "..data
                           StoreLog(user, msg)
                           msgTable[name] = nil
                           --user:Disconnect()
                           user:Ban()
                           return 1
                        else
                           user:SendPM(Bot, "This is warning number "..msgTable[name]["count"]..". After "..Max.." you will be banned!!|")
                           msg = user.sName.." - "..date().." - flood warning number: "..msgTable[name]["count"]..". msg was: "..data
                           StoreLog(user, msg)
                           return 1
                        end
                     end
                  end
               end
            end
         end
         if count == 0 then
            local count2 = 0
            for i=1,MaxStored do
               if msgTable[name][i] then
                  count2 = count2 +1
               else
                  break
               end
            end
            if count2 >= MaxStored then
               for i=1,MaxStored do
                  if msgTable[name][i] ~= nil then
                     local tmp = i+1
                     if msgTable[name][tmp] then
                        msgTable[name][i] = msgTable[name][tmp]
                     else
                        msgTable[name][i]=data
                        break
                     end
                  end
               end
            else
               count2 = count2 +1
               msgTable[name][count2]=data
            end
         end
      end
   elseif(strsub(data, 1, 4) == "$To:") then
      if user.bOperator == nil then
         data = strsub(data, 1, (strlen(data)-1))
         local name = user.sName
         s,e,data = strfind(data, "$%b<>(.+)")
         local count = 0
         if msgTable[name] == nil then
            msgTable[name] = {}
            msgTable[name][1]=data
            user:SendData(Bot, msgTable[name]["1"])
            return
         else
            for i=1,MaxStored do
               if msgTable[name][i] then
                  if data == msgTable[name][i] then
                     if msgTable[name]["count"] == nil then
                        user:SendPM(Bot, "Stop flooding you fool :"..data.."|")
                        user:SendPM(Bot, "This is your 1st warning. after "..Max.." you will be banned!!|")
                        msgTable[name]["count"]=1
                        msg = user.sName.." - "..date().." - flood warning number: 1. msg was: "..data
                        StoreLog(user, msg)
                        count = 1
                        return 1
                     else
                        msgTable[name]["count"]=msgTable[name]["count"] +1
                        if msgTable[name]["count"] >= Max then
                           user:SendPM(Bot, "You have been warned!! You are now banned for flooding the hub!!")
                           msg = user.sName.." - "..date().." - now banned for flooding. msg was: "..data
                           StoreLog(user, msg)
                           msgTable[name] = nil
                           --user:Disconnect()
                           user:Ban()
                           return 1
                        else
                           user:SendPM(Bot, "This is warning number "..msgTable[name]["count"]..". After "..Max.." you will be banned!!|")
                           msg = user.sName.." - "..date().." - flood warning number: "..msgTable[name]["count"]..". msg was: "..data
                           StoreLog(user, msg)
                           return 1
                        end
                     end
                  end
               end
            end
         end
         if count == 0 then
            local count2 = 0
            for i=1,MaxStored do
               if msgTable[name][i] then
                  count2 = count2 +1
               else
                  break
               end
            end
            if count2 >= MaxStored then
               for i=1,MaxStored do
                  if msgTable[name][i] ~= nil then
                     local tmp = i+1
                     if msgTable[name][tmp] then
                        msgTable[name][i] = msgTable[name][tmp]
                     else
                        msgTable[name][i]=data
                        break
                     end
                  end
               end
            else
               count2 = count2 +1
               msgTable[name][count2]=data
            end
         end
      end
   elseif strsub(data, 1, 7) == "$MyINFO" then
      local _,_,nick = strfind(data,"^%$MyINFO %$ALL (%S+)")
if (not nick) or (nick ~= user.sName) then
         user:SendPM(Bot, "You are now banned on suspision of using a hub flooder!!|")
         msg = user.sName.." - "..date().." - banned for using a hub flooder!! (myInfo version)"
         StoreLog(user, msg)
--user:Disconnect()
         user:Ban()
         return 1
end
for i,v in badTable do
if strfind(data,i) then
            user:SendPM(Bot, "You are now banned on suspision of using a hub flooder!!|")
            msg = user.sName.." - "..date().." - banned for using a hub flooder!! (banned on description)"
            StoreLog(user, msg)
            --user:Disconnect()
user:Ban()
return 1
end
end
end
end

function StoreLog(user, msg)
   appendto(file)
   if opchat then
      SendPmToOps(opchat, msg.."|")
   else
      SendPmToOps(Bot, msg.."|")
   end
   write(msg.."\n")
   writeto()
   msg = nil
end
plop
Title:
Post by: [NL]trucker on 08 March, 2004, 18:08:16
plop

thnx for the script i,m testing it now :-))
Title:
Post by: Ruri_Ruri on 08 March, 2004, 23:00:30
erm.... bear in mind they are bots and ignore everything incoming (connections, msgs etc)

besides, DC++ moves quickly, my progs will be outdated by summer, and seeing as i couldnt be arsed updating or making more, whats the point

but erm yeh, i guess scripts are a good idea, but some may not work??

n remember im not the one doin this anymore, im too busy with a girl, work and college.

peace \oo/
Title:
Post by: nErBoS on 08 March, 2004, 23:21:21
Hi,

Lets hope you start to use your knwonladge for helping people and good instead of other things.

Best regards, nErBoS
Title:
Post by: plop on 09 March, 2004, 12:28:00
QuoteOriginally posted by Ruri_Ruri
erm.... bear in mind they are bots and ignore everything incoming (connections, msgs etc)

besides, DC++ moves quickly, my progs will be outdated by summer, and seeing as i couldnt be arsed updating or making more, whats the point

but erm yeh, i guess scripts are a good idea, but some may not work??

n remember im not the one doin this anymore, im too busy with a girl, work and college.

peace \oo/
the pm's are not ment for your bot's, there for normal humans who do it manualy.
just 2 be friendly, but on the description and myinfo's it's indeed pretty useless.
and as long as hub's/clients can't do it we have 2 stick with scripts 2 fix it.
rob(ot)wars. lol
had fun making the anti chat flood part so you won't hear me complain (just a shame things you made leaked out).

plop
Title:
Post by: (=CyberPimp=) on 17 April, 2004, 15:59:44
I?m useing this script and Robocop 7, do I need this script or does Robocop handle it. I need a good flood protection, what?s the best one.
I think this script has errors,  I?m useing 9 scripts :o) and hard to tell witch one since PtokaX doesn?t say what script has done the error. But i?m 90% sure thats this one. It can be error free for day?s before it comes with this error.
Well sould I throw this script and let Robocop handle it or what?
Title:
Post by: pHaTTy on 17 April, 2004, 17:25:53
QuoteOriginally posted by Ruri_Ruri
erm.... bear in mind they are bots and ignore everything incoming (connections, msgs etc)

besides, DC++ moves quickly, my progs will be outdated by summer, and seeing as i couldnt be arsed updating or making more, whats the point

but erm yeh, i guess scripts are a good idea, but some may not work??

n remember im not the one doin this anymore, im too busy with a girl, work and college.

peace \oo/

hmm well the prog will ignore the connections but they are still made, and the data is still passed to the client beause ur still connected, because vb is so stupid and slow, it crashes ur own comp lol.....adn the best way to stop em is to make them, so just as well ya did, ives ppl timeto get one step ahead b4 somene does more then just flood hubs =)
Title:
Post by: plop on 17 April, 2004, 18:47:41
QuoteOriginally posted by (=CyberPimp=)
I?m useing this script and Robocop 7, do I need this script or does Robocop handle it. I need a good flood protection, what?s the best one.
I think this script has errors,  I?m useing 9 scripts :o) and hard to tell witch one since PtokaX doesn?t say what script has done the error. But i?m 90% sure thats this one. It can be error free for day?s before it comes with this error.
Well sould I throw this script and let Robocop handle it or what?
on my website you can find newer versions of the deflood script + an experimental 2.0 version (buggy).
done some testing with flooders 2gether with trucker, the result was for me personaly very good but not really for trucker.
don't know how the latest robocop handles it but after testing we found out that the scripts trucker was running didn't protect 2 good against flooding.
my a.i. on the other hand passed all the tests, not a single flooder worked (running deflood 2 ban ruri_ruri nothing more), none of them could enter my hub.
but more tests are needed on all the other script packages as we haven't tryed them all.

plop
Title:
Post by: uffetjur on 17 May, 2004, 00:28:51
done some logging in my hub:



 30  -  10/04/04 at 23:06:29     User: K-N-U-C-K-L-E-S     IP: 82.42.19.65     Logged: OFF
 31  -  10/04/04 at 23:06:23     User: K-N-U-C-K-L-E-S     IP: 82.42.19.65     Logged: ON


   1  -  10/04/04 at 23:07:53     User: K-N-U-C-K-L-E-S     Logged: ON
   2  -  07/04/04 at 22:02:54     User: francounamerican     Logged: OFF
   3  -  07/04/04 at 17:16:52     User: Ruri     Logged: OFF
   4  -  07/04/04 at 16:54:30     User: Ruri     Logged: ON


<[B?]Logg?r>    ------  IP LOGINFO : "82.42.20.77"  ------

   1  -  28/04/04 at 12:36:13     User: O-M-E-G-A!     Logged: OFF
   2  -  28/04/04 at 12:32:20     User: TheHangingGarden     Logged: OFF
   3  -  28/04/04 at 12:24:49     User: O-M-E-G-A~     Logged: OFF
   4  -  28/04/04 at 12:24:17     User: O-M-E-G-A~     Logged: ON
   5  -  28/04/04 at 12:24:07     User: O-M-E-G-A!     Logged: ON
   6  -  28/04/04 at 12:23:18     User: TheHangingGarden     Logged: ON


<[B?]Logg?r>    ------  IP LOGINFO : "82.42.18.213"  ------

   1  -  29/04/04 at 02:09:10     User: Derranged     Logged: OFF
   2  -  29/04/04 at 01:51:49     User: O-M-E-G-A     Logged: OFF
   3  -  29/04/04 at 01:50:33     User: O-M-E-G-A     Logged: ON
   4  -  29/04/04 at 01:50:03     User: Derranged     Logged: ON


<[B?]Logg?r>    ------  IP LOGINFO : "82.39.131.24"  ------

   1  -  29/04/04 at 22:03:22     User: peteski     Logged: OFF
   2  -  29/04/04 at 21:01:04     User: peteski     Logged: ON
   3  -  29/04/04 at 17:49:22     User: peteski     Logged: OFF
   4  -  26/04/04 at 23:39:49     User: peteski     Logged: OFF
   5  -  26/04/04 at 23:37:15     User: peteski     Logged: ON
   6  -  26/04/04 at 23:16:48     User: peteski     Logged: OFF
   7  -  26/04/04 at 20:48:35     User: peteski     Logged: ON
   8  -  26/04/04 at 20:38:55     User: peteski     Logged: ON
   9  -  26/04/04 at 19:45:07     User: peteski     Logged: OFF
   10  -  26/04/04 at 19:43:05     User: peteski     Logged: ON


looks as tables isnt complete!, flooding stopped after banning ip range in firewall
Title:
Post by: plop on 17 May, 2004, 01:52:26
QuoteOriginally posted by uffetjur
looks as tables isnt complete!, flooding stopped after banning ip range in firewall
which version of deflood ??

plop
Title:
Post by: Optimus on 17 May, 2004, 13:24:35
Hi people plop is right RoboCop doesn't have any Flood-Protection buildin. So please use plops deflood script. It's a verry good 1.

Peace Opti ;)
Title:
Post by: uffetjur on 17 May, 2004, 14:17:44
dl'd the latest yesterday table doesnt contain K-N-U-C-K-L-E-S

but still easiest to block blue beynders ip-range

and dont think ruri is so innocent as he says ... maby scared
Title: spam from deflood bot
Post by: uffetjur on 17 May, 2004, 14:51:56
tried the deflod bot now, only resulting in a uge spamming of op-chat: something is weird... running ptokax 3.3.0 and RC7.0a

[14:48] <[B?]Op-ToW?r> (SWE)-(Chello)-(Elias) - 05/17/04 14:48:05 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> UlisFfLAk[xCA[g - 05/17/04 14:48:05 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> oulalalala - 05/17/04 14:48:05 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> DUMPF - 05/17/04 14:48:06 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> ringorama - 05/17/04 14:48:06 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> Shuya - 05/17/04 14:48:08 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> [TELIA]rocso - 05/17/04 14:48:11 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> Fish14.1 - 05/17/04 14:48:11 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> [Telia]robgun - 05/17/04 14:48:11 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> skunken - 05/17/04 14:48:11 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> nino - 05/17/04 14:48:13 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> Bond - 05/17/04 14:48:14 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> robsssssssss - 05/17/04 14:48:16 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> [Telia]robgun - 05/17/04 14:48:18 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> ruff - 05/17/04 14:48:18 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> dzem - 05/17/04 14:48:18 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> Fish14.1 - 05/17/04 14:48:19 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> Bochnik - 05/17/04 14:48:19 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> ASdru - 05/17/04 14:48:19 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> DUMPF - 05/17/04 14:48:19 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> skunken - 05/17/04 14:48:19 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> [Cz256kbit]Mango - 05/17/04 14:48:19 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> oulalalala - 05/17/04 14:48:20 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> Matipsv - 05/17/04 14:48:21 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> [Telia]robgun - 05/17/04 14:48:21 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> Fish14.1 - 05/17/04 14:48:22 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> XeRoXeR - 05/17/04 14:48:22 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> ruff - 05/17/04 14:48:22 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> robsssssssss - 05/17/04 14:48:22 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> skunken - 05/17/04 14:48:23 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> ASdru - 05/17/04 14:48:24 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> (ADSL)CR250 - 05/17/04 14:48:24 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> [Telia]robgun - 05/17/04 14:48:24 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> oulalalala - 05/17/04 14:48:24 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> Fonie - 05/17/04 14:48:25 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> ringorama - 05/17/04 14:48:25 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> nino - 05/17/04 14:48:26 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> robsssssssss - 05/17/04 14:48:26 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> dzem - 05/17/04 14:48:27 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> (ADSL)CR250 - 05/17/04 14:48:27 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> Bengan09 - 05/17/04 14:48:27 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> Fonie - 05/17/04 14:48:28 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> ASdru - 05/17/04 14:48:28 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> Bond - 05/17/04 14:48:28 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> DUMPF - 05/17/04 14:48:28 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> ruff - 05/17/04 14:48:28 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> skunken - 05/17/04 14:48:28 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> oulalalala - 05/17/04 14:48:28 - banned for using a hub flooder!! (banned on description)
[14:48] <[B?]Op-ToW?r> dickzxilla8454 - 05/17/04 14:48:29 - banned for using a hub flooder!! (banned on description)
Title:
Post by: plop on 17 May, 2004, 18:37:26
sorry something went wrong when i re-generated the pages.
forgot 2 copy deflood 2.0 and 3.0 to my local webserver.
thats why only version 1.0 showed up on my site.
grab 3.0 and read the header on how 2 change the disconnect 2 a ban.

plop
Title:
Post by: uffetjur on 17 May, 2004, 23:33:52
Thanks, now it seems to work as it should

Nice done!
Title:
Post by: plop on 18 May, 2004, 00:07:46
QuoteOriginally posted by uffetjur
Thanks, now it seems to work as it should

Nice done!
thx.

plop
Title:
Post by: uffetjur on 24 May, 2004, 11:06:05
Getting errors from latest version, deflood4.0.lua


Syntax error: bad argument #1 to `strfind' (string expected, got nil)
stack traceback:
   1:  function `strfind' [C]
   2:  function `DataArrival' at line 184 [file `HUB\scripts\deflood4.0.lua']


running ptoka 3.3.0 15:25
and robocop 7.0a
Title:
Post by: plop on 24 May, 2004, 11:10:52
QuoteOriginally posted by uffetjur
Getting errors from latest version, deflood4.0.lua


Syntax error: bad argument #1 to `strfind' (string expected, got nil)
stack traceback:
   1:  function `strfind' [C]
   2:  function `DataArrival' at line 184 [file `HUB\scripts\deflood4.0.lua']


running ptoka 3.3.0 15:25
and robocop 7.0a
redownload version 4.0.
you'll find that you then actualy downloaded version 4.1.

plop
Title:
Post by: Krissi on 11 June, 2004, 00:36:43
Where can i get the hub destroyer?
Title:
Post by: QuikThinker on 11 June, 2004, 01:00:02
Ask Plop 4 a free trial!  :D
Title:
Post by: pHaTTy on 14 June, 2004, 10:10:06
QuoteOriginally posted by Krissi
Where can i get the hub destroyer?

why?
Title:
Post by: Ruri_Ruri on 14 June, 2004, 20:56:15
i really wish you people would stop asking for them! its like asking bin laden to give you his terroist plans! BAKA'S i say!!!!!!!
Title:
Post by: pHaTTy on 14 June, 2004, 21:41:45
QuoteOriginally posted by Ruri_Ruri
i really wish you people would stop asking for them! its like asking bin laden to give you his terroist plans! BAKA'S i say!!!!!!!

lol and what plans wud that be?
Title:
Post by: Ruri_Ruri on 14 June, 2004, 22:28:02
QuoteOriginally posted by Mutor
whats a terroist ?

I hope you code better than you spell. :P

nopr... hhhahhhahaaa lool :P
Title:
Post by: plop on 17 June, 2004, 03:03:11
deflood 4.2 is on my site.
not much changed, just some optimization.
it kills the chat flooders a bit faster.

plop
Title:
Post by: QuikThinker on 17 June, 2004, 03:12:26
Always welcome!  :D
Title: Traced
Post by: uffetjur on 24 June, 2004, 19:30:47
I traced all known hubflooders feel free to use the info!
Title:
Post by: plop on 24 June, 2004, 19:56:44
QuoteOriginally posted by uffetjur
I traced all known hubflooders feel free to use the info!
many of those flooders are wide spread on dc.
there isn't anything weird and doesn't proove who made them.

plop
Title:
Post by: Ruri_Ruri on 24 June, 2004, 21:50:57
im not with them anymore, i used to be a long long time ago, but i dont write progs for them. TK is just an asshole!
Pacman is an op there, and thats it
Title:
Post by: HNJ on 24 June, 2004, 23:05:27
hmmm well let's get one thing straight. Don't fuck with neko, and another thing, you think it's just tk, pacman, and ruri who have stuff like these? you're stupid to say the least. and second, it's not neko who has been attacking these hubs lately, so back the fuck off.
Title:
Post by: QuikThinker on 24 June, 2004, 23:37:34
I think we've all had enuff of hub flooders/destroyers recently so let's all just settle our beefs & move on.
Title:
Post by: Ruri_Ruri on 25 June, 2004, 00:08:52
already have done :P

im working on a client on my own, and a hubsoft with Meka][Meka :)
Title:
Post by: HNJ on 25 June, 2004, 01:13:57
look, here is something you need to understand, hub flooding and stuff will never stop, no matter how much you bitch. You need to be a good hub owner and deal with the problem at hand. If you need help with that, just ask for it don't complain, there are always people who would be willing to help out.
Title:
Post by: TK on 25 June, 2004, 04:22:20
lmfao. ... Dude.. Ruri..haha.. My name was mentioned first, I own.  :D  First off, uffetdjr or whatever the fuck your name is.. What hub do you own? Second, ahahah Ruri.. pwnt..  :D :D :D .. Imagine that.. tk on the internet.. I'd like to thank all you fuckers out there that have shitty ass hub softwares that allow bots to come in and anal rape the hub, then I'd like to thank Ruri, because without him, I would have been nothing. Now,  to you Mr. uffetdjr, kiss my ass :P.. Once I remember what your IP was, I'll drop by your hub and say hello ;;).. Oh yeah, don't fuck with neko, that HNJ dude will fuck you up for real. xP He's mah leet haxxoring soulmate.. Anyways, this is great.. You have my email, drop me your response to this reply, uffetderwhatever.  
                                                                           -Thomas
Title:
Post by: plop on 25 June, 2004, 05:41:13
QuoteOriginally posted by HNJ
look, here is something you need to understand, hub flooding and stuff will never stop, no matter how much you bitch. You need to be a good hub owner and deal with the problem at hand. If you need help with that, just ask for it don't complain, there are always people who would be willing to help out.
true, there will always be sutch pattatic ppl who try 2 flood hub's from others.
even if deflood filters them it won't stop them from using them.
but i'm loving it 2 add support for new flooder's 2 deflood.

@ every1: stop this fighting, do that somewhere else.
this topic is 2 warn ppl about new flooders and scripts 2 filter them.

plop
Title:
Post by: uffetjur on 25 June, 2004, 09:51:35
Ill stop the fight, NP with me, tey cant do anything using proxy anyway.  Was in Neko4 Yesterday saw your nick there Ruri_ruri thats why i react and I got proof  that  Pacman Op in same hub using your hubflooder and spam hubs using my ops nicks thats why im pissed...
but i'll stop it and hope all will come to en end

Plop, best of all was if you did a script who stopped user from using proxy for false ip's most of the flooders use that kinda connection the rest is just stupid kids
Title:
Post by: Cypher on 25 June, 2004, 10:47:52
Using a fake tag gets past a script that blocks mode 5 (proxy) ;).. At least people that make hub flooders/destroyers give scripters something to work on and improve on the scripts to block the flooders.  8)
Title:
Post by: Pacman on 25 June, 2004, 14:43:51
loool,
its not really possible to block all proxies because theres just so many, i have a list of thousands, maybe you did something to annoy those attackers... :p

and besides that hub killers are more like novely tools, just to mess around with, its not exactly hard to do a syn flood on your ip now is it?

so when you bitch about people attacking you think... it could be much worse and im still waiting for that attack from E.B.......
Title: well Pacman
Post by: uffetjur on 25 June, 2004, 16:51:46
that is something u cant do us?ng proxy
and a fast look at your info tag "team ?lite" and comparing that to the table in plops excellent script tells a lot doesnt it...

and remember i still got your original IP

this is my last post regarding flooders, did one thing good, brought u out to light!

and remember never start a war u cant win!
Title:
Post by: Pacman on 25 June, 2004, 18:52:40
lol, of course i can syn flood you using proxies, and you have my old ip not my new one..... and who actually started this war eh? think about it and then answer me....

Quoteand remember never start a war u cant win!

the wars only just starting...
Title:
Post by: Herodes on 26 June, 2004, 01:46:37
Hey all you low-lives ... WAKE UP .. !No War! .. Coffee always wins ....

Any how I believe in any sort of war there's death in both sides ...
in this case your networks will die ...

who is the winner ??(

Your r going way out of the target of this board
pls take ur trouble elsewhere ... U just know how to code .. there are many that can do that ...


So full of  ...
Title:
Post by: HNJ on 26 June, 2004, 15:45:15
well ... all i have to say is ....... BAAAAAAAAAAAAAAAHAHAHAHAHAHAHAHAHAHAAAAA!!!!

pacman is very right. If we just wanted to waste your hubs, mod syn flooding would be teh way to go. But we do enjoy thw whole coding and troubleshooting thing. :P That's one of the joys of progging, setting a goal and reaching it. And hub flooding is indeed a good goal. 1. It teaches both the proggers and hub owners about network security, and how fast it can become obsolete. 2. It teaches proggers and hub owners how to adapt when needed to reach their goals.
3. Now you have to be honest, but you know it feels good when you finally got that new flooder or deflood to work :P
You know your proud about it.

Oh and one small point before i get bored and shut up again.

Think of this, had people like us not made hub flooders and such and dc had no protection, it would have just been a matter of time before someone with a badass net conn like an oc conn came along and made a basic flooder and raped the ENTIRE dc network. So in theory we are protecting you from worse people out there :P
Title:
Post by: NightLitch on 26 June, 2004, 16:12:52
QuoteOriginally posted by HNJ
Think of this, had people like us not made hub flooders and such and dc had no protection, it would have just been a matter of time before someone with a badass net conn like an oc conn came along and made a basic flooder and raped the ENTIRE dc network. So in theory we are protecting you from worse people out there :P

True. BUT, why not try those Flooders on your own hubs instead of f**ing with others... Is it so FUN getting ppl to be angry at the guys that flooding !?

All flooders is just childish behavior... PLZ grow UP!!!

Where do you all wanna come with this Thread of Discussion !? War ??? This is lame... Why not Create more Hubsoft that is stable then trying destry the ones out there !?!?

This suck BIG TIME....

/NL
Title:
Post by: HNJ on 26 June, 2004, 16:27:28
I do test them in my own hub :P But i also keep them around for people that decide to fuck with my hub and my users. It's a nice way to get people to not spam in your hub and things like that. Cuz things like kicking nad banning make no difference anymore. They keep coming back, so you take out there hub and make sure the hub owner knows why. And it's a safe bet that the hub owner will try and stop that fucker from doing it again. Or you could juct attack the user directly and knock him offline :P

But i do agree that random and pointless flooding is stupid and childish. Oh and nightlitch, i need to speak with you about your new bot Thor ^_^
Title:
Post by: DrWorm on 17 July, 2004, 18:12:39
Where I find a Ruri_Ruri software?

------------------------------------------------------------------------

(--- HellZone ---)
Title:
Post by: Pacman on 17 July, 2004, 18:16:46
you need to hop around naked on one foot :D

just joking :D

all our software is private, if you want a copy youll need to fond someone who will leak it or ask ruri
but i doubt youll get a copy :P
Title:
Post by: plop on 17 July, 2004, 19:09:51
QuoteOriginally posted by HNJ
I do test them in my own hub :P But i also keep them around for people that decide to fuck with my hub and my users. It's a nice way to get people to not spam in your hub and things like that. Cuz things like kicking nad banning make no difference anymore. They keep coming back, so you take out there hub and make sure the hub owner knows why. And it's a safe bet that the hub owner will try and stop that fucker from doing it again. Or you could juct attack the user directly and knock him offline :P

or the hub owner comes back 2 do the same 2 you, now you have a nice hub war.
don't do 2 another what you don't want 2 see happen 2 yourself.
the only way you can win this is 2 protect your hub and leave the flooder alone.
he's gone be bored 2 dead because his flooder doesn't work anymore.

plop
Title:
Post by: Pacman on 17 July, 2004, 19:13:41
Quotehe's gone be bored 2 dead because his flooder doesn't work anymore

the old ones you have on your website dont work but the newer ones that havent been leaked out still do :p
Title:
Post by: QuikThinker on 17 July, 2004, 19:30:21
Congratulations! Ur the greatest thing since the wheel was invented. Woohoo!  :rolleyes:
Title:
Post by: Pacman on 17 July, 2004, 19:32:24
fu

if you posted to start a fight im fine with that.
Title:
Post by: plop on 17 July, 2004, 20:38:50
QuoteOriginally posted by Pacman
Quotehe's gone be bored 2 dead because his flooder doesn't work anymore

the old ones you have on your website dont work but the newer ones that havent been leaked out still do :p
can you send them 2 me by email (in a zip)??

plop
Title:
Post by: Ruri_Ruri on 18 July, 2004, 16:45:00
QuoteOriginally posted by plop
QuoteOriginally posted by Pacman
Quotehe's gone be bored 2 dead because his flooder doesn't work anymore

the old ones you have on your website dont work but the newer ones that havent been leaked out still do :p
can you send them 2 me by email (in a zip)??

plop

plop... --.-- naughty... it asys on ur site not to ask for the flooders because you wont get them, lol...
anyways, what we have now is a chat spammer for yhub, an op kicker, a new PM spammer and i think ive found a way to get around the latest deflood ^_^;; but im not exactly sure. i can send you screens of them if you like, but i dont have everything new, meka and pac have one or 2 new things.

...am i allowed to tell ppl this? o.O lol

i just like to be creative :-)
Title:
Post by: plop on 18 July, 2004, 17:13:20
QuoteOriginally posted by Ruri_Ruri plop... --.-- naughty... it asys on ur site not to ask for the flooders because you wont get them, lol...
anyways, what we have now is a chat spammer for yhub, an op kicker, a new PM spammer and i think ive found a way to get around the latest deflood ^_^;; but im not exactly sure. i can send you screens of them if you like, but i dont have everything new, meka and pac have one or 2 new things.

...am i allowed to tell ppl this? o.O lol

i just like to be creative :-)
i say that on my site because i don't spread any of them.
it's a kind of 1 way street, i get 2 see or have the flooder and fix deflood 2 filter them.
deflood is what they (and all the other folks) get in return for giving/showing me the flooders.
so far i have used your flooders 1x on a hub which wasn't mine, matt (admin of the other other lua board) wanted 2 see there effect, instead of giving him the flooders i showed them in his testhub.

and beside this you know i never even asked your latest flooders as i had enough info by just seeing them running in a testhub.
if pacman may not supply me those new flooders i can arange a testhub again so he can show them.

just like you i get a load of questions from ppl who would like 2 have them for "testing" purposes, all of them have gotten the same answer.
"you don't want them 2 test, you want 2 flood hub's for revenge", nearly all them confessed this was true.
if they really want 2 test, i'm willing 2 show them in a non public testhub.

give me a pm on msn if you found that way 2 bypase deflood, i'll be ready 2 fix that.
and yes the screenshots are most welcome.

plop
Title:
Post by: [NL]Pur on 18 July, 2004, 17:27:42
omg you stupid flooder dev ppl

your areeee soooooooo stupid.


Why waste all that time on a stupid dc flooder
while the TCP/IP protocol allows to flood lots easier.


go do something usefull.


make a multi share dc client for me or something

oh, btw
i think you guys developing in weeks a new flooder and plop comes along and modify deflood in 30min. I really wonder how something like that feels.
Title:
Post by: Ruri_Ruri on 18 July, 2004, 18:09:50
not really, it took me about an half an hour to make the OP kicker, and when i helped plop sort other flooders out (omega, midnightsun etc) that took 15 minutes tops :P

so, erm... yeah.... its all good ^_^
Title:
Post by: Meka][Meka on 18 July, 2004, 18:16:17
first of all, ye they used for revenge 'sometimes' if we are just being nice, 2nd is ive already been showin' PPK some of da latest and hes already been sorting most of dis, and 3rd:

dint fuck with us and ya hub wont be flooded....if u keep pissing us off its not just er hub...get it? we only flood because some lame ass comes and attacks us or *EXAMPLE=TEAMSTERZ* have stupid things in thur hub description like teamelite are pussies and shit like dat, that ****** me off.....

btw we test security of hubs we been more on attacking yhub then ptokax

FAQ:

Q: Why attack hubs?
A: To help secure the server

Q: Why not test on er own hub?
A: We do!

Q: If you test on own why on others too?
A: All servers have different weaknesses.

Q: Thats not the only reason is it?
A: No!

Q: What other reason?
A: I LOVE THER RESPONCE TO THuR HUB GOING DOWN LoL

oh btw, to nl pur... hub flooders are nothin these take us a few mins to make...they dont waste our time, they just prove we can beat the system d>)

and we will continue todo so.....

plop=do u understand the meaning of leaking? it means we dont leak them, meaning we dont leak them to anyone..only goes between te...u dont look te to me d>)

i guess screenshots or a testhub cant hurt as u only fixing the problems

pur=lol currently have 2 hubsoft's in progress, 1 in vb and 1 in c#, also 2 clients also 1 in vb and 1 in c++ d>)

so far the client's rule, fortuantly they are also unleaked d>)

[TE]-MeKa//

ps: we dont just do this on dc d>)
Title:
Post by: [NL]Pur on 18 July, 2004, 18:58:38
flooding and security has not much todo with each other
you don't gain access to the computer by flooding a hub.

as long as you can send stuff between computer you'll be able too flood. So what you only want is to destroy other ppl property.

I think it pretty dumb spending your time/bandwidth doing that.

you say your spending 15min tops ?

but forget the time that you spend here on the forum and post about flooders. And the time to test the flooder. And the time to give it to your team buddies and the time...

You spend alot more time on it then you realise.
Title:
Post by: plop on 18 July, 2004, 19:36:14
QuoteOriginally posted by Meka][Meka
Q: Why attack hubs?
A: To help secure the server

Q: Why not test on er own hub?
A: We do!

Q: If you test on own why on others too?
A: All servers have different weaknesses.

Q: Thats not the only reason is it?
A: No!

Q: What other reason?
A: I LOVE THER RESPONCE TO THuR HUB GOING DOWN LoL

plop=do u understand the meaning of leaking? it means we dont leak them, meaning we dont leak them to anyone..only goes between te...u dont look te to me d>)

i guess screenshots or a testhub cant hurt as u only fixing the problems.
giving me the info needed isn't leaking, thats prooving your goal is 2 secure the hub's (but i don't necesarely need the flooder, screenshots is mostly enough).
but not giving me that info looks like your only goal 2 make these tools is 2 cause damage on other ppls hub's.

if you really want 2 secure hub's you send me as much info as possible.

getting the basic idea 2 fix a leak takes mostly a couple seconds/minutes.
testing and building the fix 5-30 mins.

plop
Title:
Post by: pHaTTy on 18 July, 2004, 21:01:05
hmm and i thought all these topics were finsihed for a change guess i was wrong :/
Title:
Post by: Ruri_Ruri on 18 July, 2004, 22:45:22
hehe try this one out
//www.geocities.com/cat_like_thief/securitybot.zip

copy/paste link
Title:
Post by: Ruri_Ruri on 19 July, 2004, 15:19:03
//www.geocities.com/cat_like_thief/securitybot.zip

updated version... there were a few bugs last time, as it kept letting the chat spammer through, but its sorted!
Title:
Post by: Typhoon on 20 July, 2004, 02:08:55
looked at your bot but again i like open source much better , so have no intension of using it..

-Typhoon?
Title:
Post by: blackwings on 20 July, 2004, 02:12:02
QuoteOriginally posted by Ruri_Ruri
//www.geocities.com/cat_like_thief/securitybot.zip

updated version... there were a few bugs last time, as it kept letting the chat spammer through, but its sorted!

hmm, does this bot only kick users that have those hubdestroyer/flooder tags? Or does the bot do more than that?
Title:
Post by: HNJ on 20 July, 2004, 02:35:10
you input the ban cmd in the box for your hub. and you can add more descriptions to it. it bans the user on description. you can make it so it covers all flooders out there to date.it's quite nice, i use it and i tested it on all floders i could find ( about 30, including all of ruri's) so i recommend this bot. ^_^
Title:
Post by: QuikThinker on 20 July, 2004, 04:38:10
Does this not jus do the same thing as Plop's Deflood script?
Title:
Post by: Ruri_Ruri on 20 July, 2004, 06:36:34
it pretty much does the same, but its used as double protection.

it is mainly intended for YHub, as YHub has no means of scripting to protect against them.

im also guessing that you wonder why i made this? to put it simply, im getting a good deal off somebody for doing it, and also it helps me get better as a programmer :)

being able to create evil, but also banish it is good.... im no good with things like that

anyways, its simple to use
Title:
Post by: blackwings on 20 July, 2004, 08:35:28
QuoteOriginally posted by HNJ
you input the ban cmd in the box for your hub. and you can add more descriptions to it. it bans the user on description. you can make it so it covers all flooders out there to date.it's quite nice, i use it and i tested it on all floders i could find ( about 30, including all of ruri's) so i recommend this bot. ^_^

But still it's only 10 different tags you can use at the same time. One thing ruri ruri should do in the next update, is to make more room for tags. Instead of seeing the tags in the main GUI, you push a button and then another window opens, and there is room for like 30 tags.


QuoteOriginally posted by Ruri_Ruri
it pretty much does the same, but its used as double protection.

it is mainly intended for YHub, as YHub has no means of scripting to protect against them.

im also guessing that you wonder why i made this? to put it simply, im getting a good deal off somebody for doing it, and also it helps me get better as a programmer :)

being able to create evil, but also banish it is good.... im no good with things like that

anyways, its simple to use

hum, but does it check for massive GetNickList$(or whatever it was called again) is sent to the hub or if someone make a myInfo$ flood?

another question is, does this bot work in a different way, therefore it can work as a second bot, or do it work in the same way as deflood, the differnce is that your bot is a external bot??
Title:
Post by: plop on 20 July, 2004, 15:08:32
QuoteOriginally posted by blackwings hum, but does it check for massive GetNickList$(or whatever it was called again) is sent to the hub or if someone make a myInfo$ flood?

another question is, does this bot work in a different way, therefore it can work as a second bot, or do it work in the same way as deflood, the differnce is that your bot is a external bot??
the $GetNickList is send 2 the hub, so a client side bot like ruri's can't filter these.
client side bot's can only proces what's send 2 them.
so it can never filter as much as deflood does.

plop
Title:
Post by: pHaTTy on 20 July, 2004, 16:59:10
QuoteOriginally posted by plop
QuoteOriginally posted by blackwings hum, but does it check for massive GetNickList$(or whatever it was called again) is sent to the hub or if someone make a myInfo$ flood?

another question is, does this bot work in a different way, therefore it can work as a second bot, or do it work in the same way as deflood, the differnce is that your bot is a external bot??
the $GetNickList is send 2 the hub, so a client side bot like ruri's can't filter these.
client side bot's can only proces what's send 2 them.
so it can never filter as much as deflood does.

plop

unless a mini script to send everything to the bot is wrote :)
Title:
Post by: Ruri_Ruri on 20 July, 2004, 20:34:11
like i said earlier, this is used as a double protection layer.

plops deflood allows some bots in, but kicks when they 'try' something.
this external bot kicks on description, as most of my progs, you cant change the description.
with OMEGA, you can, but plops script gets that.

also, its main purpose is for YHub, but does work with ptokax aswell
Title:
Post by: REBEL on 21 July, 2004, 19:10:56
OK
As a hub Owner ....might not be very clever with PCs and Scripts ...but theres just one little thought you have forgotton about. I was taught what goes around comes around ..and also if you cant get somebody clean then get them dirty.
So Mr Whoever you are , and at 8 oclock you think you are going to shut my hub down ....just remember this.

you can knock the hub down, but maybe 2 more will replace it.
One day. someone is going to know where you are and that person might be me. Watch your back. Stay away from dark alleys.
Appologies to others on the Forum, but wrong person to intimidate,i will not be saying anymore on this matter or bringing in to bickering
Title:
Post by: Cypher on 21 July, 2004, 20:13:14
LOL, A threat from a lil kid.. hahaha!!! Grow up otherwise u could be finding yourself unable to walk when I break your legs!
Title:
Post by: solakie on 21 July, 2004, 20:27:15
U WANT BEEEEEEEEEEEEEEEEEEEEEEF!!!!! lol dnt fuck with with cypher i'll put u oin a bady bag standard :]
Title:
Post by: Pacman on 21 July, 2004, 20:39:51
lmao,
REBEL your an idiot.
making idle threats on a lua forum isnt going to help, just as it isnt going to help pissing off team elite members.
Title:
Post by: Typhoon on 21 July, 2004, 20:54:16
QuoteOriginally posted by Pacman
lmao,
REBEL your an idiot.
making idle threats on a lua forum isnt going to help, just as it isnt going to help pissing off team elite members.

just a thought !  
why dont you kids from team notsoelite and others just grow up, and realise theres a world outside the matrix ..

just remember its a Lua forum for Ptoakx and NOT a bitching place for you guys...  make your own forum for that shit


- Typhoon?
Title:
Post by: solakie on 21 July, 2004, 21:06:05
Typhoon? no disrepect but sux ur mom about a world out side of da matrix how long did it take u to tink of dat stay out of this got noting 2 do with u n dnt try slew TE or mayb sumting will happened 2 ur lil cheap pc :P