Fixes
This commit is contained in:
parent
09d0a54db3
commit
25376cfb75
1 changed files with 28 additions and 29 deletions
|
|
@ -12,6 +12,7 @@ exports.MAIN = {
|
|||
GITHUB_REPO: 'https://github.com/sefinek/UFW-AbuseIPDB-Reporter', // If you are using a fork, provide the link to the forked repository here.
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Generates a report submission to AbuseIPDB.
|
||||
* @param {Object} logData
|
||||
|
|
@ -37,8 +38,8 @@ exports.MAIN = {
|
|||
* @param {string|null} serverName
|
||||
* @returns {string} A formatted string report.
|
||||
*/
|
||||
exports.REPORT_COMMENT = ({ timestamp, In, Out, srcIp, dstIp, res, tos, prec, ttl, id, proto, spt, dpt, len, urgp, mac, window, syn }, fullLog, serverName) => {
|
||||
return `Blocked by UFW ${serverName ? `on ${serverName} ` : ''}[${dpt}/${proto?.toLowerCase()}]
|
||||
exports.REPORT_COMMENT = ({ timestamp, In, Out, srcIp, dstIp, res, tos, prec, ttl, id, proto, spt, dpt, len, urgp, mac, window, syn }, fullLog, serverName) =>
|
||||
`Blocked by UFW ${serverName ? `on ${serverName} ` : ''}[${dpt}/${proto?.toLowerCase()}]
|
||||
Source port: ${spt || 'N/A'}
|
||||
TTL: ${ttl || 'N/A'}
|
||||
Packet length: ${len || 'N/A'}
|
||||
|
|
@ -46,10 +47,9 @@ TOS: ${tos || 'N/A'}
|
|||
|
||||
This report was generated by:
|
||||
https://github.com/sefinek/UFW-AbuseIPDB-Reporter`; // Please do not remove this URL; I would be very grateful! Thank you. 💙
|
||||
};
|
||||
|
||||
|
||||
// See: https://www.abuseipdb.com/categories
|
||||
exports.DETERMINE_CATEGORIES = (proto, dpt) => {
|
||||
const categories = {
|
||||
TCP: {
|
||||
22: '14,22,18', // Port Scan | SSH | Brute-Force
|
||||
|
|
@ -74,5 +74,4 @@ exports.DETERMINE_CATEGORIES = (proto, dpt) => {
|
|||
},
|
||||
};
|
||||
|
||||
return categories[proto]?.[dpt] || '14'; // Port Scan
|
||||
};
|
||||
exports.DETERMINE_CATEGORIES = (proto, dpt) => categories[proto]?.[dpt] || '14'; // Default: Port Scan
|
||||
Loading…
Add table
Reference in a new issue