8000 Add pos and neg testcases for 932190 by franbuehler · Pull Request #2268 · coreruleset/coreruleset · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add pos and neg testcases for 932190 #2268

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 29, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
---
meta:
author: "Franziska Bühler"
description: "Remote Command Execution: Wildcard bypass technique attempt"
enabled: true
name: 932190.yaml
tests:
-
test_title: 932190-1
desc: "/?id=1+un/**/ion (https://medium.com/secjuice/web-application-firewall-waf-evasion-techniques-2-125995f3e7b0)"
stages:
-
stage:
input:
dest_addr: 127.0.0.1
headers:
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Host: localhost
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv
method: GET
port: 80
uri: /?id=1%2Bun%2F%2A%2A%2Fion
version: HTTP/1.0
output:
log_contains: id "932190"
-
test_title: 932190-2
desc: "/?id=/???/?s (https://medium.com/secjuice/waf-evasion-techniques-718026d693d8)"
stages:
-
stage:
input:
dest_addr: 127.0.0.1
headers:
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Host: localhost
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv
method: GET
port: 80
uri: /?id=%2F%3F%3F%3F%2F%3Fs
version: HTTP/1.0
output:
log_contains: id "932190"
-
test_title: 932190-3
desc: "/?id=Does the * shine bright?"
stages:
-
stage:
input:
dest_addr: 127.0.0.1
headers:
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Host: localhost
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv
method: GET
port: 80
uri: /?id=Does%20the%20%2A%20shine%20bright%3F
version: HTTP/1.0
output:
no_log_contains: id "932190"
0