Dan Salmon

Results 49 comments of Dan Salmon

According to [this comment](https://stackoverflow.com/a/6770913) it looks like you can use backticks instead of double quotes to surround the regex pattern and then you won't have to escape the slashes.

I am admittedly a Go novice, but when I attempted to build this fork with `go build .` I got the following errors: ``` ./main.go:106:20: sess.GithubURL undefined (type *core.Session has...

sqlite would be pretty easy to implement.

The issue appears to remain. I attempted to fix it by replacing `chalboard.js` in this theme with the `chalboard.js` from the CTFd 'core' theme which it ships with, but to...

I'm getting this too. Not sure what the issue is

Whoops, looks like it always _prints_ that it's using 4 threads. https://github.com/sa7mon/S3Scanner/blob/fafa30a3bd35b496b3f7db9bfc35b75a8a06bcd1/S3Scanner/S3Service.py#L278 I'll fix this, but yeah it is actually dumping with as many threads as you specify.

I've thought about it for a long time - I'm just not sure the best way to handle it. It's possible for the tool to be scanning for a long...

Could you elaborate on “JSON hijacking”? I’ve never heard the term before On Wed, Nov 17, 2021 at 11:21 AM, Savvy95 ***@***.***> wrote: > Don't use the first option as...

https://news.ycombinator.com/item?id=22084951

Do research to see if it helps to only import methods instead of whole modules i.e. `from sys import exit` vs `import sys` https://stackoverflow.com/a/51300944/2307994