mirror of
https://github.com/calebstewart/pwncat.git
synced 2024-11-24 09:35:39 +01:00
28 lines
975 B
ReStructuredText
28 lines
975 B
ReStructuredText
|
File Upload
|
||
|
===========
|
||
|
|
||
|
``pwncat`` makes file upload easy through the ``upload`` command. File upload is accomplished via
|
||
|
the ``gtfobins`` modules, which will enumerate available local binaries capable of writing printable
|
||
|
or binary data to files on the remote host. Often, this is ``dd`` if available but could be any
|
||
|
of the many binaries which ``gtfobins`` understands. The upload takes place over the same
|
||
|
connection as your shell, which means you don't need another HTTP or socket server or extra connectivity
|
||
|
to your target host.
|
||
|
|
||
|
At the local ``pwncat`` prompt, local and remote files are tab-completed to provided an easier upload
|
||
|
interface, and a progress bar is displayed.
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
(local) pwncat$ upload --help
|
||
|
usage: upload [-h] source destination
|
||
|
|
||
|
Upload a file from the local host to the remote host
|
||
|
|
||
|
positional arguments:
|
||
|
source
|
||
|
destination
|
||
|
|
||
|
optional arguments:
|
||
|
-h, --help show this help message and exit
|
||
|
|