我有以下函数写入PostgreSQL数据库。我需要从SQL注入中保证安全,但我不知道该怎么做。
从pg_query_params
汇编的查询部分是安全的注入(或者我被告知)但是通过PHP的字符串连接.
组装查询的其他部分显然容易被注入。
private function setItem($table, $id, $field, $itemId, $fieldValue){
$_1 = $itemId;
$_2 = $fieldValue;
$_3 = $field;
$_4 = $table;
$_5 = $id;
$parameters = array($_1, $_2);
// If the ID already exists, then update the name!
$sql = 'update ' . $_4 . ' set ' .$_3 . ' = $2 where ' . $_5 . ' = $1;';
/*$result = */pg_query_params($this->database, $sql, $parameters);
// Add ID and Name into table.
$sql = 'insert into ' . $_4 . '(' . $_5 . ',' . $_3 . ') select $1, $2 where not exists(select 1 from ' . $_4 . ' where ' . $_5 . '=$1)';
$result = pg_query_params($this->database, $sql, $parameters);
return $result;
}
修改
How can I prevent SQL injection in PHP?似乎没有解决我的问题。
我正在使用PostgreSQL并尝试查找与pg_query_params
答案 0 :(得分:2)
在创建要执行的查询之前,可以使用quote_ident()要求数据库保护表名和列名。你需要这样的东西:
<?php
$table = 'table name'; // unsafe
$column = 'column name'; // unsafe
$result = pg_query_params($connection,
'SELECT quote_ident(CAST($1 AS text)), quote_ident(CAST($2 AS text));',
array($table, $column)
);
$table = pg_fetch_result($result, 0, 0); // safe
$column = pg_fetch_result($result, 0, 1); // safe
$sql = 'INSERT INTO '.$table.'('.$column.') VALUES($1);';
echo $sql;
$result = pg_query_params($connection, $sql, array('foo'));
?>