-
Notifications
You must be signed in to change notification settings - Fork 264
/
Copy pathgateway.go
246 lines (197 loc) · 6.6 KB
/
gateway.go
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/*
* @Copyright Reserved By Janusec (https://www.janusec.com/).
* @Author: U2
* @Date: 2018-07-14 16:39:03
* @Last Modified: U2, 2018-07-14 16:39:03
*/
package models
import (
"io"
"net/http"
"time"
)
type HitInfo struct {
TypeID int64 // 1: CCPolicy 2:GroupPolicy
PolicyID int64
VulnName string
Action PolicyAction
ClientID string // for CC/Attack Client ID
TargetURL string // for CAPTCHA redirect
BlockTime int64
}
type CaptchaContext struct {
CaptchaId string
ClientID string
}
type OAuthState struct {
CallbackURL string
UserID string
AccessToken string
}
// AccessStat record access statistics
type AccessStat struct {
AppID int64 `json:"app_id,string"`
URLPath string `json:"url_path"`
StatDate string `json:"stat_date"` // Format("20060102")
Delta int64 `json:"delta"`
UpdateTime int64 `json:"update_time"` // Used for expired cleanup
}
type RefererStat struct {
AppID int64 `json:"app_id,string"`
Host string `json:"host"`
URL string `json:"url"`
ClientID string `json:"client_id,string"`
Delta int64 `json:"delta"`
UpdateTime int64 `json:"update_time"` // Used for expired cleanup
}
// PopularContent i.e. top visited URL Path
type PopularContent struct {
AppID int64 `json:"app_id,string"`
URLPath string `json:"url_path"`
Amount int64 `json:"amount"`
}
// InternalErrorInfo i.e. 502 or server offline
type InternalErrorInfo struct {
Description string `json:"description"`
}
// GateHealth give basic information
type GateHealth struct {
StartTime int64 `json:"start_time"`
CurrentTime int64 `json:"cur_time"`
Version string `json:"version"`
CPUPercent float64 `json:"cpu_percent"`
CPULoad1 float64 `json:"cpu_load1"`
CPULoad5 float64 `json:"cpu_load5"`
CPULoad15 float64 `json:"cpu_load15"`
MemUsed uint64 `json:"mem_used"`
MemTotal uint64 `json:"mem_total"`
DiskUsed uint64 `json:"disk_used"`
DiskTotal uint64 `json:"disk_total"`
TimeZone string `json:"time_zone"`
TimeOffset int `json:"time_offset"`
ConCurrency int64 `json:"concurrency"`
}
// RefererHost ...
type RefererHost struct {
Host string `json:"host"`
PV int64 `json:"PV"`
UV int64 `json:"UV"`
}
// RefererURL ...
type RefererURL struct {
URL string `json:"url"`
PV int64 `json:"PV"`
UV int64 `json:"UV"`
}
// ShieldInfo used for 5-second shield page
type ShieldInfo struct {
Callback string
}
// SMTPSetting shared with all nodes
type SMTPSetting struct {
SMTPEnabled bool `json:"smtp_enabled"`
SMTPServer string `json:"smtp_server"`
SMTPPort string `json:"smtp_port"`
SMTPAccount string `json:"smtp_account"`
SMTPPassword string `json:"smtp_password"`
// AdminEmails used as recipients for replica nodes which can not access to database
// Seperated by ;
AdminEmails string `json:"admin_emails"`
}
// PrimarySetting used for admin configuration and primary node only
type PrimarySetting struct {
// AuthenticatorEnabled for janusec-admin 2-factor authentication, v1.2.2
AuthenticatorEnabled bool `json:"authenticator_enabled"`
// AuthEnabled for SSO Authentication
AuthEnabled bool `json:"auth_enabled"`
// AuthProvider such as wxwork, dingtalk, feishu, lark, ldap, cas2
AuthProvider string `json:"auth_provider"`
// Search engines, for 5-second shield
SkipSEEnabled bool `json:"skip_se_enabled"`
SearchEngines string `json:"search_engines"`
// WebSSHEnabled for Web-based SSH
WebSSHEnabled bool `json:"webssh_enabled"`
// BlockHTML, v1.4.0 added
BlockHTML string `json:"block_html"`
// ShieldHTML for 5-second shield, v1.4.1 added
ShieldHTML string `json:"shield_html"`
// WAFLogDays for WAF logs
WAFLogDays int64 `json:"waf_log_days"`
// CCLogDays for CC logs
CCLogDays int64 `json:"cc_log_days"`
// AccessLogDays for log files
AccessLogDays int64 `json:"access_log_days"`
// SMTP
SMTP *SMTPSetting `json:"smtp"`
// Data Discovery, v1.3.2 added
DataDiscoveryEnabled bool `json:"data_discovery_enabled"`
DataDiscoveryAPI string `json:"data_discovery_api"`
DataDiscoveryTenantID string `json:"data_discovery_tenant_id"`
DataDiscoveryKey string `json:"data_discovery_key"`
// DNS GSLB, v1.4.1 added
DNSEnabled bool `json:"dns_enabled"`
}
// NodeShareSetting for sync to replica nodes, v1.2.0
type NodeShareSetting struct {
// BackendLastModified is the timestamp for latest change of applications, certificates
BackendLastModified int64 `json:"backend_last_modified"`
// FirewallLastModified is the timestamp for latest change of WAF/CC rules
FirewallLastModified int64 `json:"firewall_last_modified"`
// DiscoveryLastModified is the timestamp fot latest change of DiscoveryRules
DiscoveryLastModified int64 `json:"discovery_last_modified"`
// SyncDuration for replica nodes to check update
// SyncDuration = "sync_seconds" * time.Second
SyncInterval time.Duration `json:"sync_interval"`
// SearchEnginesPattern for bypass the 5-second shield
SkipSEEnabled bool `json:"skip_se_enabled"`
SearchEnginesPattern string `json:"search_engines_pattern"`
// BlockHTML, v1.4.0 added
BlockHTML string `json:"block_html"`
// ShieldHTML for 5-second shield, v1.4.1 added
ShieldHTML string `json:"shield_html"`
// AuthConfig for authentication
AuthConfig *OAuthConfig `json:"auth_config"`
// SMTP
SMTP *SMTPSetting `json:"smtp"`
// Data Discovery, v1.3.2 added
DataDiscoveryEnabled bool `json:"data_discovery_enabled"`
DataDiscoveryAPI string `json:"data_discovery_api"`
DataDiscoveryTenantID string `json:"data_discovery_tenant_id"`
DataDiscoveryKey string `json:"data_discovery_key"`
}
// DiscoveryRule for json body and json response
type DiscoveryRule struct {
ID int64 `json:"id,string"`
// FieldName example: "Phone Number"
FieldName string `json:"field_name"`
// Sample: 13800138000
Sample string `json:"sample"`
// Regex example: "^(\+?86\-?)?1\d{10}$"
Regex string `json:"regex"`
Description string `json:"description"`
Editor string `json:"editor"`
// UpdateTime timestamp with unit seconds
UpdateTime int64 `json:"update_time"`
}
// SMTPTestRequest for SMTP test
type SMTPTestRequest struct {
Action string `json:"action"`
Object *SMTPSetting `json:"object"`
}
// ZipResponseWriter used for compress static files by brotli or gzip
type ZipResponseWriter struct {
io.Writer
http.ResponseWriter
}
// Write method
func (w ZipResponseWriter) Write(b []byte) (int, error) {
return w.Writer.Write(b)
}
type APIKey struct {
HexAPIKey string `json:"api_key"`
}
// CookieTmplObj take application and other variables into Cookie Window Template
type CookieTmplObj struct {
App *Application
UnclassifiedEnabled bool
}