-
Notifications
You must be signed in to change notification settings - Fork 5
/
data.js
43 lines (42 loc) · 1.84 KB
/
data.js
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
const aliases = {
'AT&T': ['NEW CINGULAR WIRELESS PCS, LLC'],
'T-Mobile': ['OMNIPOINT COMMUNICATIONS ENTER'],
'CenturyLink': ['QWEST CORPORATION']
};
const defaultCarrierMessage = {
trusted: "This carrier's phone numbers are used by a lot of businesses and very few robocallers.",
highRisk: "This carrier's phone numbers are used by some businesses and some robocallers. Google the number to be sure it belongs to a legitimate business.",
blacklist: "This carrier's phone numbers are used by very few businesses and a lot of robocallers."
};
const carrierList = {
trusted: [{
name: 'NEW CINGULAR WIRELESS PCS, LLC',
msg: 'This number came from an AT&T customer.'
}, {
name: 'OMNIPOINT COMMUNICATIONS',
msg: 'This number came from a T-Mobile customer.'
}, {
name: 'AERIAL COMMUNICATIONS',
msg: 'This number came from a T-Mobile customer.'
}, {
name: 'QWEST CORPORATION',
msg: 'This number came from a CenturyLink customer.'
}, {
name: 'VERIZON',
msg: 'This number came from a Verizon customer.'
}, {
name: 'COMCAST',
msg: 'This number came from a Comcast customer.'
}, {
name: 'BANDWIDTH.COM CLEC, LLC',
msg: 'BANDWIDTH.COM is a phone number service that has a history of active prevention of spam calls. This is likely a Google Voice number.'
}],
highRisk: [{
name: 'ONVOY, LLC',
msg: 'ONVOY has a history of allowing spam calls. This likely came from a spam caller.'
}, {
name: 'BELLSOUTH TELECOMM, INC DBA SO',
msg: 'BELLSOUTH TELECOMM, INC DBA SO is a subsidary company of AT&T. There have been a history of telemarketers originating from here, but home lines also use this.'
}, 'LEVEL 3 COMMUNICATIONS, LLC', 'TELEPORT COMMUNICATIONS GROUP'],
blacklist: []
};