base64 with Bash Cheat Sheet for use with bash shell. Encode echo 'TEXT_TO_ENCODE' | base64 Decode echo 'TEXT_TO_DECODE' | base64 -d
Base64 with Powershell Cheat Sheet for use with powershell task automation framework. Encode [System.Convert]:: ToBase64String([System.Text.Encoding]:: UTF8.GetBytes("MY_PLAIN_TEXT")) Decode [System.Text.Encoding]:: UTF8.GetString([System.Convert]:: FromBase64String("MY_ENCODED_TEXT"))
cURL with Bash Cheat Sheet for use with bash shell. for each for ((i=1;i<=100;i++)); do curl -k "http://URL"; done; infinite (curl) while true; do curl -k "http://URL"; done; infinite (busybox)...
SSH Cheat Sheet for use with the SSH protocol. key generate ssh-keygen -t rsa -b 2048 login ssh -i [KEY] [USERNAME]@[MACHINE] file copy scp -i [KEY] -r [USERNAME]@[MACHINE]:[FROM] [TO]
Firewall with Powershell Cheat Sheet for use with powershell task automation framework. Firewall Enable ICMP netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow Enable...
PFX (Personal Information Exchange Format) Certificates serve the purpose of encrypting data. For example, encrypting traffic to your WordPress website. Or encrypting data in transfer between two machines. Therefore, encryption...