==== Run a simple php server to upload files ==== \\ Simply, put this code snippet in an upload.php file somewhere, and run a simple php server using the cli
'; } ?> Upload Your File

Run the server using php-cli package (php$version-cli) # install the package (on a Debian based Linux) if needed apt-get install php7.3-cli --no-install-recommends # run the server on the same path as the upload.php script php -S 0.0.0.0:8080 Now you can access your uploader simple server on http://127.0.0.1:8080/upload.php \\ And woola!!