Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- ** MINI PROJECT RH DYAR **
- ** Add USER smtp for HS **
- ** Gratis Ga di Pungut Biaya **
- ** PAKE AJA GA USAH UDAT EDIT GOBLOK **
- */
- echo "pw : ";
- $pw = trim(fgets(STDIN, 1024));
- echo "user : ";
- $user = trim(fgets(STDIN, 1024));
- if($user){
- $list = explode("\n", file_get_contents($user));
- $i = 0;
- foreach ($list as $mail) {
- echo "smtp.gmail.com|587|Y|Y|".$mail."|".$pw."|".$i++."\n";
- $fopen = fopen("Result.txt", "a+");
- $fwrite = fwrite($fopen, "smtp.gmail.com|587|Y|Y|".$mail."|".$pw."|".$i++."\n");
- fclose($fopen);
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment