mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-12 22:20:19 +08:00
feat(security): harden gateway boundaries and usage policies
Consolidate subscription usage policy enforcement, privacy-safe persistence, and gateway security hardening into one reviewable change. Includes bounded HTTP and execution envelopes, header and protocol guards, DNS and relay validation, authentication and secret projection hardening, secure backup/install paths, and regression coverage.
This commit is contained in:
@@ -14,7 +14,7 @@ CREATE TABLE IF NOT EXISTS proxy_nodes (
|
||||
is_manual TINYINT(1) NOT NULL DEFAULT 0,
|
||||
proxy_url VARCHAR(500),
|
||||
proxy_username VARCHAR(255),
|
||||
proxy_password VARCHAR(500),
|
||||
proxy_password TEXT,
|
||||
created_at BIGINT NOT NULL,
|
||||
updated_at BIGINT NOT NULL,
|
||||
remote_config TEXT,
|
||||
|
||||
+1
-1
@@ -706,7 +706,7 @@ CREATE TABLE IF NOT EXISTS public.proxy_nodes (
|
||||
is_manual boolean DEFAULT false NOT NULL,
|
||||
proxy_url character varying(500),
|
||||
proxy_username character varying(255),
|
||||
proxy_password character varying(500),
|
||||
proxy_password text,
|
||||
created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||||
updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||||
remote_config json,
|
||||
|
||||
Reference in New Issue
Block a user