Quote:
Originally Posted by cheesegrits
If it's an SQL injection problem, then it's probably these lines in EM2008.php:
Code:
$sql = "INSERT INTO " . TABLE_PREFIX . "rth_em08_bets (user_id,em_game_number,bet_result,bet_home,bet_visitor)
VALUES (".$vbulletin->userinfo['userid'].",".$game.",".$result['bet_result'].",".$result['home'].",".$result['visitor'].")";
... where none of those variables being inserted have been cleaned properly.
At the very least, I'd do ...
Code:
$game = $db->escape_string($game);
$result['bet_result'] = $db->escape_string($result['bet_result']);
$result['home'] = $db->escape_string($result['home']);
$result['visitor'] = $db->escape_string($result['visitor']);
... before that query.
-- hugh
|
Many thank you!!!!! Sorry which I ask however was that everything?
--------------- Added [DATE]1201713109[/DATE] at [TIME]1201713109[/TIME] ---------------
One has me further to place called these obviously also a problem to explain...
Quote:
$vbulletin->input->clean_array_gpc('p', array(
'betgame' => TYPE_ARRAY,
[...]
$userbetcheck = $db->query_first("SELECT count(*) as anzahl FROM " . TABLE_PREFIX . "rth_em08_bets
WHERE user_id = ".$vbulletin->userinfo['userid']."
AND em_game_number = ".$game."");
|
and
Quote:
//phase?
$default_phase = ($em_now < $phase2_timestamp) ? 1 : 2;
$_GET['phase'] = (!empty($_GET['phase'])) ? $_GET['phase'] : $default_phase;
$show['phase'] = $_GET['phase'];
$phase_name = $vbphrase['EM2008_phase'.$_GET['phase']];
$_GET['phase'] = $phase_array[$_GET['phase']];
|
--------------- Added [DATE]1201713261[/DATE] at [TIME]1201713261[/TIME] ---------------
One wrote me: "Das are not no stringers, and/or should be. = > intval() or other method over to guarantee that it more integer sind"