mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-23 10:03:47 +03:00
15 lines
313 B
Bash
15 lines
313 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
||
|
# See the file 'doc/COPYING' for copying permission
|
||
|
|
||
|
SQLMAP_HOME="/opt/sqlmap"
|
||
|
REGRESSION_SCRIPT="${SQLMAP_HOME}/extra/shutils"
|
||
|
|
||
|
cd $SQLMAP_HOME
|
||
|
git pull
|
||
|
rm -f output 2>/dev/null
|
||
|
|
||
|
cd $REGRESSION_SCRIPT
|
||
|
python regressiontest.py
|