PDA

View Full Version : Hacker


kouhei
06-25-2005, 01:46 PM
I have a problem. It seems there is a hacker who is able give him self 200 access even though I have everyones access set to be 0 when they first start up. This user has been spawning mobs like(Nigxer,Micheal Jackon and some others which would not like to say. Someone told me he is using a hack program to do this. If so whaat is it called or if not how is he able to do this. You can send me a PM if don't want to say how to prevent others doing the same.

Sarepean
06-25-2005, 03:47 PM
The status and user access is controlled by MySQL since it's in the database. He may be accessing root on MySQL and may have run an SQL update.

Go into MySQL and lower his access to like 0 or something.

RangerDown
06-25-2005, 05:23 PM
Before you change any status levels, run this mysql query to see what all accounts in your database have a status above 0, so you have a good idea of who might be doing this:


SELECT id,name,status FROM account WHERE status > 0;