Created
November 2, 2024 12:26
-
-
Save 0xinterface/ede6919c900c23aa66501d6fd18bbefa to your computer and use it in GitHub Desktop.
cfssl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"CN": "internal.tld", | |
"key": { | |
"algo": "rsa", | |
"size": 2048 | |
}, | |
"names": [ | |
{ | |
"C": "US", | |
"ST": "CA", | |
"L": "San Francisco" | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"signing": { | |
"default": { | |
"expiry": "168h" | |
}, | |
"profiles": { | |
"server": { | |
"expiry": "8760h", | |
"usages": [ | |
"signing", | |
"key encipherment", | |
"server auth" | |
] | |
}, | |
"client": { | |
"expiry": "8760h", | |
"usages": [ | |
"signing", | |
"key encipherment", | |
"client auth" | |
] | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"CN": "subdomain.internal.tld", | |
"hosts": ["xyz.internal.tld", "subdomain.internal.tld", "127.0.0.1"], | |
"key": { | |
"algo": "rsa", | |
"size": 2048 | |
}, | |
"names": [ | |
{ | |
"C": "US", | |
"ST": "CA", | |
"L": "San Francisco" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment