Pemeriksa Sertifikat Domain SSL | Periksa keamanan sertifikat Anda
Cek status SSL domain Anda. Alat ini menunjukkan keabsahan, tanggal kedaluwarsa, dan penerbit sertifikat. Masukkan URL untuk analisis mendalam dan jaga keamanan situs.
Alat pemeriksa sertifikat SSL online gratis
Periksa status sertifikat SSL, masa berlaku, dan konfigurasi keamanan
Memeriksa sertifikat SSL...
Skor Kesehatan SSL
Informasi Sertifikat
Analisis Keamanan
Rantai Sertifikat
Kompatibilitas Peramban
Dukungan Protokol SSL/TLS
Fitur Utama
Real-time Validation
Verifikasi dan pemeriksaan status sertifikat SSL secara instan
Comprehensive Analysis
Penilaian keamanan terperinci dan skor kesehatan
Protocol Support
Pemeriksaan kompatibilitas protokol SSL/TLS lengkap
Browser Compatibility
Validasi sertifikat lintas peramban
Chain Verification
Validasi rantai sertifikat lengkap
Security Alerts
Peringatan jelas tentang masalah keamanan
Gunakan alat ini dari agen AI Anda
API JSON dan server Model Context Protocol (MCP) gratis. Tanpa pendaftaran, tanpa kunci API, CORS terbuka. Dirancang untuk Claude, ChatGPT, Cursor, skrip, dan aplikasi frontend.
curl -X POST https://mate.tools/api/v1/ssl-check.php \
-H "Content-Type: application/json" \
-d '{"domain":"example.com"}' import urllib.request, json
req = urllib.request.Request(
"https://mate.tools/api/v1/ssl-check.php",
data=json.dumps({"domain":"example.com"}).encode(),
headers={"Content-Type": "application/json"},
)
with urllib.request.urlopen(req) as r:
print(json.load(r)) const r = await fetch("https://mate.tools/api/v1/ssl-check.php", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({"domain":"example.com"}),
});
console.log(await r.json()); Tambahkan ke claude_desktop_config.json (Claude Desktop), ~/.cursor/mcp.json (Cursor), atau klien kompatibel MCP lainnya:
{
"mcpServers": {
"mate-tools": {
"command": "npx",
"args": ["-y", "@mate-tools/mcp-server"]
}
}
}