Skip to content

Instantly share code, notes, and snippets.

@t3dotgg
Created April 12, 2025 23:16
Show Gist options
  • Select an option

  • Save t3dotgg/94916bea9a51834674a789e3f4fc4ab3 to your computer and use it in GitHub Desktop.

Select an option

Save t3dotgg/94916bea9a51834674a789e3f4fc4ab3 to your computer and use it in GitHub Desktop.

If it's so easy to guess a uuid, here you go

I ran crypto.randomUUID() twice on my machine.

The first ID was 15041508-fd38-4eda-bc1d-7b74e4738cd9

The second? That's your challenge.

I encrypted a text file with the following command:

openssl enc -aes-256-cbc -salt \
  -in impossible-challenge.txt \
  -out impossible-challenge.txt.enc \
  -pass pass:{2nd-uuid-goes-here}

If you can crack this UUID, I'll give you $1,000.

Tbh it will probably easier to brute force the decryption than to guess the right ID.

glhf 🫡

URL: https://ezkf3xv6eh.ufs.sh/f/3odeDX4eRzTNTR6yUXl7hyMRY9qSDBodia428EnbJtWKgZzp

@sina-salahshour
Copy link
Copy Markdown

sina-salahshour commented Apr 26, 2026

Got Sonnet 3.7 write a bruteforce checker in rust with both CPU multithreading + metal shader for M3 Pro GPU. It's doing ca 30M ops/sec tho I'm too lazy to wait for it.

If anyone's interested, the source code is at https://github.com/EmpiresHQ/bruteforce/ Please donate to charity if it works :)

my single threaded program checks 10M ops/sec... i dont think your code is that optimized

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment