CREATE YOUR OWN FILE HOSTING SERVICE FOR RED TEAMERS – PWNDROP STEP BY STEP

INTRODUCTION

Pwndrop is self-deploying file hosting services. We use this tool for transferring file to other person very securely and be cautious of the fact that using same way any malicious file can send to the victims. This tool HTTP (Hyper Text Transport Protocol) and WebDAV (Web Distributed Authoring and Versioning) for transferring files. Ethical hackers can use this to deploy their files from remote locations using cloud services. This tool is easy to install and use.

ENVIRONMENT

  • OS: Kali Linux 2019.3 64 bit
  • Kernel-Version: 5.2.3

GO INSTALLATION STEPS

  • We have to log-in to non-root and execute the below command
  • Use this command to download the go file  
  • curl -O https://dl.google.com/go/go1.10.3.linux-amd64.tar.gz
  • After verifying use this command to extract the downloaded go file. 
  • tar -xvzf go1.10.3.linux-amd64.tar.gz
    • x = extract
    • v= verbose
    • F =file
  • Now we just have to go to our home directory, change owner and group to root and move it to /usr/local
    • sudo chown -R root:root go
    • sudo mv go /usr/local
  • Now, let’s check the file

Comments