文章详情页
python 操作mysql如何经量防止自己的程序在之后被恶意注入(说白了就是问一下python防注入的一些要点)
浏览:130日期:2022-06-11 13:45:45
问题描述
有没有必要参考以往的php或者java之类的语言的防注入文档呢?python相关的防注入文档实在不好找
问题解答
回答1:1.通过
cursor.execute('select * from table where name=%s', 'name')
可以防注入。
2.如果通过
sql = 'select * from table where name=%s' % MySQLdb.escape_string(name)
这种格式,需要MySQLdb.escape_string(name),可以防注入.
推荐使用第一种。
回答2:sql = 'INSERT INTO `users` (`email`, `password`) VALUES (%s, %s)'cursor.execute(sql, (’webmaster@python.org’, ’very-secret’))
我知道的一点是不要使用 sql.format('x1', 'x2'), 要把参数传给cursor.execute去处理
相关文章:
1. 在windows下安装docker Toolbox 启动Docker Quickstart Terminal 失败!2. android - 怎样才能在连接本地WIFI是通过 3G/4G 实现微信分享?3. html5 - 如何禁止百度转码?4. 前端 - css3动画怎样对帧的理解?5. node.js - 如何重定向到public下的静态html文件6. angular.js - angularjs的ng-include的html必须是要在同一个服务器吗?7. node.js - 在阿里云搭建vue环境后npm run dev 没有看到vue欢迎页面而是 UnhandledPromiseRejection8. docker - 如何修改运行中容器的配置9. docker-machine添加一个已有的docker主机问题10. 关于docker下的nginx压力测试
排行榜
