hunterli
hunterli
check read permission on /data/local/tmp/cert-der.crt for hooked app.
I encounter the program crash on windows xp too, maybe following patch can help: diff --git a/github.com/lxn/win/uxtheme.go b/github.com/lxn/win/uxtheme.go index fff3022..17e8093 100644 --- a/github.com/lxn/win/uxtheme.go +++ b/github.com/lxn/win/uxtheme.go @@ -158,7 +158,7 @@ func...
@agentzh OK, I'll try it.
@spacewander FYI: [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent) said: To be more stringent in adhering to RFC 3986 (which reserves !, ', (, ), and *), even though these characters have no formalized URI delimiting...
@spacewander I test url encode function in php and lua, both of them output %27. So may be compatible with other programming language to escape `sub-delims` is a acceptable answer?...
@spacewander I **"Try Go"** in [https://golang.org](https://golang.org): package main import( "fmt" "net/url" ) func main() { fmt.Println(url.QueryEscape("'")) } output:%27
@spacewander In RFC 3986 2.2 Reserved Characters: reserved = gen-delims / sub-delims gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@" sub-delims = "!"...
被你弄糊涂了,Sorry,中文直接上了,看不懂就放弃了。也可能是我理解错误,RFC说"Reserved Characters"都应该escape,"Reserved Characters"包含gen-delims和sub-delims,这样的话gen-delims和sub-delims都应该escape,否则就是"白马非马"了。
> URI producing applications should percent-encode data octets that correspond to characters in the reserved set unless these characters are specifically allowed by the URI scheme to represent data in...