
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
LTS scan is a command-line tool written in Python that leverages the Qualys SSL Labs API to scan and evaluate SSL/TLS configurations of websites.
It supports multiple hosts, retry logic, and output in CSV or JSON formats.
asyncio
and aiohttp
READY
or ERROR
You can install lts-scan
from PyPI using pip:
pip install lts-scan
Or from source we recommend using Poetry for managing dependencies and environments.
git clone https://github.com/alexandre-meline/LTS_scan.git
cd LTS_scan
poetry install
Create a hosts.txt file with one domain per line:
google.com
github.com
expired.badssl.com
lts-scan --input hosts.txt --output results.csv
Then run the tool:
lts-scan --input hosts.txt --output results.csv
You can customize the output format:
lts-scan --input hosts.txt --output results.json --format json
Option | Description | Default |
---|---|---|
--input | Path to the input file containing hosts | required |
--output | Path to the output file | required |
--format | Output format: csv or json | csv |
--retries | Number of retry attempts on request failure | 3 |
--delay | Delay (in seconds) between retries | 10 |
CSV
host,status,startTime,testTime,ipAddress,grade
example.com,READY,1681234567890,1681237890123,93.184.216.34,A
JSON
[
{
"host": "example.com",
"status": "READY",
"startTime": 1681234567890,
"testTime": 1681237890123,
"endpoints": [
{
"ipAddress": "93.184.216.34",
"grade": "A"
}
]
}
]
This project is licensed under the MIT License.
Pull requests and suggestions are welcome! Please open an issue or submit a PR to help improve the tool.
FAQs
Lightweight TLS Scanner using SSL Labs API
We found that lts-scan demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.ย It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.