diff options
| author | Shulhan <ms@kilabit.info> | 2021-09-18 21:43:57 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2021-09-18 21:43:57 +0700 |
| commit | 8fa18a28d3f378dba8b5fddf19021c9849b7de7e (patch) | |
| tree | 4573b1dd3487b84f79cb39c334647e2048d388df /_www/interface.ts | |
| parent | baef891125b216cbe427288ad2d5fcb943b42db3 (diff) | |
| download | gorankusu-8fa18a28d3f378dba8b5fddf19021c9849b7de7e.tar.xz | |
all: add "Hint" for Target, HTTP, and WebSocket Target
The "Hint" provide a general description for Target, a single HttpTarget,
and WebSocketTarget.
Diffstat (limited to '_www/interface.ts')
| -rw-r--r-- | _www/interface.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/_www/interface.ts b/_www/interface.ts index b01810e..398b282 100644 --- a/_www/interface.ts +++ b/_www/interface.ts @@ -27,6 +27,7 @@ export interface HttpResponseInterface { export interface HttpTargetInterface { Name: string + Hint?: string ID: string Method: number Path: string @@ -72,6 +73,7 @@ export interface RunResponseInterface { export interface TargetInterface { ID: string Name: string + Hint?: string BaseUrl: string Opts: AttackOptionsInterface Vars: KeyValue @@ -110,8 +112,9 @@ export interface TrunksInterface { } export interface WebSocketTargetInterface { - Name: string ID: string + Name: string + Hint?: string Headers: KeyValue Params: KeyValue } |
