mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-12 03:16:36 +01:00
14 lines
313 B
Bash
Executable file
14 lines
313 B
Bash
Executable file
#!/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
|