UNPKG

tlsing

Version:

tlsing is an open source library available on npm for testing TLS security on websites. It is designed to analyze certificates, check HTTPS protocols, and detect potential security holes. The library is used in the Marchol browser and is based on Node.js,

44 lines (40 loc) 1.73 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>tlsing - TLS Security Testing</title> <style> body { font-family: Arial, sans-serif; text-align: center; margin: 40px; } h1 { color: #0070f3; } .container { max-width: 600px; margin: auto; } .code { background: #f4f4f4; padding: 10px; border-radius: 5px; font-family: monospace; } .section { margin-top: 20px; } a { color: #0070f3; text-decoration: none; } </style> </head> <body> <h1>🔐 tlsing - TLS Security Testing</h1> <div class="container"> <p><strong>tlsing</strong> is an open-source Node.js library for testing TLS security on websites.</p> <div class="section"> <h3>🚀 Install</h3> <div class="code">npm install tlsing</div> </div> <div class="section"> <h3>🛠 Features</h3> <ul style="text-align:left;"> <li>✔ TLS Certificate Validation</li> <li>✔ HTTPS Security Checks</li> <li>✔ Port Detection & URL Analysis</li> <li>✔ HTTP/HTTPS Protocol Identification</li> </ul> </div> <div class="section"> <h3>📡 Usage Example</h3> <div class="code">import { checkTLS } from "tlsing"; console.log(checkTLS("google.com"));</div> </div> <p>Available on <a href="https://www.npmjs.com/package/tlsing" target="_blank">npm</a> and <a href="https://github.com/filutkowski/tlsing" target="_blank">GitHub</a>.</p> </div> </body> </html>