-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfakemails.php
More file actions
53 lines (45 loc) · 1.75 KB
/
fakemails.php
File metadata and controls
53 lines (45 loc) · 1.75 KB
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
<?php
/*
# List Created By : T.Ismayil
# GitHub : github.com/tismayil
*/
$FakeMailList = array(
"armyspy.com","cuvox.de","dayrep.com","einrot.com",
"fleckens.hu","gustr.com","jourrapide.com","rhyta.com",
"superrito.com","teleworm.us","mp-j.cf","mp-j.gq",
"hangxomcuatoilatotoro.cf","musicmakes.us",
"sikomo.cf","moonm.review","udoiswell.pw","yaraon.ga",
"gmxmail.top","kwalidd.cf","mahiidev.site","hamusoku.tk",
"hamusoku.ga","reservelp.de","kucingarong.gq","zhorachu.com",
"ethersports.org","tinoza.org","payperex2.com","nezdiro.org",
"ether123.net","reftoken.net","averdov.com","axsup.net",
"datum2.com","geronra.com","asorent.com","ether123.net",
"ququb.com","2anom.com","qwfox.com","hvzoi.com",
"fakeinbox.info","trash-mail.com","you-spam.com","re-gister.com",
"fake-box.com","trash-me.com","opentrash.com","dropmail.me","emlhub.com",
"emltmp.com","emlpro.com","yomail.info","10mail.org","mvrht.net",
"kopqi.com","fxe.us","gicua.com","20mail.eu","10minutemail.co.uk",
"vmani.com","wimsg.com","my10minutemail.com","10minutesmail.fr",
"10minutemail.pro","10minutemailbox.com","10minutemail.be",
"guerrillamail.biz","sharklasers.com","guerrillamail.info","grr.la",
"guerrillamail.com","guerrillamail.de","guerrillamail.net","guerrillamail.org",
"guerrillamailblock.com","pokemail.net","spam4.me","10minutemail.nl",
"10minute-email.com"
);
function checkfakemail( $mail )
{
Global $FakeMailList;
@list($text , $domain) = explode("@" , $mail);
if(!isset($domain))
{
return false;
}
if (in_array($domain , $FakeMailList))
{
return false;
}
return true;
}
print " Fake mail : ".checkfakemail("demo@opentrash.com")."<hr/>";
print " Real mail : ".checkfakemail("tehmezovismayil@gmail.com")."<hr/>";
?>