-
Notifications
You must be signed in to change notification settings - Fork 0
/
readfiles.h
58 lines (49 loc) · 1.03 KB
/
readfiles.h
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
/*
* NESCA-VIEWER
* by oldteam & lomaster
* license CC-BY-NC-SA 4.0
* Сделано от души 2023.
*/
#ifndef JSONDECODE_H
#define JSONDECODE_H
#include <QFile>
#include <QJsonDocument>
#include <QJsonObject>
#include <QJsonArray>
#include <QDebug>
#include <QStringList>
#include <QXmlStreamReader>
struct port
{
int port;
QString state;
QString protocol;
QString http_title;
QString screenshot;
QString content;
QString description;
QString passwd;
};
struct __details
{
QString dns_name;
double rtt;
QList<port> ports;
};
struct datablock
{
QString ip_address;
__details _details;
};
/*Функция для парсинга json в datablock.*/
datablock
parse_data_block(const QJsonObject& json_object);
datablock
parse_data_block_nmap(const QXmlStreamReader &xml);
/*Функция для парсинга сразу кучи файлов json,
в datablock-и.*/
QList<datablock>
parse_json_files(QString &file_path);
QList<datablock>
parse_xml_files(QString &file_path);
#endif