I hereby claim:
- I am Ge0rg3 on github.
- I am georgeomnet (https://keybase.io/georgeomnet) on keybase.
- I have a public key whose fingerprint is 6772 8038 4305 B845 C683 E396 B5A3 FFF0 ACAD E1BD
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import numpy as np | |
| import math | |
| from PIL import Image | |
| img = "pvd_test.png" | |
| RANGES = [8, 8, 16, 32, 64, 128] | |
| SECRET_STRING = "HELLO WORLD "*50 | |
| # Generate range table | |
| RANGE_TABLE = [] |
| pixels_array = [ | |
| 0, 1, 2, 3, | |
| 4, 5, 6, 7, | |
| 8, 9, 10, 11 | |
| ] | |
| width, height = (4, 3) | |
| order = "ROW" | |
| zigzag = True |
| import re | |
| import requests as rq | |
| from subprocess import Popen | |
| from time import sleep | |
| gift_card_regex = r"[0-9a-z]{4}\s[0-9a-z]{4}\s[0-9a-z]{4}\s[0-9a-z]{4}" | |
| while True: | |
| try: | |
| resp = rq.get("https://discord.com/api/v9/guilds/870275171938873395/messages/search?author_id=864079810829484062", headers={ |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| # == Bucket Finder - Trawl Amazon S3 buckets for interesting files | |
| # | |
| # Each group of files on Amazon S3 have to be contained in a bucket and each bucket has to have a unique | |
| # name across the system. This means that it is possible to bruteforce names, this script does this and more | |
| # | |
| # For more information on how this works see my blog post "Whats in Amazon's buckets?" at | |
| # http://www.digininja.org/blog/whats_in_amazons_buckets.php | |
| # |
| #!/usr/bin/env python3 | |
| """ | |
| This copy of s3scanner has been condensed from two files -> one, and logging has been changed to printing. | |
| This way, it can be used as a sub-program instead of a main program | |
| You can find the original s3scanner script at https://github.com/sa7mon/S3Scanner | |
| The file is split into three components: imports, file 1 (s3utils.py) and file 2 (s3scanner.py) | |
| """ | |
| # Ensure everything is flushed immediately |
| #!/usr/bin/env python3 | |
| import threading, argparse, subprocess, botocore.session, os, sys | |
| from queue import Queue | |
| parser = argparse.ArgumentParser('./flumberbuckets.py [options] -i [bucket]') | |
| group = parser.add_mutually_exclusive_group(required=True) | |
| group.add_argument('-w', '--wordlist', dest='wordlist', help='location of wordlist from which permutations of keyword will be generated') | |
| group.add_argument("-s", "--single", dest="single", help="check a single bucket only", action='store_const', const=True, default=False) |
| #!/usr/bin/env python3 | |
| import requests as rq | |
| import sys | |
| if len(sys.argv) < 3: | |
| print("Usage: python sandcastle.py companyname wordlist.txt", flush=True) | |
| exit() | |
| company = sys.argv[1] | |
| wordlist_dir = sys.argv[2] |
| #!/usr/bin/env ruby | |
| require 'net/http' | |
| require 'timeout' | |
| $stdout.sync = true | |
| class S3 | |
| attr_reader :bucket, :domain, :code | |
| def initialize(bucket) |