mirror of
https://github.com/github/codeql.git
synced 2026-05-03 04:39:29 +02:00
Brings security tests from other PRs
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
// Dummy class for extraction purposes
|
||||
public class ASPNetMaxRequestLengthDummyClass
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
| bad/Web.config:4:5:4:46 | maxRequestLength=262144 | Large 'maxRequestLength' value (262144). |
|
||||
@@ -0,0 +1 @@
|
||||
Security Features/CWE-016/ASPNetMaxRequestLength.ql
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<system.web>
|
||||
<httpRuntime maxRequestLength="4096" />
|
||||
</system.web>
|
||||
</configuration>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<system.web>
|
||||
<httpRuntime maxRequestLength="262144" />
|
||||
</system.web>
|
||||
</configuration>
|
||||
Reference in New Issue
Block a user