├── .gitattributes ├── .gitignore ├── README.md ├── images ├── mail.ico └── mail_background.jpg ├── index.html ├── process.php └── style.css /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Spoof-O-Mail 2 | PHP Application To Spoof And Send E-mail. 3 | 4 | The application uses php's inbuilt mail() function to send an email. 5 | It allows a user to send a mail using any email id he wants. 6 | 7 | **The developer is in no way responsible for the misuse of this application. 8 | **It should not be used in any harmful way (phishing). 9 | **The application was developed just for educational purpose. 10 | -------------------------------------------------------------------------------- /images/mail.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adisingh1992/Spoof-O-Mail/4bfc823eed0aa9a91f87f822ca5a7a1b2aab0d04/images/mail.ico -------------------------------------------------------------------------------- /images/mail_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adisingh1992/Spoof-O-Mail/4bfc823eed0aa9a91f87f822ca5a7a1b2aab0d04/images/mail_background.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SPOOF-O-MAIL 4 | 5 | 6 | 11 | 12 | 13 |

SPOOF-O-MAIL

14 |
15 |
16 | 17 |

18 | 19 |

20 | 21 |

22 | 23 |

24 | 25 |
26 |
27 | 28 | -------------------------------------------------------------------------------- /process.php: -------------------------------------------------------------------------------- 1 | alert('Enter The Required Attributes');"; 22 | echo ""; 23 | } 24 | else if($num == 2){ 25 | echo ""; 26 | echo ""; 27 | } 28 | return; 29 | } 30 | 31 | function send_mail($from, $to, $subject, $msg){ 32 | $headers = "From: <'.$from.'>"; 33 | mail($to, $subject, $msg, $headers); 34 | return message(2); 35 | } 36 | ?> 37 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-image: url("images/mail_background.jpg"); 3 | } 4 | 5 | h1{ 6 | font-family: chiller; 7 | text-shadow: 10px 10px 15px; 8 | font-size: 7em; 9 | text-align: center; 10 | margin-bottom: 2%; 11 | cursor: pointer; 12 | } 13 | 14 | #b1{ 15 | background: linear-gradient(to bottom right, #81BEF7, white); 16 | font-family: courier; 17 | font-size: 1.5em; 18 | text-shadow: 2px 2px 5px; 19 | } 20 | 21 | #b1:hover{ 22 | font-weight: bold; 23 | box-shadow: 5px 5px 20px #A4A4A4; 24 | } 25 | 26 | #form input, textarea{ 27 | border-radius: 5px; 28 | margin-left: 25%; 29 | padding: 1%; 30 | width: 50%; 31 | } --------------------------------------------------------------------------------