博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于sql注入
阅读量:5941 次
发布时间:2019-06-19

本文共 1008 字,大约阅读时间需要 3 分钟。

 

    删除表,先猜表名,可以使用下面的语名:

Select * from A where A.a = ‘testdata’; drop table A---’;

    If a field only allow number, give it a String or others 假如一个字段仅仅只允许使用一个数字,传给他一个字符串或者其它类型。     

    Use ‘OR 1=1’, get all records in query function 使用‘or 1=1’ 能得到所有的查询记录

Select * from A where A.a = ‘testdata’ OR ‘1’=’1’;

    In login function, give user name field like ‘username’--’, “--’ and A.password = ‘’” is commented

    在登录功能,给用户传 ‘username’--’, “--’ and A.password = ‘’” 

Select * from user A where A.username =  ‘username’--’ and A.password = ‘’;

     Adding records function, if there is 4 fields in this table, add 5 fields, eg.

      添加 一条记录,假如这条表只有4个字段,那就多加一个字段

Normal: Insert into table A values(‘’,’’,’’,’’);

Test Data: Insert into table A values(‘’,’testdata’,’’,’’,’’);

    Input test data in or out of this field data 

   Add single quotation marks and semicolon, and break off string splicing, this is similar with point 4

Update table A set A.a = ‘testdata’;--’

 Yellow partis test data we input 

 

转载于:https://www.cnblogs.com/agile2011/p/5156324.html

你可能感兴趣的文章
jQuery操作table tr td
查看>>
工作总结:MFC自写排序算法(升序)
查看>>
螺旋队列问题之二
查看>>
扩展运算符和解构赋值的理解
查看>>
手机H5显示一像素的细线
查看>>
Menu 菜单栏
查看>>
Integer跟int的区别(备份回忆)
查看>>
集合解析
查看>>
详解分布式应用程序协调服务Zookeeper
查看>>
软件工程之构建之法
查看>>
UVa 10902
查看>>
Mathf.Sin正弦
查看>>
禁止浏览器缓存js
查看>>
【Redis】安装PHP的redis驱动(二)
查看>>
什么是序列化,为什么要序列化
查看>>
Java保留小数点后有效数字
查看>>
C++中一些类和数据结构的大小的总结
查看>>
mysql开启binlog
查看>>
ctrl + z fg bg
查看>>
工作流引擎Oozie(一):workflow
查看>>