bullseye Posted December 22, 2009 Posted December 22, 2009 Hello there i thourght i would Recode battle tent and secure it so heres what i made You're unable to view this code. Viewing code within this forum requires registration, you can register here for free. Hope fully people will use it :) +1 me if you wish Quote
Shakeynath Posted December 23, 2009 Posted December 23, 2009 Good like it too :) Im using it atm :thumbsup: Good work ! Quote
bullseye Posted December 23, 2009 Author Posted December 23, 2009 Thank You any more people want to comment Quote
Danny696 Posted December 24, 2009 Posted December 24, 2009 I didnt realise the battletent was in-secure 8| Quote
Zero-Affect Posted December 24, 2009 Posted December 24, 2009 You're unable to view this code. Viewing code within this forum requires registration, you can register here for free. maybe better, this could error i didn't test it but considering all the combined tables * is definitely a bad idea. also... You're unable to view this code. Viewing code within this forum requires registration, you can register here for free. come on specify a column atleast i know maybe it doesn't help but it looks better, also the use of `` isn't such a bad idea on tables columns and so forth. say for example, you have a table which contains a column called asc or desc then it's obvious it would error ie: [mysql]SELECT desc FROM table[/mysql] [mysql]UPDATE table SET desc=1[/mysql] [mysql]DELETE FROM table WHERE desc=1[/mysql] The above would fail. [mysql]SELECT `desc` FROM `table`[/mysql] [mysql]UPDATE `table` SET `desc`=1[/mysql] [mysql]DELETE FROM `table` WHERE `desc`=1[/mysql] The above would not fail. I really do have to ask, what is so insecure about the original Battle Tent. 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.