Skip to content

Instantly share code, notes, and snippets.

View schniggie's full-sized avatar
๐Ÿ’ฃ
/${@๐š“๐šŠ๐šŸ๐šŠ.๐š•๐šŠ๐š—๐š.๐š๐šž๐š—๐š๐š’๐š–๐šŽ@๐š๐šŽ๐š๐š๐šž๐š—๐š๐š’๐š–๐šŽ().๐šŽ๐šก๐šŽ๐šŒ("๐š†๐šƒ๐™ต ๐™ฐ๐š๐š•๐šŠ๐šœ๐šœ๐š’๐šŠ๐š—")}/

แ„ƒฮ‰ะฏIฦงฦฌำจPฮ‰ฮฃะฏ (Bแ„‚ฮฃแ„ƒKMฮ›ะŸะŸ-)Dะฏฮฃฮ‰ฮฃะฏ schniggie

๐Ÿ’ฃ
/${@๐š“๐šŠ๐šŸ๐šŠ.๐š•๐šŠ๐š—๐š.๐š๐šž๐š—๐š๐š’๐š–๐šŽ@๐š๐šŽ๐š๐š๐šž๐š—๐š๐š’๐š–๐šŽ().๐šŽ๐šก๐šŽ๐šŒ("๐š†๐šƒ๐™ต ๐™ฐ๐š๐š•๐šŠ๐šœ๐šœ๐š’๐šŠ๐š—")}/
View GitHub Profile
@wilmardo
wilmardo / jackett.md
Created October 29, 2019 13:08
Jackett add public indexers all in one go

Source: Jackett/Jackett#1576 (comment)

From the Jackett page, click the "add indexer" button so that the pop up window with the full list of indexers appears.

You'll then need to open your browser's development toolbar (in Chrome just hit F12) and go to the JavaScript Console and enter the following:

////hack to add all free indexers in Jackett
$(document).ready(function () {
	EnableAllUnconfiguredIndexersList();
@tomnomnom
tomnomnom / short-wordlist.txt
Created September 29, 2019 19:44
short-wordlist
/.s3cfg
/phpunit.xml
/nginx.conf
/.vimrc
/LICENSE.md
/yarn.lock
/Gulpfile
/Gulpfile.js
/composer.json
/.npmignore
@gpolitis
gpolitis / 99-incoming-tcp-connection-gw-override.sh
Last active July 13, 2023 17:07 — forked from Shourai/Allowing SSH on a server with an active OpenVPN client.md
Allowing SSH on a server with an active OpenVPN client
#!/bin/sh
# based on https://gist.github.com/Shourai/1088f78b5e3696190a8ce6a6045c477b
if [ $# -lt 2 ]; then
echo "Usage: $0 interface up|down" 1>&2
exit 1;
fi
DEV=$1
@yazinsai
yazinsai / Android-Emulator-on-AWS-EC2.md
Last active August 9, 2024 15:26 — forked from atyachin/Android-Emulator-on-AWS-EC2.txt
Installing and running Android Emulator on Amazon AWS EC2 (Ubuntu 16.04 / m5.xlarge)

Getting the Android Emulator running on EC2 ๐Ÿ“ฑ

# @ your EC2 instance
sudo apt update
sudo apt install openjdk-8-jre unzip
wget https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip
unzip sdk-tools-linux-4333796.zip -d android-sdk
sudo mv android-sdk /opt/
export ANDROID_SDK_ROOT=/opt/android-sdk
@akabe1
akabe1 / frida_multiple_unpinning.js
Last active May 6, 2025 18:05
Another Android ssl certificate pinning bypass for various methods
/* Android ssl certificate pinning bypass script for various methods
by Maurizio Siddu
Run with:
frida -U -f <APP_ID> -l frida_multiple_unpinning.js [--no-pause]
*/
setTimeout(function() {
Java.perform(function() {
console.log('');
@janeczku
janeczku / 00-cloud-config.yml
Last active December 2, 2024 01:28
Annotated RancherOS Cloud-init configuration snippets
#cloud-config
# Set the hostname for this machine (takes precedence over hostname assigned by DHCP lease).
hostname: myhost
# Authorize SSH keys for the `rancher` sudoer user
ssh_authorized_keys:
- ssh-rsa AAA...ZZZ example1@rancher
@lynt-smitka
lynt-smitka / .htaccess
Last active August 12, 2024 09:18
Block hidden files except .well-known - Apache .htaccess + Nginx
RewriteRule "(^|/)\.(?!well-known\/)" - [F]
@haccer
haccer / scanio.sh
Last active February 18, 2025 14:06
PoC script to mass-locate vulnerable subdomains using results from Rapid7's Project Sonar
#!/bin/bash
# Usage : ./scanio.sh <save file>
# Example: ./scanio.sh cname_list.txt
# Premium
function ech() {
spinner=( "|" "/" "-" "\\" )
while true; do
for i in ${spinner[@]}; do
echo -ne "\r[$i] $1"
@mgeeky
mgeeky / smtpAudit.py
Last active April 2, 2024 09:47
SMTP Black-Box configuration audit / penetration testing tool - able to parse SPF/DKIM/Banner, test for Open-Relaying, test SSL/TLS enforcement and verify other common misconfigurations.
#!/usr/bin/python3
#
# SMTP Server configuration black-box testing/audit tool, capable of auditing
# SPF/Accepted Domains, DKIM, DMARC, SSL/TLS, SMTP services, banner, Authentication (AUTH, X-EXPS)
# user enumerations (VRFY, EXPN, RCPT TO), and others.
#
# Currently supported tests:
# 01) 'spf' - SPF DNS record test
# - 'spf-version' - Checks whether SPF record version is valid
# - 'all-mechanism-usage' - Checks whether 'all' mechanism is used correctly
@Pulimet
Pulimet / AdbCommands
Last active May 9, 2025 15:17
Adb useful commands list
Hi All!
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future.
Feel free to request any features you'd like to see, and I'll prioritize them accordingly.
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly whatโ€™s happening and learn from it.
Here's the link to the repository: https://github.com/Pulimet/ADBugger
App Description:
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups.