-
Notifications
You must be signed in to change notification settings - Fork 0
/
phishai.js
56 lines (48 loc) · 1.44 KB
/
phishai.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
44
45
46
47
48
49
50
51
52
53
54
55
56
const request = require('request');
var apiKey = "";
function checkDomain(domain){
var promise = new Promise(function(resolve, reject) {
json_data = {url: domain}
var options = {
method: "POST",
url: 'https://app.phish.ai/api/url/scan',
headers: [
{
name: 'Authorization',
value: apiKey
}],
json: json_data
};
request(options, function(error, response, body){
if (error) reject(Error("Error using PhisAI: "+error));
resolve(body);
});
});
return promise;
}
function checkId(id){
var promise = new Promise(function(resolve, reject) {
var options = {
method: "GET",
url: 'https://app.phish.ai/api/url/report?scan_id='+id,
headers: [
{
name: 'Authorization',
value: apiKey
}],
};
request(options, function(error, response, body){
if (error) reject(Error("Error using PhisAI: "+error));
try {
var job = JSON.parse(body);
resolve(job);
} catch (e) {
reject(Error("Error using PhisAI: "+body));
}
});
});
return promise;
}
exports.setApiKey = function(key){ apiKey = key; }
exports.checkDomain = checkDomain;
exports.checkId = checkId;