How to check mod_ssl.so version?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








5















I'm running Apache 2.2.3 and would like to find out, how to check version of mod_ssl.so and if this module can support TLSv1.1 and TLSv1.2.










share|improve this question






























    5















    I'm running Apache 2.2.3 and would like to find out, how to check version of mod_ssl.so and if this module can support TLSv1.1 and TLSv1.2.










    share|improve this question


























      5












      5








      5


      1






      I'm running Apache 2.2.3 and would like to find out, how to check version of mod_ssl.so and if this module can support TLSv1.1 and TLSv1.2.










      share|improve this question
















      I'm running Apache 2.2.3 and would like to find out, how to check version of mod_ssl.so and if this module can support TLSv1.1 and TLSv1.2.







      apache-httpd ssl






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 10 at 4:11









      Rui F Ribeiro

      42k1483142




      42k1483142










      asked Mar 19 '15 at 13:33









      user3299199user3299199

      41125




      41125




















          2 Answers
          2






          active

          oldest

          votes


















          3














          A way to do this on a linux/unix system:



          # strings mod_ssl.so | egrep '^mod_ssl/|^OpenSSL '


          • mod_ssl/2.2.6

          • OpenSSL 0.9.8f 11 Oct 2007





          share|improve this answer
































            0














            grep TLSv1.2 /usr/lib/apache2/modules/mod_ssl.so





            share|improve this answer























            • Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?

              – user3299199
              Mar 19 '15 at 13:42











            • Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.

              – Bogdan
              Mar 19 '15 at 13:45











            • In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?

              – user3299199
              Mar 19 '15 at 17:17











            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "106"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f191213%2fhow-to-check-mod-ssl-so-version%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            3














            A way to do this on a linux/unix system:



            # strings mod_ssl.so | egrep '^mod_ssl/|^OpenSSL '


            • mod_ssl/2.2.6

            • OpenSSL 0.9.8f 11 Oct 2007





            share|improve this answer





























              3














              A way to do this on a linux/unix system:



              # strings mod_ssl.so | egrep '^mod_ssl/|^OpenSSL '


              • mod_ssl/2.2.6

              • OpenSSL 0.9.8f 11 Oct 2007





              share|improve this answer



























                3












                3








                3







                A way to do this on a linux/unix system:



                # strings mod_ssl.so | egrep '^mod_ssl/|^OpenSSL '


                • mod_ssl/2.2.6

                • OpenSSL 0.9.8f 11 Oct 2007





                share|improve this answer















                A way to do this on a linux/unix system:



                # strings mod_ssl.so | egrep '^mod_ssl/|^OpenSSL '


                • mod_ssl/2.2.6

                • OpenSSL 0.9.8f 11 Oct 2007






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jan 26 '17 at 8:15









                jasonwryan

                50.8k14135190




                50.8k14135190










                answered Jan 26 '17 at 7:59









                Tom VTom V

                312




                312























                    0














                    grep TLSv1.2 /usr/lib/apache2/modules/mod_ssl.so





                    share|improve this answer























                    • Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?

                      – user3299199
                      Mar 19 '15 at 13:42











                    • Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.

                      – Bogdan
                      Mar 19 '15 at 13:45











                    • In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?

                      – user3299199
                      Mar 19 '15 at 17:17















                    0














                    grep TLSv1.2 /usr/lib/apache2/modules/mod_ssl.so





                    share|improve this answer























                    • Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?

                      – user3299199
                      Mar 19 '15 at 13:42











                    • Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.

                      – Bogdan
                      Mar 19 '15 at 13:45











                    • In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?

                      – user3299199
                      Mar 19 '15 at 17:17













                    0












                    0








                    0







                    grep TLSv1.2 /usr/lib/apache2/modules/mod_ssl.so





                    share|improve this answer













                    grep TLSv1.2 /usr/lib/apache2/modules/mod_ssl.so






                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Mar 19 '15 at 13:37









                    BogdanBogdan

                    7311512




                    7311512












                    • Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?

                      – user3299199
                      Mar 19 '15 at 13:42











                    • Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.

                      – Bogdan
                      Mar 19 '15 at 13:45











                    • In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?

                      – user3299199
                      Mar 19 '15 at 17:17

















                    • Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?

                      – user3299199
                      Mar 19 '15 at 13:42











                    • Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.

                      – Bogdan
                      Mar 19 '15 at 13:45











                    • In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?

                      – user3299199
                      Mar 19 '15 at 17:17
















                    Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?

                    – user3299199
                    Mar 19 '15 at 13:42





                    Thank You. Do you know how I can update mod_ssl.so?Is it only by updating Apache?

                    – user3299199
                    Mar 19 '15 at 13:42













                    Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.

                    – Bogdan
                    Mar 19 '15 at 13:45





                    Yes. That lib is part of Apache. On some distros it could be a separate package but nevertheless if you upgrade Apache it should also update that lib.

                    – Bogdan
                    Mar 19 '15 at 13:45













                    In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?

                    – user3299199
                    Mar 19 '15 at 17:17





                    In order to get newer version of mod_ssl.so, I have compiled and installed Apache 2.2.29 (in different location) from source and then replaced mod_ssl.so on Apache 2.2.3. Looks that mod_ssl.so from Apache 2.2.29 does not support TLSv1.1 and TLSv1.2. Do you think this is sufficient verification and I can say that Apache 2.2.29 does not support TLSv1.1 and TLSv1.2?

                    – user3299199
                    Mar 19 '15 at 17:17

















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f191213%2fhow-to-check-mod-ssl-so-version%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown






                    Popular posts from this blog

                    Peggy Mitchell

                    Palaiologos

                    The Forum (Inglewood, California)