|
|
|
@ -3,61 +3,50 @@ import * as paths from './paths.js';
|
|
|
|
|
import * as helpers from './helpers.js';
|
|
|
|
|
|
|
|
|
|
export interface IFeodoTrackerData {
|
|
|
|
|
ID: string;
|
|
|
|
|
Dateadded: string;
|
|
|
|
|
DestinationIP: string;
|
|
|
|
|
DestinationPort: string;
|
|
|
|
|
Malware: string;
|
|
|
|
|
Reporter: string;
|
|
|
|
|
ip_address: string;
|
|
|
|
|
port: number;
|
|
|
|
|
status: string;
|
|
|
|
|
hostname: string | null;
|
|
|
|
|
as_number: number;
|
|
|
|
|
as_name: string;
|
|
|
|
|
country: string;
|
|
|
|
|
first_seen: string;
|
|
|
|
|
last_online: string;
|
|
|
|
|
malware: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export class FeodoTracker {
|
|
|
|
|
private static readonly FEODO_TRACKER_API_URL: string = 'https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt';
|
|
|
|
|
private static readonly FEODO_TRACKER_API_URL: string = 'https://feodotracker.abuse.ch/downloads/ipblocklist.json';
|
|
|
|
|
|
|
|
|
|
public async getData(): Promise<IFeodoTrackerData[]> {
|
|
|
|
|
plugins.smartfile.fs.ensureDirSync(paths.feodoTrackerTmp);
|
|
|
|
|
const txtPath = plugins.path.join(paths.feodoTrackerTmp, 'feodo.txt');
|
|
|
|
|
|
|
|
|
|
const response = await plugins.nodeFetch(FeodoTracker.FEODO_TRACKER_API_URL, {
|
|
|
|
|
...(helpers.findProxy() ? {
|
|
|
|
|
agent: helpers.getAgent(),
|
|
|
|
|
} : {})
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
throw new Error(`HTTP error! status: ${response.status}`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await new Promise((resolve, reject) => {
|
|
|
|
|
const fileStream = plugins.fs.createWriteStream(txtPath);
|
|
|
|
|
// @ts-ignore
|
|
|
|
|
const readable = plugins.stream.Readable.from(response.body);
|
|
|
|
|
plugins.stream.pipeline(readable, fileStream, (err) => {
|
|
|
|
|
if (err) reject(err);
|
|
|
|
|
else resolve(null);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
const data: IFeodoTrackerData[] = await response.json() as IFeodoTrackerData[];
|
|
|
|
|
|
|
|
|
|
let data: IFeodoTrackerData[] = [];
|
|
|
|
|
await new Promise((resolve, reject) => {
|
|
|
|
|
plugins.stream.pipeline(
|
|
|
|
|
plugins.fs.createReadStream(txtPath),
|
|
|
|
|
plugins.csv({
|
|
|
|
|
headers: ['ID', 'Dateadded', 'DestinationIP', 'DestinationPort', 'Malware', 'Reporter'],
|
|
|
|
|
mapValues: ({ header, value }) => value.trim()
|
|
|
|
|
}),
|
|
|
|
|
(err) => {
|
|
|
|
|
if (err) reject(err);
|
|
|
|
|
// Ensure the data is an array and has the expected structure
|
|
|
|
|
if (!Array.isArray(data) || !data.every(item =>
|
|
|
|
|
typeof item.ip_address === 'string' &&
|
|
|
|
|
typeof item.port === 'number' &&
|
|
|
|
|
(typeof item.hostname === 'string' || item.hostname === null) &&
|
|
|
|
|
typeof item.as_number === 'number' &&
|
|
|
|
|
typeof item.as_name === 'string' &&
|
|
|
|
|
typeof item.country === 'string' &&
|
|
|
|
|
typeof item.first_seen === 'string' &&
|
|
|
|
|
typeof item.last_online === 'string' &&
|
|
|
|
|
typeof item.malware === 'string'
|
|
|
|
|
)) {
|
|
|
|
|
throw new Error(`Invalid data structure!`);
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
.on('data', (row) => {
|
|
|
|
|
data.push(row);
|
|
|
|
|
})
|
|
|
|
|
.on('end', resolve)
|
|
|
|
|
.on('error', reject);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
plugins.smartfile.fs.removeSync(paths.feodoTrackerTmp);
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|