Jump to content
MakeWebGames

jcvenom

Members
  • Posts

    575
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by jcvenom

  1. lol you created a .tk domain and said it was my script legaci bought the layout off me today so it doesn't matter
  2. what i thought it was v2 you where on about i have no experience with redux
  3. lol you are him i know you long enough
  4. see when i was working on the scripts i was on my own then this guy called sweetkiller who i trusted stole the script i sued him and got 5000 dollars but he's is at it again i think and on my last game syndicate hacked it - - - Updated - - -   see when i was working on the scripts i was on my own then this guy called sweetkiller who i trusted stole the script i sued him and got 5000 dollars but he's is at it again i think and on my last game syndicate hacked it with his friends as i was told but now i will never trust anyone with my cpanel again unless i know i can like i can trust kyle, guest, illusions and some other people but i swear anyone i find they will be sued
  5. no problem kyle i never knew it wasn't allowed sorry
  6. create a file called globals_nonauth.php then remove include "globals.php" from the support file Then in globals_nonauth.php add this   if (strpos($_SERVER['PHP_SELF'], "globals_nonauth.php") !== false) { exit; } session_name('MCCSID'); @session_start(); if (!isset($_SESSION['started'])) { session_regenerate_id(); $_SESSION['started'] = true; } ob_start(); if (function_exists("get_magic_quotes_gpc") == false) { function get_magic_quotes_gpc() { return 0; } } if (get_magic_quotes_gpc() == 0) { foreach ($_POST as $k => $v) { $_POST[$k] = addslashes($v); } foreach ($_GET as $k => $v) { $_GET[$k] = addslashes($v); } } include "config.php"; define("MONO_ON", 1); require "class/class_db_{$_CONFIG['driver']}.php"; require_once('global_func.php'); $db = new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $c = $db->connection_id; $set = array(); $settq = $db->query("SELECT * FROM `settings`"); while ($r = $db->fetch_row($settq)) { $set[$r['conf_name']] = $r['conf_value']; } That should help you with the global
  7. thats the problem check your globals for something about fed
  8. jcvenom

    Securing $_POST

    well said there is no need of changing the as haunted dawg said all i would do is secure the header and globals or build the two into eachother simple
  9. does it say at the top include "globals.php";
  10. layout is horrible syndicate
  11. if you like i can make you one like torn city were you cann lock replies etc
  12. hey   did my way work
  13. go_mine() doesn't exit add this to your cases   case 'go_mine': go_mine();break;   then if you dont have a function add this   function go_mine() { //add what ever you want here }
  14. jcvenom

    Securing $_POST

    lol i never mentioned using Htmlspecialchars for database input read my post again
  15. jcvenom

    Securing $_POST

    this is how you secure $_POST In the first case htmlspecialchars() probably is the best choice, allowing for users to use all characters like <, >, &, etc. In the second case you will need to use some database escaping function like mysql_real_escape_string or a prepared statement with PDO or mysqli. Prepared statements are the best choice here but if you are only familiar with mysql then mysql_real_escape_string works fine too. If you are not using mysql then there are similar functions in most SQL APIs. In the third case do both but separately, which gives you two diffrent results, one for output and one for database. this is how i do it below is references for you hope this helps References: http://php.net/manual/en/function.htmlspecialchars.php http://php.net/manual/en/function.mysql-real-escape-string.php http://php.net/manual/en/book.pdo.php http://php.net/manual/en/book.mysqli.php
  16. im from uk but l live in usa
  17. cheers!   i hope so cheers!
  18. it has come to my attention that people are stealing my work i am not happy about this and my laywer is on my cases i recently made 3 games anonymouscity,breakoutcity,crimecitymafia and i have found people have stolen all 3 scripts now i am warning you guys anyone that is found using any of those scripts will be brought to court and im serious if you find anyone using these scripts pm me and i will give you 100$ and the game will be handled with my laywer Games i have shutdown breakoutcity.elementfx.com spoiledcity.com Games on Dmca list murder-city.com bravelandcity.com these games will be down i have filed this case in the courts of US laws and provided them with all relevant information about this scenario. what people may do if they are found using my script is stop all illegal operations and get ready to pay all charges they will be charged for best of luck Jcvenom
  19. yes it is i can help you also will this be daily or just once
  20. jcvenom

    Mafia Creed

    thats true also frosty have you sold your game
  21. jcvenom

    Mafia Creed

    don't worry i will also bennyh pm me and asked me to find exploits on his game i found 3 now he wants me to fix them im really good at finding exploits and fixing them
  22. jcvenom

    Mafia Creed

    cheers! :)
  23. what do you mean keep it on are you referring to angel and dominion's comments
  24. jcvenom

    Mafia Creed

    ok looks ok now could you fix my reseller and your gamw is exploitable
  25. AS my friend venom said this mod is not vulnerable to XSS attacks
×
×
  • Create New...