|
|
|
|
|
by nobody9999
623 days ago
|
|
>Is there a recommended (best practice) way to nmap scan your network for vulnerable machines, just to be safe? Perhaps something like this? nmap -sU -p 631 -P0 [network]/[mask]
Edit: Added [network]/[mask] for completeness. |
|
echo "0 3 http://myserver:PORT/printers/foo" | nc -u target 631
And if the target is running CUPS on that port it will reach out to `myserver:PORT` and POST some data. The downside is you need to have a server running that can accept inbound requests to see if it connects back.