Sometimes the provided VMs by the likes of THM or HTB bug out and some needed tools/features will not function. It's at this point that the use of a personal VM becomes necessary.
To get the files from the remote VM to local VM easily and quickly we can initiate a http server on the remote VM we want to access/download files from.
`python3 -m http.server` (default port is 8000).
On the local VM we can now navigate to the remote VM IP:PORT to browse the files within the directory where the server was initiated.
We can also use the wget command to download a file without having to browse to the site (sometimes the download wont work when using a web browser).
`wget http://IP/<FILE_NAME>`