checkssl | checks ssl certs for a set of domains | TLS library

 by   srvrco Shell Version: v1.18 License: GPL-2.0

kandi X-RAY | checkssl Summary

kandi X-RAY | checkssl Summary

checkssl is a Shell library typically used in Security, TLS applications. checkssl has no bugs, it has no vulnerabilities, it has a Strong Copyleft License and it has low support. You can download it from GitHub.

With the good work by "Let’s Encrypt" in providing free SSL certs for users, I wanted a quick way to check all the domains I look after to determine which ones have correct SSL certs, and which ones are in need of updating etc. This bash file is the first draft of a program to do that. It can either be run against a list of file names, from the directories in your Lets Encrypt live directory or on a single server with the aim of getting all the domain names from the server.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              checkssl has a low active ecosystem.
              It has 86 star(s) with 39 fork(s). There are 8 watchers for this library.
              OutlinedDot
              It had no major release in the last 12 months.
              There are 0 open issues and 8 have been closed. On average issues are closed in 5 days. There are no pull requests.
              It has a neutral sentiment in the developer community.
              The latest version of checkssl is v1.18

            kandi-Quality Quality

              checkssl has 0 bugs and 0 code smells.

            kandi-Security Security

              checkssl has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
              checkssl code analysis shows 0 unresolved vulnerabilities.
              There are 0 security hotspots that need review.

            kandi-License License

              checkssl is licensed under the GPL-2.0 License. This license is Strong Copyleft.
              Strong Copyleft licenses enforce sharing, and you can use them when creating open source projects.

            kandi-Reuse Reuse

              checkssl releases are available to install and integrate.
              Installation instructions are not available. Examples and code snippets are available.

            Top functions reviewed by kandi - BETA

            kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
            Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of checkssl
            Get all kandi verified functions for this library.

            checkssl Key Features

            No Key Features are available at this moment for checkssl.

            checkssl Examples and Code Snippets

            No Code Snippets are available at this moment for checkssl.

            Community Discussions

            QUESTION

            TLS1.2 negotiation fails within a 4.5.1 application when .net Framework 4.7.2 is installed
            Asked 2018-Jul-12 at 14:56

            we are currently experiencing an issue with our web based application. It runs well under any OS win2k12 R2 and higher on an IIS. The application is compiled targeting .net Framework 4.5.1. Whilst we are aware of newer .NET Framework versions, we struggle with the update due to several inconvenient 3rd party dependencies.

            Recently, Microsoft released KBs which implicitly installed .NET Framework 4.7.2. It is customers with these updates installed, that face a major issue right now.

            The following code, while oversimplified, contains all necessary information.

            ...

            ANSWER

            Answered 2018-Jul-12 at 14:56

            Try setting these registry settings:

            Source https://stackoverflow.com/questions/51261819

            QUESTION

            Vert.x 2 HTTP server on Netty: response bytes are written but never flushed, channel never closed
            Asked 2017-Oct-09 at 14:29

            Using the HTTP server in Vert.x 2.1.6 (based on Netty 4.0.21) to handle HTTP requests, static files are read from the file system and written to the client. Occasionally, during multiple simultaneous requests (read: rapid clicking in the browser), a random request never gets any response. E.g. clicking the logout link will trigger requests for background image, a logo, a couple of css files etc. All files are returned successfully except, say, the logo file, for which the http request just hangs. The situation does not always occur, but seems to be triggered by not waiting for previous requests to finish before launching new ones.

            To try to figure out what is going on, I added LoggingHandlers to the netty pipeline created by the Vert.x DefaultHttpServer. The example below shows output for a successful and an unsuccessful request for the file logo.png (size 12754B). The output leaves me with two questions:

            1. In the successful example, after writing the 12754 bytes of the actual file, another 12774 + 10 bytes are written. What are those bytes?
            2. In the unsuccessful example, there is a FLUSH operation before the WRITE operation, after which no more activity can be seen. Even explicitly closing the response is ignored. What is going on?

            EDIT regarding question 1: I realized the channel is used for multiple HTTP requests, so the trailing bytes are just another file being written.

            The request:

            ...

            ANSWER

            Answered 2017-Oct-09 at 14:29

            So it seems I found the source of the error. To me, it looks like a classic concurrency issue. I fixed it by changing a single line of code in vertx-core version 2.1.6, changing a write operation to writeAndFlush. The fix is probably bypassing the intentions of the original author and will result in a few un-necessary flush operations on the netty channel.

            This is what I think is happening. To follow my reasoning in the code, have a look at org.vertx.java.core.net.impl.ConnectionBase in 2.1.6. There are two flags involved: read and needsFlush. I am assuming here that there are two threads accessing the channel concurrently.

            1. Vert.x HttpServer receives a http request, opens a Netty channel and successfully reads the entire request. The handler is put in READ mode while reading, then back into WRITE mode, flushing the write buffer: read = false, needsFlush = false.
            2. Before Vertx HttpServer starts to write the response to the first request, it receives another http request and starts to read again. This puts the handler in READ mode: read = true
            3. The http handler now wants to write the response to the first request, but since read = true, the writing will begin by setting needsFlush = true, and prepares to queue the response.
            4. However, before any bytes are queued, the reading thread takes over again, finishes reading the second request, thus setting read = false, flushes the (empty) write buffer (since needsFlush = true) and sets needsFlush = false.
            5. Now the writing thread picks up again. Since it is already past checking the read flag, it just writes the bytes to the channel without flushing. The channel will now never be flushed, since no more endReadAndFlush will occur.

            To fix this problem, I updated

            Source https://stackoverflow.com/questions/46094941

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install checkssl

            You can download it from GitHub.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/srvrco/checkssl.git

          • CLI

            gh repo clone srvrco/checkssl

          • sshUrl

            git@github.com:srvrco/checkssl.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link

            Explore Related Topics

            Consider Popular TLS Libraries

            mkcert

            by FiloSottile

            v2rayN

            by 2dust

            acme.sh

            by acmesh-official

            nginxconfig.io

            by digitalocean

            v2ray

            by 233boy

            Try Top Libraries by srvrco

            getssl

            by srvrcoShell

            rssh

            by srvrcoShell