Skip to content

Instantly share code, notes, and snippets.

@metall0id
metall0id / decode-websphere-xor-password.py
Created September 8, 2014 12:44
Decode WebSphere passwords that use {xor} prepended tag
#
# Author : Tyrone Erasmus
# Version : 1.0
# Description: Decode WebSphere passwords that use {xor} prepended tag
#
#!/usr/bin/python
import argparse
import base64
@metall0id
metall0id / inline-file-xfer.py
Created May 18, 2014 20:42
Transfer files inline once you have command execution on Linux/AIX/Android
#
# Author : Tyrone Erasmus
# Version : 1.0
# Description: Transfer files inline once you have command execution
#
# Linux: echo -n -e "\x41"
# AIX: echo "\0101\c"
# Android: echo -n -e "\0101"
# TODO: Windows?