Rob Fuller

Results 73 comments of Rob Fuller

> An example command would look like: `python reg.py /@ add -keyName -v -vt REG_MULTI_SZ -vd First Second 'Multi Space' Fourth` Really like this format. @Marshall-Hallenbeck 👍

There seems to be some serious problems with the SID and CSRF tokens. I'm still working through the issues, but there are double CSRF tokens problems and the SID cookie...

Here is my diff on the CSRF token for signup: ```diff diff --git a/server/server.go b/server/server.go index 20de85d..3f5877c 100644 --- a/server/server.go +++ b/server/server.go @@ -312,7 +312,7 @@ func (s *Server) withHandler(h...

Narrowed it down to the fact that the SID session cookie uses the `Secure` flag, so it's not set when using HTTP. I suggest making the docker build create a...

Another option is to only set the Secure flag if some kind of environment variable is used for dev vs production and warnings are given for each. ```go // Set-Cookie...

@deadjakk this is badass. thanks for this 👍

I will say that it would be nice to simply specify a proxy url like `--proxy-url socks5://192.168.1.100:1080` or `--proxy-url http://192.168.1.10:8128`, but also have the ability to say `--proxy` and it...

I understand that part of your request is having a preview option but you can already pull PDFs out of Base64 pretty easily, for example but you don't even need...

I have tried using the following documentation with the same result: - https://docs.discuit.net/self-hosting#running-with-docker - https://github.com/discuitnet/discuit?tab=readme-ov-file#running-with-docker Did I miss a step somewhere?