Prevenir SQL注入-bÃsico

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Prevenir SQL注入-bÃsico相关的知识,希望对你有一定的参考价值。

Existen varias formas para hacerlo, pero lo que dejo aquí es a lo que tenemos que acostumbrarnos a hacer cada vez que programemos para prevenir que se pueda inyectar html o modificar las consultas SQL. There are several ways to do it, but what I leave here is what we have to get used to do every time we schedule to prevent or modify HTML to inject SQL queries.
  1. <?php
  2. $name = htmlspecialchars($_GET['name']);
  3. $password = htmlspecialchars($_GET['password']);
  4. $country = htmlspecialchars($_GET['country']);
  5. $age = htmlspecialchars($_GET['age']);
  6.  
  7. $integer = (int) $integer;
  8.  
  9. /*
  10. This function must always (with few exceptions) be used to make data safe before sending a query to mysql.
  11. */
  12. $string = mysql_real_escape_string($string);
  13. ?>

以上是关于Prevenir SQL注入-bÃsico的主要内容,如果未能解决你的问题,请参考以下文章

阿贾克斯bÃsico con jQuery

谷歌地图bÃsico/基本谷歌地图

以下代码片段是不是容易受到 Rails 5 中 SQL 注入的影响?

安全测试 web安全测试 常规安全漏洞 可能存在SQL和JS注入漏洞场景分析。为什么自己没有找到漏洞,哪么可能存在漏洞场景是?SQL注入漏洞修复 JS注入漏洞修复 漏洞存在场景分析和修复示例(代码片段

Sintaxis bÃsica/习惯性SQL para consulta tipo选择

Sintaxis bÃsica/习惯性SQL para consulta tipo插入