Nicholas Posted August 15, 2009 Posted August 15, 2009 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. Quote
shedh Posted August 15, 2009 Posted August 15, 2009 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 Quote
Etheco Posted August 16, 2009 Posted August 16, 2009 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. Quote
ShizzleNizzle Posted August 16, 2009 Posted August 16, 2009 Re: urgent question It's a FireFox addon that's causing his game to be "hacked". There have been many posts on here with the fix for it, just search. Quote
Saberman Posted August 16, 2009 Posted August 16, 2009 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']; Quote
Nicholas Posted August 16, 2009 Author Posted August 16, 2009 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. Quote
Nicholas Posted August 16, 2009 Author Posted August 16, 2009 Re: urgent question ive acturally put $IP = $_SERVER['REMOTE_ADDR']; $IP = mysql_real_escape_string($IP); on all the parts with them 3 lines. Quote
wolfe Posted August 16, 2009 Posted August 16, 2009 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. Quote
shrek1609 Posted August 16, 2009 Posted August 16, 2009 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... Quote
Danny696 Posted August 16, 2009 Posted August 16, 2009 Re: urgent question Use MTG's recoded fourms on his fourm there secure and they use the mccodes tables ;) Quote
Feky Posted August 16, 2009 Posted August 16, 2009 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 Quote
Danny696 Posted August 16, 2009 Posted August 16, 2009 Re: urgent question yup thats the one :) oh and btw its Dev Forum not Dev Forums Quote
andyt_2005 Posted August 16, 2009 Posted August 16, 2009 Re: urgent question yeah it was the forums! wasnt it nick :) lucky i only messed with my stats lol Quote
shrek1609 Posted August 16, 2009 Posted August 16, 2009 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: Quote
wolfe Posted August 17, 2009 Posted August 17, 2009 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. Quote
Saberman Posted August 17, 2009 Posted August 17, 2009 Re: urgent question so the recoded forums in dev forums are not secure then becausehe say that where he was hacking from Quote
Danny696 Posted August 17, 2009 Posted August 17, 2009 Re: urgent question For the love of god its Dev-Forum not Dev-Forums and they are secure go and check them out and then tell me if there not secure Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.