mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-12 16:12:44 +00:00
7 lines
188 B
Bash
Executable File
7 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
# generate private key
|
|
openssl genrsa -out test.key 2048
|
|
# generate self-signed certificate
|
|
# generate certificate
|
|
openssl req -new -x509 -key test.key -out test.pem -days 365
|