A small script to send emails from any address on a server that supported attachments and headers.
README.md | 1 year ago | ||
bootstrap.min.css | 1 year ago | ||
bootstrap.min.js | 1 year ago | ||
index.html | 1 year ago | ||
jquery.min.js | 1 year ago | ||
mail.php | 1 year ago | ||
screenshot.png | 1 year ago | ||
script.js | 1 year ago | ||
style.css | 1 year ago | ||
submit.php | 1 year 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: