File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 20
20
from thirdparty .six import unichr as _unichr
21
21
22
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
- VERSION = "1.5.7.7 "
23
+ VERSION = "1.5.7.8 "
24
24
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
25
25
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
26
26
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change 9
9
responses :
10
10
' 200 ' :
11
11
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
12
23
/task/new :
13
24
get :
14
25
description : Create a new task
25
36
example : " fad44d6beef72285"
26
37
success :
27
38
type : boolean
39
+ example : true
28
40
/scan/{taskid}/start :
29
41
post :
30
42
description : Launch a scan
59
71
example : 19720
60
72
success :
61
73
type : boolean
74
+ example : true
62
75
/scan/{taskid}/stop :
63
76
get :
64
77
description : Stop a scan
You can’t perform that action at this time.
0 commit comments