I hereby claim:
- I am g0blinResearch on github.
- I am g0blin (https://keybase.io/g0blin) on keybase.
- I have a public key whose fingerprint is 4BD3 4279 A5B7 F667 39C7 79DA 080C 8A54 1FCD 1B80
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Author: g0blin (g0blin@hackthebox.com) | |
| # Real Author: Claude (https://claude.ai) | |
| # Initial prompt (attach https://raw.githubusercontent.com/openai/openai-python/refs/heads/main/api.md): | |
| # Please examine the documentation for ChatGPT attached in Markdown format | |
| # | |
| # I'd like you to build a python script that does the following, for Windows | |
| # | |
| # Takes a screenshot of the users desktop |
| #!/bin/sh | |
| DOMAIN=$1 && mkdir -p output/$DOMAIN && curl "https://crt.sh/json?q=$DOMAIN" | jq -s 'map(.[].name_value | split("\n")) | flatten | map(sub("\\*\\.";"")) | unique | sort | .[]' | sed 's/"//g' | tr \\n \\0 | xargs -P 8 -I %s -0 curl --insecure -m 5 -i -o "output/$DOMAIN/%s.html" -D - "https://%s" |