luke
luke
Did you enable administrator permissions in the OAuth2 section?
@zema1 Do you have any initial thoughts or directions on how this could be implemented in the future ?
> I haven't seen such a requirement before. Can you give me some examples? Thanks! example 10.53.130.246:2000
I have completed 🥳
Everything's okay now 😒
What else should I improve? ``` ┌──(kali㉿kali)-[~/Desktop/hashcat] └─$ perl ./tools/test.sh -m 33100 -t all -a all [ test_1745668353 ] > Init test for hash type 33100. ! unhandled return code,...
@matrix I forgot to install CUDA, and now everything is working, right ``` root@luke:/mnt/c/Users/mdung/Downloads/Music/hashcat# perl ./tools/test.sh -m 33100 -t all -a all -o win [ test_1745680187 ] > Init test...
``` func defaultJSONErrorEnhancer(r *http.Request, err error) interface{} { if e, ok := err.(ErrorEnhancer); ok { return e.EnhanceJSONError() } return &ErrorContainer{Error: ToDefaultError(err, r.Header.Get("X-Request-ID"))} } ``` ``` func ToDefaultError(err error, requestID string)...
@aeneasr When initializing `h := NewJSONWriter(nil)`, it will create a default object `ErrorContainer{Error: ToDefaultError(err, r.Header.Get("X-Request-ID"))}`. ``` func NewJSONWriter(reporter ErrorReporter) *JSONWriter { writer := &JSONWriter{ Reporter: reporter, ErrorEnhancer: defaultJSONErrorEnhancer, } if...