mirror of https://github.com/daffainfo/nuclei.git
small code refactoring
parent
3082a9fe2d
commit
ef49270027
|
@ -10,7 +10,7 @@ import (
|
||||||
"net/url"
|
"net/url"
|
||||||
"regexp"
|
"regexp"
|
||||||
"strings"
|
"strings"
|
||||||
"log"
|
|
||||||
"github.com/Knetic/govaluate"
|
"github.com/Knetic/govaluate"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -72,14 +72,9 @@ func HelperFunctions() (functions map[string]govaluate.ExpressionFunction) {
|
||||||
return sEnc, nil
|
return sEnc, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
functions["base64_decode"] = func(args ...interface{}) (interface{}, error) {
|
functions["base64_decode"] = func(args ...interface{}) (interface{}, error) {
|
||||||
sDec, err := base64.StdEncoding.DecodeString(args[0].(string))
|
return base64.StdEncoding.DecodeString(args[0].(string))
|
||||||
if err != nil {
|
}
|
||||||
log.Fatal("error:", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return sDec, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
functions["url_encode"] = func(args ...interface{}) (interface{}, error) {
|
functions["url_encode"] = func(args ...interface{}) (interface{}, error) {
|
||||||
return url.PathEscape(args[0].(string)), nil
|
return url.PathEscape(args[0].(string)), nil
|
||||||
|
|
Loading…
Reference in New Issue