mirror of
https://github.com/shadow1ng/fscan.git
synced 2026-09-22 03:10:42 +08:00
修复poc发包时16进制payload的bug
This commit is contained in:
@@ -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)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user