Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
en:utility-scripts:pfxexx [2025/03/14 15:15] – Webmaster VitaNetworks | en:utility-scripts:pfxexx [2025/03/14 15:46] (current) – Webmaster VitaNetworks | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== pfxexx (What is this?) ====== | ====== pfxexx (What is this?) ====== | ||
+ | |||
+ | PFX exporter for OPNsense' | ||
+ | |||
+ | ===== Background ====== | ||
+ | |||
+ | The ACME client on OPNsense has a lot of useful utilities (such as installing certificates on Synology' | ||
+ | |||
+ | Certain servers require PFX certificates and will refuse other formats. PFX are bundle files, that usually include the whole chain of certificates (public keys) as well as the private key of the issued certificate. Since they have a private key, they also often have a password protecting them. You may skip this password but you will still have to press return/ | ||
+ | |||
+ | ===== How does it work? ===== | ||
+ | |||
+ | The original idea for this was to add an automation per certificate so the process would focus only on that certificate, | ||
+ | |||
+ | The ACME plugin creates a random directory under ''/ | ||
+ | |||
+ | So instead the script will: | ||
+ | 1. Find subdirectories of: | ||
+ | 1.1 ''/ | ||
+ | 1.1.1 '' | ||
+ | 1.1.2 '' | ||
+ | 1.2 ''/ | ||
+ | 1.2.1 '' | ||
+ | 2. If all files are found under the matching directory name, it will proceed to decode the common name (cn) value of the certificate | ||
+ | 3. It will retrieve the passphrase stored in the file referenced by variable '' | ||
+ | 4. Using the CN value, and the password from pfile; it will create a new PFX file in ''/ | ||
+ | |||
+ | ===== Installation ===== | ||
+ | |||
+ | There' | ||
+ | |||
+ | ''/ | ||
+ | |||
+ | You don't need to transfer files to the firewall, as out sites allow hotlinking, you can just use curl to get the script if you please. Additionally, | ||
+ | |||
+ | Assuming you'll be downloading to ''/ | ||
+ | 1. Create a save location if it doesn' | ||
+ | mkdir -p ''/ | ||
+ | The command above does nothing if the directory already exists. | ||
+ | 2. Download: | ||
+ | curl -o < | ||
+ | <code bash> | ||
+ | curl -o / | ||
+ | </ | ||
+ | |||
+ | ===== Options/ | ||
+ | |||
+ | Neither of the only two options affect how the script works, they only affect the amount of '' | ||
+ | |||
+ | ==== --unmute ==== | ||
+ | |||
+ | The script normally discards all output to avoid slowing down firewalls and reduce wearing of flash storage. This option eliminates the discarding of the minimal data it would otherwise output. | ||
+ | |||
+ | ==== --debug ==== | ||
+ | |||
+ | This is for testing the script itself, not so much about certificates. Pretty much a useless option for most people. | ||
+ | |||
+ | ===== Requirements ===== | ||
+ | |||
+ | The script must be edited or at least review to verify the variables are correct at least reviewed edite hard-coded with the variab | ||
+ | |||
+ | <code bash [enable_line_numbers=" | ||
+ | # | ||
+ | |||
+ | printOPTIONS() { | ||
+ | cat << _options | ||
+ | ┌────────────────────────────────────────────────────────────────────────────i─┐ | ||
+ | │ pfxexx — PFX Exporter for the ACME plugin on OPNsense | ||
+ | │ Copyright (C) 2025 Gustavo Domínguez | ||
+ | │ GNU General Public License version 3 │ | ||
+ | ├─────────────────────────────────────────────────────────OPTIONS/ | ||
+ | │ There are no real options*, only requirements: | ||
+ | │ 1. The script requires bash to run. To install run: 'pkg install -y bash' | ||
+ | │ 2. Variables must be reviewed or changed before running the script. | ||
+ | │ - Likely the most important will be the password file, the " | ||
+ | │ which a password will be read in order to set it on PFX exports. | ||
+ | │ │ | ||
+ | │ *: except for --unmute and --debug, neither of which affects how the script | ||
+ | │ works in terms of exporting PFXs. See more info at: │ | ||
+ | │ https:// | ||
+ | ├────────────────────────────────────────────────────────────────────────────@─┤ | ||
+ | │ Gustavo Domínguez < | ||
+ | │ senseivita.com | antipostal.com | vitanetworks.link | ||
+ | └──────────────────────────────────────────────────────────────────────────────┘ | ||
+ | _options | ||
+ | } | ||
+ | restoreOptions(){ set +e ; set +x ; set +v;} | ||
+ | enableDebugOptions(){ set -e ; set -x ; set -v;} | ||
+ | trap restoreOptions ERR EXIT | ||
+ | if [[ $1 =~ " | ||
+ | |||
+ | verifiedPieces='' | ||
+ | cbn='/ | ||
+ | kbn='/ | ||
+ | ebn='/ | ||
+ | cnlist='' | ||
+ | pfile='/ | ||
+ | |||
+ | main() { | ||
+ | |||
+ | checkPfxExportDir() { | ||
+ | if ! [[ -d " | ||
+ | mkdir -p " | ||
+ | fi | ||
+ | } | ||
+ | |||
+ | candidates=( " | ||
+ | echo " | ||
+ | |||
+ | partsCheck() { | ||
+ | for i in " | ||
+ | echo " | ||
+ | if [[ -f " | ||
+ | echo " | ||
+ | if [[ -f " | ||
+ | echo " | ||
+ | if [[ -f " | ||
+ | echo " | ||
+ | verifiedPieces+=( " | ||
+ | else continue; fi | ||
+ | else continue; fi | ||
+ | else continue; fi | ||
+ | done | ||
+ | } | ||
+ | |||
+ | exportPFXs() { | ||
+ | for iset in " | ||
+ | cn=$(openssl x509 -noout -subject -in " | ||
+ | cnlist+=( " | ||
+ | openssl pkcs12 -export -out " | ||
+ | done | ||
+ | } | ||
+ | |||
+ | printResuts() { | ||
+ | echo Found the following certificates: | ||
+ | printf ' | ||
+ | } | ||
+ | |||
+ | if checkPfxExportDir; | ||
+ | if partsCheck; then | ||
+ | if exportPFXs; then | ||
+ | echo " | ||
+ | printResuts | ||
+ | else | ||
+ | if [[ $1 =~ " | ||
+ | exit | ||
+ | fi | ||
+ | else | ||
+ | if [[ $1 =~ " | ||
+ | exit | ||
+ | fi | ||
+ | else | ||
+ | if [[ $1 =~ " | ||
+ | exit | ||
+ | fi | ||
+ | } | ||
+ | |||
+ | while [ " | ||
+ | case " | ||
+ | -h|--help|--options|help) printOPTIONS ;; | ||
+ | --debug|debug) shift; main debug ;; | ||
+ | --unmute) main ;; | ||
+ | *) main > /dev/null 2>&1 ;; | ||
+ | esac | ||
+ | shift | ||
+ | done | ||
+ | </ |