Skip to content

Instantly share code, notes, and snippets.

View thehappydinoa's full-sized avatar

Aidan Holland thehappydinoa

View GitHub Profile
@thehappydinoa
thehappydinoa / $React.png
Last active March 17, 2024 16:14
Awesome React Native
$React.png
http://114.33.8.73:88/i
http://115.59.3.70:10234/GFdeDGGhlSAgjPOObAhb
http://121.189.111.218:46719/GFdeDGGhlSAgjPOObAhb
http://122.117.142.237:880/l
http://123.11.88.171:59991/GFdeDGGhlSAgjPOObAhb
http://124.223.106.247:4448/easy.sh
http://124.223.106.247:4448/loligang.arm5
http://124.223.106.247:4448/loligang.arm6
http://124.223.106.247:4448/loligang.arm7
http://124.223.106.247:4449/cli
@thehappydinoa
thehappydinoa / keybase.md
Last active January 10, 2024 04:11
Keybase Verification

Keybase proof

I hereby claim:

  • I am thehappydinoa on github.
  • I am thehappydinoa (https://keybase.io/thehappydinoa) on keybase.
  • I have a public key ASCiwItFDGUsIOPRiRvEU1L9fKbzQSPpJxyByW6rozzN5Ao

To claim this, I am signing this object:

@thehappydinoa
thehappydinoa / PDF_Crack_README.md
Last active August 3, 2023 15:10
Crack PDF files using a date as the password. This script enumerates dates as well as can read in a list of passwords to try.
@thehappydinoa
thehappydinoa / censys_args.txt
Created April 14, 2023 16:32
Zsh-shell autocompletion for Censys CLI. ( .zshrc )
# Add to .zshrc
# Autocompletion for Censys CLI
# EDIT the list of fields BEFORE USE
censys_args=(
account
asm
config
@thehappydinoa
thehappydinoa / CVE_2017_7529.py
Last active November 27, 2022 18:07
Nginx - Remote Integer Overflow Vulnerability
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Nginx - Remote Integer Overflow Vulnerability
# CVE-2017-7529
import sys
import logging
import argparse

Setup Terminal (macOS)

Install iTerm website

iTerm2 is an open source replacement for Apple's Terminal. It's highly customizable and comes with a lot of useful features.

brew install --cask iterm2

Getting started with Selenium

Requirements

  • Python 3.6+ (Download latest 3.x release from python.org)
  • Selenium (Install with pip install selenium)
  • WebDriver (For this project we will be using the latest version of Chromedriver from selenium.dev)
  • IDE of your choice (I personally recommend VSCode)

Make sure both pip and webdriver are in your PATH. Please see this article for instructions.

@thehappydinoa
thehappydinoa / DEVELOPER.md
Last active May 30, 2020 03:10
Awesome Developer Information
@thehappydinoa
thehappydinoa / reencode.py
Last active May 20, 2020 07:11 — forked from mgeeky/reencode.py
ReEncoder.py - script allowing for recursive encoding detection, decoding and then re-encoding. To be used for instance in fuzzing purposes. Requires: jwt (pip install pyjwt)
#!/usr/bin/python
#
# ReEncoder.py - script allowing for recursive encoding detection, decoding and then re-encoding.
# To be used for instance in fuzzing purposes.
#
# NOTICE:
# If the input string's length is divisble by 4, Base64 will be able to decode it - thus, the script
# would wrongly assume it has been encoded using Base64. The same goes for Hex decoding.
# In order to tackle this issue, the script builds up a tree of possible encoding schemes and then evaluate