-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathFasthttp.qll
More file actions
560 lines (503 loc) · 17.9 KB
/
Fasthttp.qll
File metadata and controls
560 lines (503 loc) · 17.9 KB
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
/**
* Provides classes for working with remote flow sources, sinks and taint propagators
* from the `github.com/valyala/fasthttp` package.
*/
overlay[local?]
module;
import go
private import semmle.go.security.RequestForgeryCustomizations
/**
* Provides classes for working with the [fasthttp](github.com/valyala/fasthttp) package.
*/
module Fasthttp {
/** Gets the v1 module path `github.com/valyala/fasthttp`. */
string v1modulePath() { result = "github.com/valyala/fasthttp" }
/** Gets the path for the root package of fasthttp. */
string packagePath() { result = package(v1modulePath(), "") }
private class HeaderWrite extends Http::HeaderWrite::Range, DataFlow::MethodCallNode {
string methodName;
HeaderWrite() {
this.getTarget().hasQualifiedName(packagePath(), "ResponseHeader", methodName) and
methodName in [
"Add", "AddBytesK", "AddBytesKV", "AddBytesV", "Set", "SetBytesK", "SetBytesKV",
"SetCanonical", "SetContentType", "SetContentTypeBytes"
]
or
this.getTarget().hasQualifiedName(packagePath(), "RequestCtx", methodName) and
methodName in ["SetContentType", "SetContentTypeBytes", "Success", "SuccessString"]
}
override DataFlow::Node getName() {
methodName =
[
"Add", "AddBytesK", "AddBytesKV", "AddBytesV", "Set", "SetBytesK", "SetBytesKV",
"SetCanonical"
] and
result = this.getArgument(0)
}
override string getHeaderName() {
result = Http::HeaderWrite::Range.super.getHeaderName()
or
methodName = ["SetContentType", "SetContentTypeBytes", "Success", "SuccessString"] and
result = "content-type"
}
override DataFlow::Node getValue() {
if methodName = ["SetContentType", "SetContentTypeBytes", "Success", "SuccessString"]
then result = this.getArgument(0)
else result = this.getArgument(1)
}
override Http::ResponseWriter getResponseWriter() {
result.(ResponseWriter).getAHeaderObject() = this
}
}
private class ResponseWriter extends Http::ResponseWriter::Range {
SsaWithFields v;
ResponseWriter() {
this = v.getBaseVariable().getSourceVariable() and
(
v.getType().hasQualifiedName(packagePath(), ["Response", "ResponseHeader"]) or
v.getType().(PointerType).getBaseType().hasQualifiedName(packagePath(), "RequestCtx")
)
}
override DataFlow::Node getANode() { result = v.similar().getAUse().getASuccessor*() }
/** Gets a header object that corresponds to this HTTP response. */
DataFlow::MethodCallNode getAHeaderObject() {
result.getTarget().getName() =
[
"Add", "AddBytesK", "AddBytesKV", "AddBytesV", "Set", "SetBytesK", "SetBytesKV",
"SetCanonical", "SetContentType", "SetContentTypeBytes", "Success", "SuccessString"
] and
this.getANode() = result.getReceiver()
}
}
private predicate responseBodyWriterResult(DataFlow::Node src) {
exists(Method responseBodyWriter |
responseBodyWriter.hasQualifiedName(packagePath(), "Response", "BodyWriter") and
src = responseBodyWriter.getACall().getResult(0)
)
}
private predicate writerSinkAndBody(DataFlow::Node sink, DataFlow::Node body) {
exists(DataFlow::CallNode writerCall |
writerCall = any(Method write | write.hasQualifiedName("io", "Writer", "Write")).getACall() and
sink = writerCall.getReceiver() and
body = writerCall.getArgument(0)
)
or
exists(DataFlow::CallNode writerCall |
writerCall =
any(Function fprintf | fprintf.hasQualifiedName("fmt", ["Fprint", "Fprintf", "Fprintln"]))
.getACall() and
sink = writerCall.getArgument(0) and
body = writerCall.getSyntacticArgument(any(int i | i > 1))
)
or
exists(DataFlow::CallNode writerCall |
writerCall =
any(Function ioCopy |
ioCopy.hasQualifiedName("io", ["copy", "CopyBuffer", "CopyN", "WriteString"])
).getACall() and
sink = writerCall.getArgument(0) and
body = writerCall.getArgument(1)
)
or
exists(DataFlow::CallNode writerCall |
writerCall =
any(Function ioTeeReader | ioTeeReader.hasQualifiedName("io", "TeeReader")).getACall() and
sink = writerCall.getArgument(1) and
body = writerCall.getArgument(0)
)
or
exists(DataFlow::CallNode writerCall |
writerCall =
any(Method bufioWriteTo | bufioWriteTo.hasQualifiedName("bufio", "Reader", "WriteTo"))
.getACall() and
sink = writerCall.getArgument(0) and
body = writerCall.getReceiver()
)
or
exists(DataFlow::CallNode writerCall |
writerCall =
any(Method bytes | bytes.hasQualifiedName("bytes", "Buffer", "WriteTo")).getACall() and
sink = writerCall.getArgument(0) and
body = writerCall.getReceiver()
)
}
private predicate writerSink(DataFlow::Node sink) { writerSinkAndBody(sink, _) }
private module ResponseBodyWriterFlow =
DataFlow::SimpleGlobal<responseBodyWriterResult/1>::Graph<writerSink/1>;
private class ResponseBody extends Http::ResponseBody::Range {
DataFlow::MethodCallNode responseWriterMethodCall;
ResponseBody() {
exists(Method m |
m.hasQualifiedName(packagePath(), "Response",
[
"AppendBody", "AppendBodyString", "SetBody", "SetBodyRaw", "SetBodyStream",
"SetBodyString", "Success", "SuccessString"
]) and
responseWriterMethodCall = m.getACall() and
this = responseWriterMethodCall.getArgument(0)
or
m.hasQualifiedName(packagePath(), "RequestCtx", ["Success", "SuccessString"]) and
responseWriterMethodCall = m.getACall() and
this = responseWriterMethodCall.getArgument(1)
)
or
exists(ResponseBodyWriterFlow::PathNode source, ResponseBodyWriterFlow::PathNode sink |
ResponseBodyWriterFlow::flowPath(source, sink) and
responseWriterMethodCall = source.getNode() and
writerSinkAndBody(sink.getNode(), this)
)
}
override Http::ResponseWriter getResponseWriter() {
result.getANode() = responseWriterMethodCall.getReceiver()
}
}
/**
* Provide models for sanitizer/Dangerous Functions of fasthttp.
*/
module Functions {
/**
* DEPRECATED: Use `FileSystemAccess::Range` instead.
*
* A function that doesn't sanitize user-provided file paths.
*/
deprecated class FileSystemAccess extends FileSystemAccess::Range, DataFlow::CallNode {
FileSystemAccess() {
exists(Function f |
f.hasQualifiedName(packagePath(),
[
"SaveMultipartFile", "ServeFile", "ServeFileBytes", "ServeFileBytesUncompressed",
"ServeFileUncompressed"
]) and
this = f.getACall()
)
}
override DataFlow::Node getAPathArgument() { result = this.getArgument(1) }
}
/**
* A function that can be used as a sanitizer for XSS.
*/
class HtmlQuoteSanitizer extends EscapeFunction::Range {
boolean isHtmlEscape;
HtmlQuoteSanitizer() {
this.hasQualifiedName(packagePath(), ["AppendHTMLEscape", "AppendHTMLEscapeBytes"]) and
isHtmlEscape = true
or
this.hasQualifiedName(packagePath(), "AppendQuotedArg") and isHtmlEscape = false
}
override string kind() {
isHtmlEscape = true and result = "html"
or
isHtmlEscape = false and result = "url"
}
}
/**
* DEPRECATED: Use `RequestForgery::Sink` instead.
*
* A function that sends HTTP requests.
*
* Get* send a HTTP GET request.
* Post send a HTTP POST request.
* These functions first argument is a URL.
*/
deprecated class RequestForgerySink extends RequestForgery::Sink {
RequestForgerySink() {
exists(Function f |
f.hasQualifiedName(packagePath(), ["Get", "GetDeadline", "GetTimeout", "Post"]) and
this = f.getACall().getArgument(1)
)
}
override DataFlow::Node getARequest() { result = this }
override string getKind() { result = "URL" }
}
/**
* DEPRECATED: Use `RequestForgery::Sink` instead.
*
* A function that create initial connection to a TCP address.
* Following Functions only accept TCP address + Port in their first argument.
*/
deprecated class RequestForgerySinkDial extends RequestForgery::Sink {
RequestForgerySinkDial() {
exists(Function f |
f.hasQualifiedName(packagePath(),
["Dial", "DialDualStack", "DialDualStackTimeout", "DialTimeout"]) and
this = f.getACall().getArgument(0)
)
}
override DataFlow::Node getARequest() { result = this }
override string getKind() { result = "TCP Addr + Port" }
}
}
/**
* DEPRECATED
*
* Provide modeling for fasthttp.URI Type.
*/
deprecated module URI {
/**
* DEPRECATED: Use `RemoteFlowSource::Range` instead.
*/
deprecated class UntrustedFlowSource = RemoteFlowSource;
/**
* DEPRECATED: Use `RemoteFlowSource::Range` instead.
*
* The methods as Remote user controllable source which are part of the incoming URL.
*/
deprecated class RemoteFlowSource extends RemoteFlowSource::Range instanceof DataFlow::Node {
RemoteFlowSource() {
exists(Method m |
m.hasQualifiedName(packagePath(), "URI",
["FullURI", "LastPathSegment", "Path", "PathOriginal", "QueryString", "String"]) and
this = m.getACall().getResult(0)
)
}
}
}
/**
* DEPRECATED
*
* Provide modeling for fasthttp.Args Type.
*/
deprecated module Args {
/**
* DEPRECATED: Use `RemoteFlowSource::Range` instead.
*/
deprecated class UntrustedFlowSource = RemoteFlowSource;
/**
* DEPRECATED: Use `RemoteFlowSource::Range` instead.
*
* The methods as Remote user controllable source which are part of the incoming URL Parameters.
*
* When support for lambdas has been implemented we should model "VisitAll".
*/
deprecated class RemoteFlowSource extends RemoteFlowSource::Range instanceof DataFlow::Node {
RemoteFlowSource() {
exists(Method m |
m.hasQualifiedName(packagePath(), "Args",
["Peek", "PeekBytes", "PeekMulti", "PeekMultiBytes", "QueryString", "String"]) and
this = m.getACall().getResult(0)
)
}
}
}
/**
* DEPRECATED
*
* Provide modeling for fasthttp.TCPDialer Type.
*/
deprecated module TcpDialer {
/**
* DEPRECATED: Use `RequestForgery::Sink` instead.
*
* A method that create initial connection to a TCP address.
* Provide Methods which can be used as dangerous RequestForgery Sinks.
* Following Methods only accept TCP address + Port in their first argument.
*/
deprecated class RequestForgerySinkDial extends RequestForgery::Sink {
RequestForgerySinkDial() {
exists(Method m |
m.hasQualifiedName(packagePath(), "TCPDialer",
["Dial", "DialDualStack", "DialDualStackTimeout", "DialTimeout"]) and
this = m.getACall().getArgument(0)
)
}
override DataFlow::Node getARequest() { result = this }
override string getKind() { result = "TCP Addr + Port" }
}
}
/**
* DEPRECATED
*
* Provide modeling for fasthttp.Client Type.
*/
deprecated module Client {
/**
* DEPRECATED: Use `RequestForgery::Sink` instead.
*
* A method that sends HTTP requests.
* Get* send a HTTP GET request.
* Post send a HTTP POST request.
* these Functions first arguments is a URL.
*/
deprecated class RequestForgerySink extends RequestForgery::Sink {
RequestForgerySink() {
exists(Method m |
m.hasQualifiedName(packagePath(), "Client", ["Get", "GetDeadline", "GetTimeout", "Post"]) and
this = m.getACall().getArgument(1)
)
}
override DataFlow::Node getARequest() { result = this }
override string getKind() { result = "URL" }
}
}
/**
* DEPRECATED
*
* Provide modeling for fasthttp.HostClient Type.
*/
deprecated module HostClient {
/**
* DEPRECATED: Use `RequestForgery::Sink` instead.
*
* A method that sends HTTP requests.
* Get* send a HTTP GET request.
* Post send a HTTP POST request.
* these Functions first arguments is a URL.
*/
deprecated class RequestForgerySink extends RequestForgery::Sink {
RequestForgerySink() {
exists(Method m |
m.hasQualifiedName(packagePath(), "HostClient",
["Get", "GetDeadline", "GetTimeout", "Post"]) and
this = m.getACall().getArgument(1)
)
}
override DataFlow::Node getARequest() { result = this }
override string getKind() { result = "URL" }
}
}
/**
* Provide modeling for fasthttp.Response Type.
*/
deprecated module Response {
/**
* DEPRECATED: Use `FileSystemAccess::Range` instead.
*
* A Method that sends files from its input.
* It does not check the input path against path traversal attacks, So it is a dangerous method.
*/
deprecated class FileSystemAccess extends FileSystemAccess::Range, DataFlow::CallNode {
FileSystemAccess() {
exists(Method mcn |
mcn.hasQualifiedName(packagePath(), "Response", "SendFile") and
this = mcn.getACall()
)
}
override DataFlow::Node getAPathArgument() { result = this.getArgument(0) }
}
}
/**
* Provide modeling for fasthttp.Request Type.
*/
module Request {
/**
* DEPRECATED: Use `RemoteFlowSource::range` instead.
*/
deprecated class UntrustedFlowSource = RemoteFlowSource;
/**
* DEPRECATED: Use `RemoteFlowSource::range` instead.
*
* The methods as Remote user controllable source which can be many part of request.
*/
deprecated class RemoteFlowSource extends RemoteFlowSource::Range instanceof DataFlow::Node {
RemoteFlowSource() {
exists(Method m |
m.hasQualifiedName(packagePath(), "Request",
[
"Body", "BodyGunzip", "BodyInflate", "BodyStream", "BodyUnbrotli", "BodyUncompressed",
"Host", "RequestURI"
]) and
this = m.getACall().getResult(0)
)
or
exists(Method m |
m.hasQualifiedName(packagePath(), "Request",
["ReadBody", "ReadLimitBody", "ContinueReadBodyStream", "ContinueReadBody"]) and
this = m.getACall().getArgument(0)
)
}
}
/**
* DEPRECATED: Use `RequestForgery::Sink` instead.
*
* A method that create the URL and Host parts of a `Request` type.
*
* This instance of `Request` type can be used in some functions/methods
* like `func Do(req *Request, resp *Response) error` that will lead to server side request forgery vulnerability.
*/
deprecated class RequestForgerySink extends RequestForgery::Sink {
RequestForgerySink() {
exists(Method m |
m.hasQualifiedName(packagePath(), "Request",
["SetHost", "SetHostBytes", "SetRequestURI", "SetRequestURIBytes", "SetURI"]) and
this = m.getACall().getArgument(0)
)
}
override DataFlow::Node getARequest() { result = this }
override string getKind() { result = "URL" }
}
}
/**
* Provide modeling for fasthttp.RequestCtx Type.
*/
module RequestCtx {
/**
* DEPRECATED: Use `FileSystemAccess::Range` instead.
*
* The Methods that don't sanitize user provided file paths.
*/
deprecated class FileSystemAccess extends FileSystemAccess::Range, DataFlow::CallNode {
FileSystemAccess() {
exists(Method mcn |
mcn.hasQualifiedName(packagePath(), "RequestCtx", ["SendFile", "SendFileBytes"]) and
this = mcn.getACall()
)
}
override DataFlow::Node getAPathArgument() { result = this.getArgument(0) }
}
/**
* DEPRECATED: Use `RemoteFlowSource` instead.
*/
deprecated class UntrustedFlowSource = RemoteFlowSource;
/**
* DEPRECATED: Use `RemoteFlowSource` instead.
*
* The methods as Remote user controllable source which are generally related to HTTP request.
*
* When support for lambdas has been implemented we should model "VisitAll", "VisitAllCookie", "VisitAllInOrder", "VisitAllTrailer".
*/
deprecated class RemoteFlowSource extends RemoteFlowSource::Range instanceof DataFlow::Node {
RemoteFlowSource() {
exists(Method m |
m.hasQualifiedName(packagePath(), "RequestCtx",
[
"Host", "Path", "PostBody", "Referer", "RequestBodyStream", "RequestURI", "String",
"UserAgent"
]) and
this = m.getACall().getResult(0)
)
}
}
}
/**
* DEPRECATED
*
* Provide Methods of fasthttp.RequestHeader which mostly used as remote user controlled sources.
*/
deprecated module RequestHeader {
/**
* DEPRECATED: Use `RemoteFlowSource::Range` instead.
*/
deprecated class UntrustedFlowSource = RemoteFlowSource;
/**
* DEPRECATED: Use `RemoteFlowSource::Range` instead.
*
* The methods as Remote user controllable source which are mostly related to HTTP Request Headers.
*
* When support for lambdas has been implemented we should model "VisitAll", "VisitAllCookie", "VisitAllInOrder", "VisitAllTrailer".
*/
deprecated class RemoteFlowSource extends RemoteFlowSource::Range instanceof DataFlow::Node {
RemoteFlowSource() {
exists(Method m |
m.hasQualifiedName(packagePath(), "RequestHeader",
[
"ContentEncoding", "ContentType", "Cookie", "CookieBytes", "Header", "Host",
"MultipartFormBoundary", "Peek", "PeekAll", "PeekBytes", "PeekKeys",
"PeekTrailerKeys", "RawHeaders", "Referer", "RequestURI", "String", "TrailerHeader",
"UserAgent"
]) and
this = m.getACall().getResult(0)
)
}
}
}
}