-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
197 lines (188 loc) · 4.41 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
const fs = require('fs');
const QuickChart = require('quickchart-js');
const { request } = require('undici')
//detection settings
const path = `/var/log/nginx/access.log`;
const maxAvgRps = 10;
const maxRps = 20;
const discordWebhook = "";
//cloudflare settings
const cfEmail = "";
const cfApiKey = "";
const cfZoneId = "";
let ua = false;
let uafrom = 0;
let maxuarps = 0;
let uagraph = [];
let rps = [];
let start = null;
let avg = 0;
let underAttackCf = 0;
let underAttackCfEnabled = false;
let lastAttack = 0;
setInterval(() => {
const file = fs.readFileSync(path, 'utf-8').split('\n');
if (!start) {
start = file.length;
return;
}
let rpsrn = file.length - start;
rps.push(rpsrn);
if (rps.length > 10) {
rps.shift();
avg = calcAvg(rps);
if (avg > maxAvgRps || rpsrn > maxRps) {
underAttackCf = Date.now() + 60000 * 3;
if (!underAttackCfEnabled) {
underAttackCfEnabled = true;
enableUam();
}
underAttack(rpsrn, avg);
} else {
if (underAttackCfEnabled && Date.now() > underAttackCf) {
underAttackCfEnabled = false;
disableUam();
}
attackEnd(rpsrn, avg);
}
}
start = file.length;
}, 1000)
async function underAttack(r, a) {
if (ua) {
uafrom = Date.now();
}
uagraph.push(r);
if (r > maxuarps) maxuarps = r;
if (ua) return;
ua = true;
uafrom = Date.now();
if (Date.now() - lastAttack < 60000*5) return;
const chart = new QuickChart();
chart.setBackgroundColor("#2f3136")
chart.setConfig({
type: 'line',
data: {
labels: new Array(rps.length).fill(''),
datasets: [
{
label: 'Current RPS',
data: rps
}
]
}
})
request(discordWebhook, {
method: 'POST',
body: JSON.stringify({
"username": "DDoS Sensor",
"embeds": [
{
"title": "DDoS Attack has been detected",
"color": 16711680,
"description": `Average: ${a}r/s\nCurrent: ${r}r/s\n\nAttack is being captured`,
"timestamp": "",
"author": {},
"image": {
"url": chart.getUrl()
},
"thumbnail": {},
"footer": {
"text": `Attack started at ${new Date(uafrom).toISOString()}`
},
"fields": []
}
],
"components": []
}),
headers: {
'content-type': 'application/json'
}
})
}
async function attackEnd(r, a) {
if (!ua || Date.now() - uafrom < 20000) return;
if (Date.now() - lastAttack > 60000*5) {
const chart = new QuickChart();
lastAttack = Date.now();
chart.setBackgroundColor("#2f3136")
chart.setConfig({
type: 'line',
data: {
labels: new Array(uagraph.length).fill(''),
datasets: [
{
label: 'Current RPS',
data: uagraph
}
]
}
})
request(discordWebhook, {
method: 'POST',
body: JSON.stringify({
"username": "DDoS Sensor",
"embeds": [
{
"title": "DDoS Attack has been mitigated",
"color": 16711680,
"description": `Average: ${calcAvg(uagraph)}r/s\nCurrent: ${r}r/s\nMax: ${maxuarps}r/s\n`,
"timestamp": "",
"author": {},
"image": {
"url": await chart.getShortUrl()
},
"thumbnail": {},
"footer": {
"text": ``
},
"fields": []
}
],
"components": []
}),
headers: {
'content-type': 'application/json'
}
})
}
uafrom = 0;
uagraph = [];
ua = false;
maxuarps = 0;
}
function calcAvg(array) {
var total = 0;
var count = 0;
array.forEach((item) => {
total += item;
count++;
});
return Math.floor(total / count);
}
function enableUam() {
request(`https://api.cloudflare.com/client/v4/zones/${cfZoneId}/settings/security_level`, {
method: "PATCH",
headers: {
'X-Auth-Email': cfEmail,
"X-Auth-Key": cfApiKey,
"content-type": "application/json"
},
body: JSON.stringify({
value: "under_attack"
})
})
}
function disableUam() {
request(`https://api.cloudflare.com/client/v4/zones/${cfZoneId}/settings/security_level`, {
method: "PATCH",
headers: {
'X-Auth-Email': cfEmail,
"X-Auth-Key": cfApiKey,
"content-type": "application/json"
},
body: JSON.stringify({
value: "high"
})
})
}