Posts: 314
Threads: 58
Joined: Oct 2010
Reputation:
0
Some bot hacked in 2 admins accounts (including me) and banned all of us.How is that possible?
Is there any way to stop them.
Posts: 79
Threads: 0
Joined: Apr 2012
Reputation:
0
lolwut?
provide us with more info...
Posts: 1,208
Threads: 52
Joined: Jan 2012
Reputation:
0
Your password might have been weak..
Posts: 314
Threads: 58
Joined: Oct 2010
Reputation:
0
I dont think that could be pass it included numbers symbols and letters.
Posts: 721
Threads: 25
Joined: Nov 2007
Reputation:
0
Your script is most likely causing it then.
What is your registration/administration script based on? (method-wise, as in, are you using Y_INI, MySQL, etc)
Posts: 314
Threads: 58
Joined: Oct 2010
Reputation:
0
Y_INI
Admin system based on Kush's tutoriol.
Anyways im adding a protection right now which includes:
-Banning CJ skin if its used.
-Admin password to use admin commands.
Posts: 427
Threads: 11
Joined: Apr 2009
Reputation:
0
Maybe they should use more strong password? ... if you use 123123 then everyone can hack your account, and make an admin security password, like when they log in with the admin account they should add the secret admin security password too.
Posts: 314
Threads: 58
Joined: Oct 2010
Reputation:
0
forward LoadUser_data(playerid,name[],value[]);
public LoadUser_data(playerid,name[],value[])
{
INI_Int("Password",PlayerInfo[playerid][pPass]);
INI_Int("Cash",PlayerInfo[playerid][pCash]);
INI_Int("Admin",PlayerInfo[playerid][pAdmin]);
INI_Int("Kills",PlayerInfo[playerid][pKills]);
INI_Int("Deaths",PlayerInfo[playerid][pDeaths]);
INI_Int("Score",PlayerInfo[playerid][pScore]);
INI_Int("Warns",PlayerInfo[playerid][pWarns]);
INI_Int("Ip",PlayerInfo[playerid][pIp]);
INI_Int("Muted",PlayerInfo[playerid][pMuted]);
INI_Int("Freeze",PlayerInfo[playerid][pWarns]);
INI_Int("Vip",PlayerInfo[playerid][pVip]);
INI_Int("Airforce",PlayerInfo[playerid][pAirforce]);
INI_Int("Xp",PlayerInfo[playerid][pXp]);
return 1;
}