django如何应对sql注入攻击

980
2021/2/19 17:34:42
栏目: 云计算
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

django如何应对sql注入攻击

django应对sql注入攻击的方法:

1.使用django自带的数据库API,它会根据数据库的转换规则,自动转义特殊的SQL参数。

2.在cursor.execute()的sql语句中使用“%s”,而不要在sql内直接添加参数,例如:

from django.db import connection

def user_contacts(request):

user = request.GET['username']

sql = "SELECT * FROM user_contacts WHERE username = %s"

cursor = connection.cursor()

cursor.execute(sql, [user])

# ... do something with the results

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: Django中怎么处理表单验证