Skip to content

Commit

Permalink
Trivial update
Browse files Browse the repository at this point in the history
  • Loading branch information
stamparm committed Jul 23, 2021
1 parent 179a6ed commit 2679c65
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from thirdparty.six import unichr as _unichr

# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.5.7.7"
VERSION = "1.5.7.8"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
Expand Down
13 changes: 13 additions & 0 deletions sqlmapapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ paths:
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
version:
type: string
example: "1.5.7.7#dev"
success:
type: boolean
example: true
/task/new:
get:
description: Create a new task
Expand All @@ -25,6 +36,7 @@ paths:
example: "fad44d6beef72285"
success:
type: boolean
example: true
/scan/{taskid}/start:
post:
description: Launch a scan
Expand Down Expand Up @@ -59,6 +71,7 @@ paths:
example: 19720
success:
type: boolean
example: true
/scan/{taskid}/stop:
get:
description: Stop a scan
Expand Down

0 comments on commit 2679c65

Please sign in to comment.