修复poc发包时16进制payload的bug

This commit is contained in:
shadow1ng 2021-02-08 11:11:27 +08:00
parent 9ba3ec7054
commit 6b2fa57cd0
1 changed files with 2 additions and 0 deletions

View File

@ -94,6 +94,8 @@ func executePoc(oReq *http.Request, p *Poc) (bool, error) {
variableMap[k] = UrlTypeToString(value)
case int64:
variableMap[k] = int(value)
case []uint8:
variableMap[k] = fmt.Sprintf("%s", out)
default:
variableMap[k] = fmt.Sprintf("%v", out)
}