Jump to content
MakeWebGames

Recommended Posts

Posted

i know ive asked alot questions, but is there any way to make it so u can only play my game on Internet Explore and not FireFox and Internet Explore, as in past 1 week, ive been hacked about 10+ times (no ones messed with my files or took me off staff tho), ive secured my game best i can with

$_GET['ID'] = abs(@intval($_GET['ID']));

that has

{$_GET['ID']}");

in the file, but people can still get in my game, and its p-ing me off. can anyone tell me another addon for security or how to make it so players can only play my game on Internet Explore?

Thanks,

Nicholas.

Posted

Re: urgent question

making people use IE just so they don't disturb your game will not make a difference, people will always find a way around it, you will most likely need to secure your game in more ways.

Use Nyna's Security tips, i used it and it really help me learn more and understand security much more

Posted

Re: urgent question

I can tell you limiting it to IE will not secure your game. + you can get plugins for say Firefox which can spoof what browser you use. and i am sure they are not getting through due to browser. Just more like sql injection.

Posted

Re: urgent question

well first thing you need to do is

find this and search for other secures and try to secure it

 

$IP = ($_SERVER['HTTP_X_FORWARDED_FOR'])
   ?  $_SERVER['HTTP_X_FORWARDED_FOR']
   :  $_SERVER['REMOTE_ADDR'];

 

in login, header and register.php and any other files you can find it in and replace it with this

$IP = $_SERVER['REMOTE_ADDR'];
Posted

Re: urgent question

yes i know its firefox that making my game get hacked lol, and ive already done that

$IP = $_SERVER['REMOTE_ADDR'];

on register, header, login, etc.

idk guys getting my MD5 passwords and cracking them with a program and logging onto our accounts, and idk how to stop it.

Posted

Re: urgent question

If hes getting the md5 passwords you need to secure all your inputs and secure the site as a whole. There is a lot of information on this forum. Use the search feature if you have other issues after checking out the link shedh posted.

Posted

Re: urgent question

this is mostly likely the forums file that he/she is gaining access from so make sure you have secured that (search on here)

another little tip for added security is to take on board that MD5 passwords cannot be reversed ie they cannot be cracked...

however there are rainbow tables available that will match certain words to the encrypted md5

hence make sure your passwords contain a variety of upper and lower case letters and also numbers... this will lower the chance of them actually being able to obtain the true password from the md5 hash even if they do get in...

this is just an added security option this should NOT replace you securing the game properly and has been said spend some time searching and reading on here...

Posted

Re: urgent question

if it is the forums then their is a fully working and secured version on dev forums made by Magictallguy and they work great

Posted

Re: urgent question

 

yeah it was the forums! wasnt it nick :) lucky i only messed with my stats lol

Hmmmmm looking back at your posts you have gained alot of help from members on here yet you return the favour by trying to stuff up someone elses work ???

what a nice person you must be :roll:

Posted

Re: urgent question

 

yeah it was the forums! wasnt it nick :) lucky i only messed with my stats lol

Hmmmmm looking back at your posts you have gained alot of help from members on here yet you return the favour by trying to stuff up someone elses work ???

what a nice person you must be :roll:

Some kids think its cool to bite the people that help them.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...