feat: added beacon installer generation, download

This commit is contained in:
Andrew Rioux
2025-02-02 02:37:53 -05:00
parent b416f35b63
commit 0576c4fd3b
22 changed files with 554 additions and 87 deletions

View File

@@ -0,0 +1,14 @@
-- Add migration script here
ALTER TABLE beacon_template ADD COLUMN client_key blob NOT NULL DEFAULT '';
ALTER TABLE beacon_template ADD COLUMN client_cert blob NOT NULL DEFAULT '';
DROP TABLE beacon_listener;
CREATE TABLE beacon_listener (
listener_id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
port int NOT NULL,
public_ip varchar NOT NULL,
domain_name varchar NOT NULL,
certificate blob NOT NULL,
privkey blob NOT NULL
);