Skip to content

Commit 572b6fd

Browse files
committed
sqlmap 0.8 stable!
1 parent bfbf58b commit 572b6fd

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

lib/core/settings.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import sys
2828

2929
# sqlmap version and site
30-
VERSION = "0.8-rc7"
30+
VERSION = "0.8"
3131
VERSION_STRING = "sqlmap/%s" % VERSION
3232
DESCRIPTION = "automatic SQL injection and database takeover tool"
3333
SITE = "http://sqlmap.sourceforge.net"
@@ -52,10 +52,6 @@
5252
# Url to update Microsoft SQL Server XML versions file from
5353
MSSQL_VERSIONS_URL = "http://www.sqlsecurity.com/FAQs/SQLServerVersionDatabase/tabid/63/Default.aspx"
5454

55-
# Urls to update sqlmap from
56-
SQLMAP_VERSION_URL = "%s/doc/VERSION" % SITE
57-
SQLMAP_SOURCE_URL = "http://downloads.sourceforge.net/sqlmap/sqlmap-%s.zip"
58-
5955
# Database managemen system specific variables
6056
MSSQL_SYSTEM_DBS = ( "Northwind", "model", "msdb", "pubs", "tempdb" )
6157
MYSQL_SYSTEM_DBS = ( "information_schema", "mysql" ) # Before MySQL 5.0 only "mysql"

lib/core/update.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@
4747
from lib.core.exception import sqlmapConnectionException
4848
from lib.core.exception import sqlmapFilePathException
4949
from lib.core.settings import MSSQL_VERSIONS_URL
50-
from lib.core.settings import SQLMAP_VERSION_URL
51-
from lib.core.settings import SQLMAP_SOURCE_URL
5250
from lib.core.settings import VERSION
5351
from lib.request.connect import Connect as Request
5452

0 commit comments

Comments
 (0)