Skip to content

Instantly share code, notes, and snippets.

View TheShooter's full-sized avatar
⚔️
Warrior without war.

TheShooter

⚔️
Warrior without war.
  • zygote
  • bootloader
View GitHub Profile
@TheShooter
TheShooter / download_protectedFile.js
Created March 26, 2022 17:28
How To Download Protected PDF From Google Drive
1. Open console
2. Slowly scroll document
3. In console launch next script:
let jspdf = document.createElement("script");
jspdf.onload = function () {
let pdf = new jsPDF();
let elements = document.getElementsByTagName("img");
for (let i in elements) {
@TheShooter
TheShooter / wp-wordlist.sh
Created July 29, 2022 23:13 — forked from Roni-Carta/wp-wordlist.sh
wp-wordlist helps you create wordlist of all the Wordpress' Themes and Plugins available
wp-wordlist()
{
option="$1"
if [[ "$option" == *"plugin"* ]]; then
curl -s https://plugins.svn.wordpress.org/ | tail -n +5 | sed -e 's/<[^>]*>//g' -e 's/\///' -e 's/ \+//gp' | grep -v "Powered by Apache" | sort -u
elif [[ "$option" == *"theme"* ]]; then
curl -s https://themes.svn.wordpress.org/ | tail -n +5 | sed -e 's/<[^>]*>//g' -e 's/\///' -e 's/ \+//gp' | grep -v "Powered by Apache" | sort -u
fi
}
@TheShooter
TheShooter / ConfigDecryptorUtility.cs
Last active March 19, 2024 00:51
This C# utility provides a simple tool for decrypting encrypted sections within .NET configuration files (web.config - app.config). An alternative to Aspnet_regiis.exe by Microsoft.
using System;
using System.Configuration;
using System.IO;
namespace ConfigDecryptorUtility
{
class Program
{
static void Main(string[] args)
{
@TheShooter
TheShooter / flutter_ios.js
Created October 1, 2025 13:02 — forked from AICDEV/flutter_ios.js
Frida trace Flutter Functions on iOS
/**
* run the script to a running app: frida -U "appName" -l flutter_ios.js --no-pause
* start app direct with the script: frida -Uf bundleIdentifier -l flutter_ios.js --no-pause
*/
// #############################################
// HELPER SECTION START
var colors = {
"resetColor": "\x1b[0m",
"green": "\x1b[32m",
"yellow": "\x1b[33m",