This repository has been archived by the owner on Mar 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathYahoo.php
55 lines (49 loc) · 1.85 KB
/
Yahoo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
error_reporting(0);
system("clear");
$banner = "\e[33;1m
_ _ _ _ _ _ _
| | | |_ _ _ __ | |_ ___ _ __| \ | | |__ | |____
| |_| | | | | '_ \| __/ _ \ '__| \| | '_ \| |_ /
| _ | |_| | | | | || __/ | | |\ | |_) | |/ /
|_| |_|\__,_|_| |_|\__\___|_| |_| \_|_.__/|_/___|
}---------------------------------------{
}--------------> \033[1;32mYahoo Mail Valid\e[0;1m\e[33;1m <--------------{
}---------------------------------------{
Coded By : Muhammad Nabil / HunterNblz
Github : https//github.com/hunternblz\n\n\e[0;1m";
sleep(2);
echo $banner;
sleep(2);
echo "[\033[1;31m?\e[0;1m] List Mail : ";
$list = trim(fgets(STDIN));
echo "\n";
$file = file_get_contents("$list");
$data = explode("\n", str_replace("\r", "", $file));
$x = 0;
for ($a = 0; $a < count($data); $a++) {
$email = $data[$a];
$x++;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.nabill.me/yahoo.php?email='.$email);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, true);
curl_setopt($ch, CURLOPT_POST, 1);
$headers = array();
$headers[] = 'Connection: Keep-Alive';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
$hasil = json_decode($result);
curl_close($ch);
$status = $hasil->status;
if($status == 'live'){
echo "$email | \033[1;32mLive\e[0;1m\n";
$x = fopen("Yahoo_LIVE.txt", "a+");
fwrite($x, $email."\r\n");
}else{
echo "$email | \e[1;91mDie\e[0;1m\n";
$x = fopen("Yahoo_DIE.txt", "a+");
fwrite($x, $email."\r\n");
}
}
?>