First commit

This commit is contained in:
Félix Aime
2020-11-24 19:45:03 +01:00
parent c042b71634
commit 513f6b1b02
130 changed files with 76873 additions and 0 deletions

BIN
assets/backend.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 775 KiB

BIN
assets/frontend.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 405 KiB

1
assets/iocs.json Normal file

File diff suppressed because one or more lines are too long

BIN
assets/network-home.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 KiB

15
assets/requirements.txt Normal file
View File

@ -0,0 +1,15 @@
ipwhois
M2Crypto
pyOpenSSL
pydig
netaddr
pyyaml
flask
flask_httpauth
pyjwt
sqlalchemy
psutil
pyudev
wifi
qrcode
netifaces

19
assets/scheme.sql Normal file
View File

@ -0,0 +1,19 @@
CREATE TABLE "iocs" (
"id" INTEGER UNIQUE,
"value" TEXT NOT NULL,
"type" TEXT NOT NULL,
"tlp" TEXT NOT NULL,
"tag" TEXT NOT NULL,
"source" TEXT NOT NULL,
"added_on" NUMERIC NOT NULL,
PRIMARY KEY("id" AUTOINCREMENT)
);
CREATE TABLE "whitelist" (
"id" INTEGER UNIQUE,
"element" TEXT NOT NULL UNIQUE,
"type" TEXT NOT NULL,
"source" TEXT NOT NULL,
"added_on" INTEGER NOT NULL,
PRIMARY KEY("id" AUTOINCREMENT)
);

1
assets/whitelist.json Normal file

File diff suppressed because one or more lines are too long