Ethical Hacking: #7 Custom SSL Certificate

by asokawotulo on 27/06/2019

In order to receive incoming traffic from a site that uses HTTPS instead of HTTP an SSL Certificate is required in order to prevent errors from popping up on the screen. This occurrence might happen a lot when doing things involving BurpSuite.

First run the command
openssl genrsa -des3 -out myCA.key 2048
in order to create a private key locked with a password

Then running the command
openssl req -x509 -new -nodes -key myCA.key -sha256 -days 1825 -out myCA.pem
will prompt you to insert various fields for the SSL Certificate to display

asoka.watulo@binus.ac.id

Comments are closed.