mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-15 01:17:36 +00:00
10 lines
986 B
Markdown
10 lines
986 B
Markdown
|
# 631 - Internet Printing Protocol\(IPP\)
|
|||
|
|
|||
|
## Internet Printing Protocol \(IPP\)
|
|||
|
|
|||
|
The Internet Printing Protocol \(IPP\) is defined in RFC2910 and RFC2911. It's an extendable protocol, for example ‘IPP Everywhere’ is a candidate for a standard in mobile and cloud printing and IPP extensions for 3D printing have been released.
|
|||
|
Because IPP is based on _HTTP_, it inherits all existing security features like basic/digest authentication and _SSL/TLS_ encryption. To submit a print job or to retrieve status information from the printer, an HTTP POST request is sent to the IPP server listening on **port 631/tcp**. A famous open-source IPP implementation is CUPS, which is the default printing system in many Linux distributions and OS X. Similar to LPD, IPP is a **channel** to deploy the actual data to be printed and can be abused as a carrier for malicious PostScript or PJL files.
|
|||
|
|
|||
|
If you want to learn more about [**hacking printers read this page**](pentesting-printers/).
|
|||
|
|