> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/de/ports-and-services/http-and-https-80-443/web-certificate-analysis-tools.md).

# Werkzeuge zum Scannen von Web-Zertifikaten

### OpenSSL (Zertifikat prüfen):

```bash
openssl s_client -connect website.com:443
```

Dieser Befehl untersucht das SSL-Zertifikat eines Webservers. Er verbindet sich mit dem Server über Port 443 und zeigt Details wie die Gültigkeit des Zertifikats, das Ablaufdatum und den Verschlüsselungstyp an.

### Sslyze (SSL-Sicherheitsprüfung):

<pre class="language-bash"><code class="lang-bash"><strong>sslyze website.com
</strong></code></pre>

<figure><img src="/files/15f79abe68a5ae8502a10ff808dd040ab5c99eea" alt="" width="563"><figcaption></figcaption></figure>

### Sslscan (SSL-Sicherheitsprüfung):

```bash
sslscan website.com
```

<figure><img src="/files/6ea8772f33e46627b82f6d66288b6286a7671f1f" alt=""><figcaption></figcaption></figure>

### Nmap (anfällig für Heartbleed):

1. Verwenden Sie das `ssl-heartbleed` Nmap-Skript:

```bash
nmap --script ssl-heartbleed -p8443 127.0.0.1
```

<div data-full-width="true"><figure><img src="/files/347fbb1ccc49cb3d54cd109027c8576a94a16903" alt=""><figcaption></figcaption></figure></div>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/de/ports-and-services/http-and-https-80-443/web-certificate-analysis-tools.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
