-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
45 lines (36 loc) · 912 Bytes
/
index.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
const axios = require('axios');
const https = require('https');
const path = require('path');
const dotEnv = require('dotenv');
const dotEnvPath = path.resolve(__dirname, '.env');
dotEnv.config({path: dotEnvPath});
const REQUEST_URL = process.env.REQUEST_URL;
const SLEEP_TIMEOUT = process.env.SLEEP_TIMEOUT || 1000;
const envAxios = axios.create({
timeout: 10 * 1000,
httpsAgent: new https.Agent({
rejectUnauthorized: false,
}),
});
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
async function sendRequest() {
try {
await envAxios({
method: 'GET',
headers: {
cookie: process.env.COOKIE
},
url: REQUEST_URL,
});
console.log('SUCCESS');
} catch (error) {
console.log('ERROR', error && error.response);
}
}
async function generatePayload() {
while (true) {
await sleep(SLEEP_TIMEOUT);
sendRequest();
}
}
generatePayload();