Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. [code]
  2. if(preg_match("/h3x:(.*?):h3x/s",geturl(prepare_url($schemaname),false,null),$foundschemaname))
  3. {
  4. if(preg_match("/information_schema/",geturl(prepare_url($schemaname),false,null)))
  5. {
  6. continue;
  7. }
  8. else
  9. {
  10. $o_schema[$schemastart] = "<hr />"."Schema Name = <b>". $foundschemaname[1] ."</b><hr />";
  11. echo $o_schema[$schemastart];
  12. }
  13. }
  14. else
  15. {
  16. }
  17. [/code]
  18.  
  19. Replace with:
  20. [code]
  21. if(preg_match("/h3x:(.*?):h3x/s",geturl(prepare_url($schemaname),false,null),$foundschemaname))
  22. {
  23. $o_schema[$schemastart] = "<hr />"."Schema Name = <b>". $foundschemaname[1] ."</b><hr />";
  24. echo $o_schema[$schemastart];
  25. }
  26. [/code]
  27.  
  28. Credits to Jackh4x0r for notifying.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement