Bad IP finder
 

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

Bad IP finder

Started by c h i l l a, 02 November, 2003, 19:17:07

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

c h i l l a

dunno if anybody needs this, but I wrote it, cause it might help finding bad IP's  since, I think that searchbots usually use the same IP but different names.
I wrote this script whitch will report a IP to a nick if it was used 3 times by different nicks per day.

--sBot-finder-V.1 by chill.

--BotName
bot = "IP-Bot"
--Nick To Report the IP
Nicktosend = "Nick"

IPtoNAME = {}
curday = 1

function NewUserConnected(curUser)
	if tonumber(date("%d")) ~= curday then
		curday = tonumber(date("%d"))
		IPtoNAME = {}
	end
	if not IPtoNAME[curUser.sIP] then
		IPtoNAME[curUser.sIP] = { }
		tinsert(IPtoNAME[curUser.sIP], curUser.sName)
	elseif IPtoNAME[curUser.sIP] then
		for i = 1,getn(IPtoNAME[curUser.sIP]) do
			if IPtoNAME[curUser.sIP][i] == curUser.sName then
				return 0
			end
		end
		tinsert(IPtoNAME[curUser.sIP], curUser.sName)
		if getn(IPtoNAME[curUser.sIP]) == 3 then
			SendPmToNick(Nicktosend,bot," **** "..curUser.sIP.." was used by 3 differerent UserNames today.")
			for i = 1,getn(IPtoNAME[curUser.sIP]) do
				SendPmToNick(Nicktosend,bot," **** Nick "..i.." = "..IPtoNAME[curUser.sIP][i])
			end
			IPtoNAME[curUser.sIP] = nil
		end
	end
end

dvxjunkie

great idea Ive been needing this for some time. no shortage of lamers playing the "rotating nicks game" with me.

SMF spam blocked by CleanTalk