Skip to content

Commit

Permalink
bundle bottle library in sqlmap (it is MIT license) - issue #297
Browse files Browse the repository at this point in the history
  • Loading branch information
bdamele committed Dec 14, 2012
1 parent 0ec420c commit 2e97405
Show file tree
Hide file tree
Showing 4 changed files with 3,272 additions and 14 deletions.
8 changes: 1 addition & 7 deletions _sqlmap.py
Expand Up @@ -45,15 +45,9 @@
from lib.core.testing import smokeTest
from lib.core.testing import liveTest
from lib.parse.cmdline import cmdLineParser
from lib.utils.restapi import restAPIrun
from lib.utils.xmlrpc import XMLRPCServer

try:
from lib.utils.restapi import restAPIrun
except SqlmapMissingDependence, e:
e = getUnicode(e)
logger.critical(e)
sys.exit(1)

def modulePath():
"""
This will get us the program's directory, even if we are frozen
Expand Down
8 changes: 8 additions & 0 deletions extra/bottle/__init__.py
@@ -0,0 +1,8 @@
#!/usr/bin/env python

"""
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""

pass

0 comments on commit 2e97405

Please sign in to comment.