Skip to content

Instantly share code, notes, and snippets.

Keybase proof

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:

@g0blinResearch
g0blinResearch / ochat.py
Last active November 9, 2024 15:08
Desktop assistant?
# 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
@g0blinResearch
g0blinResearch / recon.sh
Created January 7, 2025 02:24
Takes a domain, queries certificate transparency logs and grabs website content for greppitygreprep
#!/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"