WARNING NEW HUB FLOODER !!!OUT - Page 4
 

News:

29 December 2022 - PtokaX 0.5.3.0 (20th anniversary edition) released...
11 April 2017 - PtokaX 0.5.2.2 released...
8 April 2015 Anti child and anti pedo pr0n scripts are not allowed anymore on this board!
28 September 2015 - PtokaX 0.5.2.1 for Windows 10 IoT released...
3 September 2015 - PtokaX 0.5.2.1 released...
16 August 2015 - PtokaX 0.5.2.0 released...
1 August 2015 - Crowdfunding for ADC protocol support in PtokaX ended. Clearly nobody want ADC support...
30 June 2015 - PtokaX 0.5.1.0 released...
30 April 2015 Crowdfunding for ADC protocol support in PtokaX
26 April 2015 New support hub!
20 February 2015 - PtokaX 0.5.0.3 released...
13 April 2014 - PtokaX 0.5.0.2 released...
23 March 2014 - PtokaX testing version 0.5.0.1 build 454 is available.
04 March 2014 - PtokaX.org sites were temporary down because of DDOS attacks and issues with hosting service provider.

Main Menu

WARNING NEW HUB FLOODER !!!OUT

Started by wiper, 17 February, 2004, 19:56:39

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

kepp

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!
Guarding    

plop

#76
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
http://www.plop.nl lua scripts/howto\'s.
http://www.thegoldenangel.net
http://www.vikingshub.com
http://www.lua.org

>>----> he who fights hatred with hatred, drives the spreading of hatred <----<<

MrBuitenhuizenJunior

Hehe the description sounds like fun  :D
Thnx for posting it Plop!


[NL]MrBuitenhuizen

plop

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
http://www.plop.nl lua scripts/howto\'s.
http://www.thegoldenangel.net
http://www.vikingshub.com
http://www.lua.org

>>----> he who fights hatred with hatred, drives the spreading of hatred <----<<

pHaTTy

Resistance is futile!

DoJIN

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

dReiska

#81
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.

RollTheDice

#82
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!!

(uk-kingdom)John

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 ;)

wiper

Hehe

plzz dont tell ppl the name, dont want ppl finding it and using it ;)*

neechan

#85
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

plop

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
http://www.plop.nl lua scripts/howto\'s.
http://www.thegoldenangel.net
http://www.vikingshub.com
http://www.lua.org

>>----> he who fights hatred with hatred, drives the spreading of hatred <----<<

pHaTTy

2 words 'client hacker'
Resistance is futile!

NightLitch

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
//NL

neechan

#89
thanks plop ... your a life saver  :D

keep up the good work

the timer idear sounds nice :)

psf8500

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 :(

pHaTTy

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
Resistance is futile!

pHaTTy

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
Resistance is futile!

plop

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
http://www.plop.nl lua scripts/howto\'s.
http://www.thegoldenangel.net
http://www.vikingshub.com
http://www.lua.org

>>----> he who fights hatred with hatred, drives the spreading of hatred <----<<

pHaTTy

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
Resistance is futile!

wiper

Thanx (uk-kingdom)pH?tt?
works good

RollTheDice

Y-hub fixed,lol Ruris prog only give error anymore:)..i have copy if some need ...and i think Ptokax too?mean fixed?

psf8500

*** DC++k CDM V2.84 - 22:46 19/02/2004 ***

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



Simply kicks anyone with Ruri_Ruri in there description  :))

PPK

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 ;)
"Most of you are familiar with the virtues of a programmer. There are three, of course: laziness, impatience, and hubris." - Larry Wall

[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
Owner of FunnyHub
 
Funyhub.no-ip.info
       Forum Master of


SMF spam blocked by CleanTalk