Monday, August 24, 2020

Sslmerge - Tool To Help You Build A Valid SSL Certificate Chain From The Root Certificate To The End-User Certificate


Is an open source tool to help you build a valid SSL certificate chain from the root certificate to the end-user certificate. Also can help you fix the incomplete certificate chain and download all missing CA certificates.

How To Use
It's simple:
# Clone this repository
git clone https://github.com/trimstray/sslmerge

# Go into the repository
cd sslmerge

# Install
./setup.sh install

# Run the app
sslmerge -i /data/certs -o /data/certs/chain.crt
  • symlink to bin/sslmerge is placed in /usr/local/bin
  • man page is placed in /usr/local/man/man8

Parameters
Provides the following options:
  Usage:
sslmerge <option|long-option>

Examples:
sslmerge --in Root.crt --in Intermediate1.crt --in Server.crt --out bundle_chain_certs.crt
sslmerge --in /tmp/certs --out bundle_chain_certs.crt --with-root
sslmerge -i Server.crt -o bundle_chain_certs.crt

Options:
--help show this message
--debug displays information on the screen (debug mode)
-i, --in add certificates to merge (certificate file, multiple files or directory with ssl certificates)
-o, --out saves the result (chain) to file
--with-root add root certificate to the certificate chain

How it works
Let's start with ssllabs certificate chain. They are delivered together with the sslmerge and can be found in the example/ssllabs.com directory which additionally contains the all directory (containing all the certificates needed to assemble the chain) and the server_certificate directory (containing only the server certificate).
The correct chain for the ssllabs.com domain (the result of the openssl command):
Certificate chain
0 s:/C=US/ST=California/L=Redwood City/O=Qualys, Inc./CN=ssllabs.com
i:/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2012 Entrust, Inc. - for authorized use only/CN=Entrust Certification Authority - L1K
1 s:/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2012 Entrust, Inc. - for authorized use only/CN=Entrust Certification Authority - L1K
i:/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2009 Entrust, Inc. - for authorized use only/CN=Entrust Root Certification Authority - G2
2 s:/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2009 Entrust, Inc. - for authorized use only/CN=Entrust Root Certification Authority - G2
i:/C=US/O=Entrust, Inc./OU=www.entrust.net/CPS is incorporated by reference/OU=(c) 2006 Entrust, Inc./CN=Entrust Root Certification Authority
The above code presents a full chain consisting of:
  • Identity Certificate (Server Certificate)
    issued for ssllabs.com by Entrust Certification Authority - L1K
  • Intermediate Certificate
    issued for Entrust Certification Authority - L1K by Entrust Root Certification Authority - G2
  • Intermediate Certificate
    issued for Entrust Root Certification Authority - G2 by Entrust Root Certification Authority
  • Root Certificate (Self-Signed Certificate)
    issued for Entrust Root Certification Authority by Entrust Root Certification Authority

Scenario 1
In this scenario, we will chain all delivered certificates. Example of running the tool:

Scenario 2
In this scenario, we only use the server certificate and use it to retrieve the remaining required certificates. Then, as above, we will combine all the provided certificates. Example of running the tool:

Certificate chain
In order to create a valid chain, you must provide the tool with all the necessary certificates. It will be:
  • Server Certificate
  • Intermediate CAs and Root CAs
This is very important because without it you will not be able to determine the beginning and end of the chain.
However, if you look inside the generated chain after generating with sslmerge, you will not find the root certificate there. Why?
Because self-signed root certificates need not/should not be included in web server configuration. They serve no purpose (clients will always ignore them) and they incur a slight performance (latency) penalty because they increase the size of the SSL handshake.
If you want to add a root certificate to the certificate chain, call the utility with the --with-root parameter.

Certification Paths
Sslmerge allows use of two certification paths:

Output comments
When generating the chain of certificates, sslmerge displays comments with information about certificates, including any errors.
Here is a list of all possibilities:

not found identity (end-user, server) certificate
The message is displayed in the absence of a server certificate that is the beginning of the chain. This is a unique case because in this situation the sslmerge ends its operation displaying only this information. The server certificate is the only certificate required to correctly create a chain. Without this certificate, the correct chain will not be created.

found correct identity (end-user, server) certificate
The reverse situation here - message displayed when a valid server certificate is found.

not found first intermediate certificate
This message appears when the first of the two intermediate certificates is not found. This information does not explicitly specify the absence of a second intermediate certificate and on the other hand it allows to determine whether the intermediate certificate to which the server certificate was signed exists. Additionally, it can be displayed if the second intermediate certificate has been delivered.

not found second intermediate certificate
Similar to the above, however, it concerns the second intermediate certificate. However, it is possible to create the chain correctly using the second certification path, e.g. using the first intermediate certificate and replacing the second with the main certificate.

one or more intermediate certificate not found
This message means that one or all of the required intermediate certificates are missing and displayed in the absence of the root certificate.

found 'n' correct intermediate certificate(s)
This message indicates the number of valid intermediate certificates.

not found correct root certificate
The lack of the root certificate is treated as a warning. Of course, when configuring certificates on the server side, it is not recommended to attach a root certificate, but if you create it with the sslmerge, it treats the chain as incomplete displaying information about the incorrect creation of the chain.

an empty CN field was found in one of the certificates
This message does not inform about the error and about the lack of the CN field what can happen with some certificates (look at example/google.com). Common Name field identifies the host name associated with the certificate. There is no requirement in RFC3280 for an Issuer DN to have a CN. Most CAs do include a CN in the Issuer DN, but some don't, such as this Equifax CA.

Requirements
Sslmerge uses external utilities to be installed before running:

Other

Contributing
See this.

Project architecture
See this.


More articles

  1. Hack Tool Apk No Root
  2. New Hack Tools
  3. Hackers Toolbox
  4. Pentest Tools Linux
  5. Tools Used For Hacking
  6. New Hack Tools
  7. Hacker Tools
  8. Hacker Tools Free
  9. Hacking Tools
  10. Hack Tools Online
  11. Free Pentest Tools For Windows
  12. Hacker
  13. Pentest Tools Website
  14. Hacking Tools Free Download
  15. Hacking Tools Download
  16. Hacking Tools 2020
  17. Hacking Tools For Windows
  18. Hacking Tools For Kali Linux
  19. Pentest Tools Nmap
  20. Pentest Tools Github
  21. Hak5 Tools
  22. Pentest Tools Online
  23. Hack Tools Github
  24. Best Hacking Tools 2019
  25. Tools 4 Hack
  26. Hack Tools Online
  27. How To Hack
  28. Tools Used For Hacking
  29. How To Make Hacking Tools
  30. Hacker Tools
  31. Hacker Tools For Windows
  32. Hacking Apps
  33. Hacking Tools For Pc
  34. Pentest Box Tools Download
  35. Pentest Tools Open Source
  36. Wifi Hacker Tools For Windows
  37. Hacking Tools Windows 10
  38. Hacking Tools Online
  39. Hacking Tools Kit
  40. Hack Tools For Mac
  41. Hackers Toolbox
  42. Hacking App
  43. Pentest Tools For Ubuntu
  44. Pentest Tools Linux
  45. Hacking Tools Pc
  46. Hacker Tools Apk Download
  47. Hacker Tools Mac
  48. Hack Tools Mac
  49. Hack Tools For Pc
  50. Pentest Tools Android
  51. Hacking Tools For Mac
  52. Pentest Tools Bluekeep
  53. Hacking Tools And Software
  54. Pentest Tools Windows
  55. Free Pentest Tools For Windows
  56. Hack Website Online Tool
  57. Hacking Tools For Games
  58. What Is Hacking Tools
  59. Pentest Tools Free
  60. Computer Hacker
  61. Install Pentest Tools Ubuntu
  62. Hacker Tools Linux
  63. Android Hack Tools Github
  64. Best Hacking Tools 2020
  65. Hacker Techniques Tools And Incident Handling
  66. Pentest Recon Tools
  67. What Are Hacking Tools
  68. Hack Tools 2019
  69. Hack Tool Apk No Root
  70. Usb Pentest Tools
  71. Hackrf Tools
  72. New Hacker Tools
  73. Hacking Tools For Mac
  74. Hacking Tools Usb
  75. Hacking Tools For Pc
  76. Hacking Tools Pc
  77. Underground Hacker Sites
  78. Hack Tools Download
  79. Hacker Tools Free
  80. What Is Hacking Tools
  81. Hacker Tools For Ios
  82. Pentest Tools Alternative
  83. Hack Tools For Ubuntu
  84. Hacking Tools Kit
  85. Hacking Tools Software
  86. Hacker Tools 2020
  87. Hacking Tools Kit
  88. Hacker Tools Apk
  89. Pentest Tools Github
  90. Pentest Tools For Windows
  91. Wifi Hacker Tools For Windows
  92. Hacker Tools Free
  93. Hacking Tools For Kali Linux
  94. How To Hack
  95. Nsa Hack Tools Download
  96. Hak5 Tools
  97. Hacker Tools Hardware
  98. Hack Tool Apk
  99. Tools For Hacker
  100. Hacking Tools For Windows 7
  101. Hacker Tools Apk
  102. Hacking Tools Hardware
  103. Pentest Tools Subdomain
  104. Pentest Tools Online
  105. Hacker Tools
  106. How To Install Pentest Tools In Ubuntu
  107. Pentest Tools Kali Linux
  108. Pentest Tools Download
  109. Pentest Box Tools Download
  110. Hacker Security Tools
  111. Hacking Tools Mac
  112. Nsa Hack Tools Download
  113. Pentest Tools Github
  114. Pentest Tools Linux
  115. Pentest Tools Website
  116. Pentest Tools Framework
  117. Hack Apps
  118. Nsa Hack Tools
  119. Hack Website Online Tool
  120. What Are Hacking Tools
  121. Hack Tools For Ubuntu
  122. Hack Tools For Pc
  123. Hacking Tools Kit
  124. Hacker Tools Github
  125. Beginner Hacker Tools
  126. Pentest Recon Tools
  127. What Is Hacking Tools
  128. Hacking Tools For Games
  129. Hacking Tools Kit
  130. Hacker Tools Apk
  131. Hacker Tools Mac
  132. Hack Tools For Games
  133. Hacking Tools For Beginners
  134. Hackrf Tools
  135. Hacking Tools Usb
  136. Hacker Tools Windows
  137. Nsa Hack Tools
  138. Hack Tools Pc
  139. Pentest Tools Android
  140. Top Pentest Tools
  141. Pentest Tools Download
  142. Hacking Tools For Windows 7
  143. Hack Tools Github
  144. Hack And Tools
  145. Pentest Tools For Windows
  146. Computer Hacker
  147. Pentest Tools For Android
  148. Hacking Tools Github
  149. Hacker Hardware Tools
  150. Hacker Tools Software
  151. Hacking Tools For Windows 7
  152. Hacking Tools 2019
  153. Hacker Tool Kit
  154. Hack Rom Tools
  155. Pentest Tools Bluekeep
  156. Hacking Tools And Software
  157. Hacker Tools Apk Download
  158. Hacker Tools Mac
  159. Hacker Tools Github
  160. Hack Tools Github
  161. Hackrf Tools

No comments:

Post a Comment