4129 links
740 private links
  • Doo's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Jouer les vidéos
Links per page: 20 50 100
◄Older
page 1 / 2
25 results tagged ssl x
  • SSL Settings — Galera Cluster Documentation
    August 8, 2019 10:10:34 AM GMT+02:00 * - permalink -
    QRCode
    - https://galeracluster.com/library/documentation/ssl.html
    galera ssl
  • SSL Certificates — Galera Cluster Documentation
    August 8, 2019 10:10:27 AM GMT+02:00 * - permalink -
    QRCode
    - https://galeracluster.com/library/documentation/ssl-cert.html
    galera ssl
  • SSL Configuration — Galera Cluster Documentation
    August 8, 2019 10:10:22 AM GMT+02:00 * - permalink -
    QRCode
    - https://galeracluster.com/library/documentation/ssl-config.html
    galera ssl
  • SSL for State Snapshot Transfers — Galera Cluster Documentation
    August 8, 2019 10:10:14 AM GMT+02:00 * - permalink -
    QRCode
    - https://galeracluster.com/library/documentation/ssl-sst.html
    galera ssl
  • Mozilla SSL Configuration Generator

    Un generateur de config ssl bien foutu

    July 3, 2019 02:41:03 PM GMT+02:00 * - permalink -
    QRCode
    - https://ssl-config.mozilla.org/#server=haproxy&server-version=1.9.8&config=intermediate
    ssl haproxy mozilla configuration generator
  • thumbnail
    jetstack/cert-manager: Automatically provision and manage TLS certificates in Kubernetes

    via Victor, un certificate manager pour kubernetes

    September 20, 2018 12:11:42 PM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/jetstack/cert-manager
    kubernetes certificates ssl
  • thumbnail
    CAs, certs and keys passed to apiservers are incomprehensible · Issue #54665 · kubernetes/kubernetes

    Un bout de documentation qui n'existe pas dans la doc officielle de kubernetes

    April 6, 2018 10:14:23 AM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/kubernetes/kubernetes/issues/54665
    kubernetes tls ssl certificates
  • Automatic check of expiration date of certificatesKoen Van Impe – vanimpe.eu
    #!/usr/bin/python
    #
    # Check Expiration Date of SSL certificates
    #
    # Koen Van Impe
    #
    # Uses the file ceds.checks as input ; one entry per line, format <host>:<port>
    #
    #  ceds.checks :            www.google.com:443
    #                           imap.mydomain.tld:993
    #                       
    
    from OpenSSL import SSL
    import socket, datetime
    import smtplib
    from email.mime.text import MIMEText
    
    servers_to_check = "ceds.checks"
    alert_days = 5
    mail_rcpt = "<>"
    mail_from = "<>"
    mail_server = "127.0.0.1"
    
    servers = open( servers_to_check, "r")
    cur_date = datetime.datetime.utcnow()
    response = ""
    cert_tested = 0
    
    for line in servers:
        host = line.strip().split(":")[0]
        port = line.strip().split(":")[1]
        try:
            context = SSL.Context(SSL.SSLv23_METHOD)
            sock = SSL.Connection(context, socket.socket(socket.AF_INET, socket.SOCK_STREAM))
    
            try:
                sock.connect( (str(host) , int(port)) )
                sock.send("\x00")       # Send empty to trigger response
                get_peer_cert=sock.get_peer_certificate()
                sock.close()
    
                exp_date =  datetime.datetime.strptime(get_peer_cert.get_notAfter(),'%Y%m%d%H%M%SZ')        
                days_to_expire = int((exp_date - cur_date).days)
                cert_tested = cert_tested + 1
    
                if days_to_expire < 0:
                    response = response + "\n %s : %s EXPIRED" % (host, port)
                elif alert_days > days_to_expire:
                    response = response + "\n %s : %s expires in %s dayes " % (host, port, days_to_expire)
                #else:
                    #response = response + "\n %s : %s OK" % (host,port)
            except:
                response = response + "\n Unable to connect to %s : %s " % (host, port)
        except SSL.Error,e:
            print e
    
    if response:
        response = response + "\n\nTotal certificates tested : %s \n" % cert_tested
        try:
            message = MIMEText( response )
            message["Subject"] = "Certificate check %s " % cur_date
            message["From"] = mail_from
            message["To"] = mail_rcpt
            smtpObj = smtplib.SMTP( mail_server )
            smtpObj.sendmail(mail_from, mail_rcpt, message.as_string())
            smtpObj.quit()
        except smtplib.SMTPException:
            print "Unable to send mail"

    en modifiant ça, je vias l'intégrer à mon prometheus. Merci l'open source :D

    October 12, 2016 05:25:15 PM GMT+02:00 * - permalink -
    QRCode
    - https://www.vanimpe.eu/2014/04/28/automatic-check-expiration-date-certificates/
    prometheus ssl
  • git-secret

    Un tool pas mal pour store des trucs dans git en chiffré :
    https://github.com/sobolevn/git-secret

    May 16, 2016 09:59:03 AM GMT+02:00 * - permalink -
    QRCode
    - https://sobolevn.github.io/git-secret/#usage
    git security sécurité storage ssl password
  • Generate Mozilla Security Recommended Web Server Configuration Files

    un outil bien cool :)

    December 8, 2015 04:59:48 PM GMT+01:00 * - permalink -
    QRCode
    - https://mozilla.github.io/server-side-tls/ssl-config-generator/
    haproxy nginx ssl
  • TLS test suite: tlsfuzzer

    not bad

    November 28, 2015 02:57:45 PM GMT+01:00 * - permalink -
    QRCode
    - https://n0where.net/tls-test-suite/
    tls ssl security
  • ICMP IP Tunnel: ICMPTunnel
    November 12, 2015 10:11:24 AM GMT+01:00 * - permalink -
    QRCode
    - https://n0where.net/icmp-ip-tunnel-icmptunnel/
    ssl tunnel icmp ping ip network
  • SSleuth :: Add-ons for Firefox

    Du coup on voit que mozilla pourrait faire mieux niveau chiffrement :D
    http://dooby.fr/screen/154310531015.png

    October 31, 2015 10:56:23 AM GMT+01:00 * - permalink -
    QRCode
    - https://addons.mozilla.org/en-US/firefox/addon/ssleuth/
    ssl
  • Logjam: PFS Deployment Guide

    Un super guide

    October 18, 2015 01:49:38 PM GMT+02:00 * - permalink -
    QRCode
    - https://weakdh.org/sysadmin.html
    ssl diffie-hellmann security
  • /bin/bash based SSL/TLS tester: testssl.sh
    September 26, 2015 09:27:56 AM GMT+02:00 * - permalink -
    QRCode
    - https://testssl.sh/
    ssl ssllabs security
  • Tautt | Best nginx configuration for security

    via nico!

    July 6, 2015 11:09:10 AM GMT+02:00 * - permalink -
    QRCode
    - http://tautt.com/best-nginx-configuration-for-security/
    nginx ssl
  • WoSign: Free 2y multi-domain SSL certificate (SAN/UCC)

    une CA chinoise qui propose pour faire de l'opt-in de fournir du certificat gratuitement ... Je préfère attendre let's encrypt pour le moment :D

    May 27, 2015 12:18:32 PM GMT+02:00 * - permalink -
    QRCode
    - https://www.ohling.org/blog/2015/02/wosign-free-2y-ssl-certificate.html
    ssl
  • Haproxy ssl configuration - install root and intermediate certificate

    une petite doc memento pour les intermediate CA dans haproxy

    December 30, 2014 09:38:05 AM GMT+01:00 * - permalink -
    QRCode
    - http://www.drawbackz.com/stack/78293/haproxy-ssl-configuration-install-root-and-intermediate-certificate.html
    haproxy ssl
  • StartSSL pour des certificats SSL "wildcard" à petit prix - PAB's blog

    Il faudra que je m'occupe de ça bientôt ...

    December 8, 2014 11:19:28 AM GMT+01:00 * - permalink -
    QRCode
    - http://blog.bandinelli.net/index.php?post/2014/11/10/StartSSL-pour-des-certificats-SSL-wildcard-%C3%A0-petit-prix
    ssl
  • [Note] Vérifier la configuration TLS/SSL de vos services réseaux

    on va tester tout ça

    August 30, 2014 11:19:08 AM GMT+02:00 * - permalink -
    QRCode
    - https://quack1.me/check_tls.html
    ssl tls ssllabs benchmark pentest
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation