A small script to send emails from any address on a server that supported attachments and headers.
| README.md | 2 years ago | ||
| bootstrap.min.css | 2 years ago | ||
| bootstrap.min.js | 2 years ago | ||
| index.html | 2 years ago | ||
| jquery.min.js | 2 years ago | ||
| mail.php | 2 years ago | ||
| screenshot.png | 2 years ago | ||
| script.js | 2 years ago | ||
| style.css | 2 years ago | ||
| submit.php | 2 years ago | ||
I wanted a quick little GUI to send emails from any address on a server that supported attachments and headers.

1) Clone the repo into the correct folder
$> cd /var/www/html/ $> git clone https://rossmarks.uk/git/git/0xRoM/WSSSnoop.git $> cd EmailSender
2) Create the uploads folder for attachments and ensure it is writable by the webserver
$> mkdir uploads && chmod 777 uploads
3) Edit submit.php to have the correct upload folder and password of your choice
$knownPasswordHash = '098f6bcd4621d373cade4e832627b4f6'; // test == 098f6bcd4621d373cade4e832627b4f6 $uploadDirectory = 'uploads/'; // Replace with your desired upload directory
4) Browse to the correct URL to start sending emails
Uses the following PHP script to do most of the heavy lifting: