oh if you want a list of "known' hackers, my I've been running the same firewall for 3+ years now and have a list out of this world.
Granted, alot of these are now obsolete with the better and better anti-cheat programs out. As far as searching for those utilizing GM commands to get items on 2.2.3.2 a vast majority come from Russia / China IPs. I ended up block nearly all of russia,china, and brazil
the fastest way to check for them (though not convenient) on 2.2.3.2 is to use TextCrawler and search through the Item logs for the word "Cheat" gets most of them but will pick up your GMs also

Originally Posted by
lifestream
what we would need is a public ip blacklist that authorized server owners could update (to avoid randoms adding legal players they don't like to blacklist or hackers screwing it on purpose) so the list could be used for servers around to block listed potential hacker IP-s.
I just wish that gamecp would save banned user IP-s to the txt log also Oo. Tho... lol could create a simple script to get ip from useraccount table and store it. hmm
woudlnt' be that hard, i can write one up.
I have so many stupid scripts it's not funny. I actually keep in database old / new passwords upon change password
in order to track MAVing and scammed accounts as before there was no way to tell.
Code:
Use RF_User_GA /* Change to your USER Database name*/
SELECT [serial]
,convert(varchar(15),[id])
,szReason
,[lastconnectip]
FROM dbo.tbl_UserAccount
inner join dbo.tbl_UserBan on dbo.tbl_UserAccount.serial = dbo.tbl_UserBan.nAccountSerial
Where exists
(select * from dbo.tbl_UserBan
where dbo.tbl_UserBan.nAccountSerial = dbo.tbl_UserAccount.serial and nPeriod > '100000') and lastconnectip <> '0'
order by lastconnectip
you can put it out as a report and have a hard copy though won't be pretty.
Ok, editted it to ignore "Temp Bans" and cleaned it up to put them in order to make easier to see.
I had to add the "lastconnectip <> '0'" because i do dormant blocks and they don't have a connect IP on them. most won't need that