码迷,mamicode.com
首页 > 数据库 > 详细

python--防止SQL注入

时间:2019-07-06 23:23:20      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:exec   connect   pass   fetchall   ram   连接   mysql   --   name   

from pymysql import *


def main():
    # 创建Connextion连接
    conn = connect(host=‘localhost‘, port=3306, user=‘root‘, password=‘‘, database=‘test‘, charset=‘utf8‘)
    # 获取Cursor对象
    cursor = conn.cursor()
    param = "‘ or 1 = 1 or ‘1"
    sql = "select * from users where username = ‘%s‘" % (param,)
    count = cursor.execute(sql)
    print(count)
    # 结果是2 获取到数据库所有记录
    print(cursor.fetchall())
    # ((1, ‘张三‘, ‘男‘, 10), (2, ‘李四‘, ‘男‘, 10))
    count1 = cursor.execute("select * from users where username = %s", param)
    print(count1)
    # 结果是0



if __name__ == ‘__main__‘:
    main()

  

python--防止SQL注入

标签:exec   connect   pass   fetchall   ram   连接   mysql   --   name   

原文地址:https://www.cnblogs.com/f-rt/p/11144591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!