mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-07-13 21:02:44 +08:00
修复poc发包时16进制payload的bug
This commit is contained in:
parent
9ba3ec7054
commit
6b2fa57cd0
@ -94,6 +94,8 @@ func executePoc(oReq *http.Request, p *Poc) (bool, error) {
|
|||||||
variableMap[k] = UrlTypeToString(value)
|
variableMap[k] = UrlTypeToString(value)
|
||||||
case int64:
|
case int64:
|
||||||
variableMap[k] = int(value)
|
variableMap[k] = int(value)
|
||||||
|
case []uint8:
|
||||||
|
variableMap[k] = fmt.Sprintf("%s", out)
|
||||||
default:
|
default:
|
||||||
variableMap[k] = fmt.Sprintf("%v", out)
|
variableMap[k] = fmt.Sprintf("%v", out)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user