Skip to content

Commit 2679c65

Browse files
committed
Trivial update
1 parent 179a6ed commit 2679c65

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

lib/core/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.5.7.7"
23+
VERSION = "1.5.7.8"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

sqlmapapi.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ paths:
99
responses:
1010
'200':
1111
description: OK
12+
content:
13+
application/json:
14+
schema:
15+
type: object
16+
properties:
17+
version:
18+
type: string
19+
example: "1.5.7.7#dev"
20+
success:
21+
type: boolean
22+
example: true
1223
/task/new:
1324
get:
1425
description: Create a new task
@@ -25,6 +36,7 @@ paths:
2536
example: "fad44d6beef72285"
2637
success:
2738
type: boolean
39+
example: true
2840
/scan/{taskid}/start:
2941
post:
3042
description: Launch a scan
@@ -59,6 +71,7 @@ paths:
5971
example: 19720
6072
success:
6173
type: boolean
74+
example: true
6275
/scan/{taskid}/stop:
6376
get:
6477
description: Stop a scan

0 commit comments

Comments
 (0)