themactep.com

A home of miscellaneous projects by Paul Philippov.

Notes

How to transfer files using nc

On recieving device:

nc -l -p 10000 > payload.bin

On sending device:

nc 192.168.1.10 -p 10000 < payload.bin

Where -p stands for port.