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:
| @echo off | |
| REM ---------------------------------------- | |
| REM 1. Ensure script is running as Administrator | |
| REM ---------------------------------------- | |
| net session >nul 2>&1 | |
| if %errorlevel% neq 0 ( | |
| echo Requesting administrative privileges... | |
| powershell -Command "Start-Process '%~f0' -Verb RunAs" | |
| exit /b | |
| ) |
| @echo off | |
| REM ---------------------------------------- | |
| REM 1. Ensure script is running as Administrator | |
| REM ---------------------------------------- | |
| net session >nul 2>&1 | |
| if %errorlevel% neq 0 ( | |
| echo Requesting administrative privileges... | |
| powershell -Command "Start-Process '%~f0' -Verb RunAs" | |
| exit /b | |
| ) |
| #!/usr/bin/env bash | |
| # conda.sh - interactive conda env selector | |
| # Must be sourced: source /path/to/conda.sh | |
| # Must be sourced for activation to affect the current shell. | |
| if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then | |
| echo "This script must be sourced: source conda.sh" >&2 | |
| exit 1 | |
| fi |
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 |