Skip to content

Commit

Permalink
Merge pull request #84 from GiriRaj249/main
Browse files Browse the repository at this point in the history
Added Spring4Shell.bcheck rule
  • Loading branch information
Hannah-PortSwigger authored Aug 23, 2023
2 parents ff7ff63 + dfe3d64 commit f429df9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions vulnerability-classes/injection/Spring4Shell.bcheck
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
metadata:
language: v1-beta
name: "Spring4Shell (Response)"
description: "Checks for the Spring4Shell vulnerability"
author: "Giriraj R (cipherlover)"
tags: "Srping4Shell", "CVE-2022-22965", "cve"

define:
spring4shell_payload = `class.module.classLoader.URLs%5B0%5D=0`
issueDetail = `The server has returned a response status code as "400" and along with "java.lang.IllegalArgumentException" error on the response body denoting that there is possibility for Spring4shell vulnerability`
issueRemediation = "Make sure you are up to date with patches and follow the remediation steps for CVE-2022-22965."

given request then
send request called check :
appending queries: `{spring4shell_payload}`

if {check.response.status_code} is "400" and "java.lang.IllegalArgumentException" in {check.response.body} then
report issue:
severity: high
confidence: firm
detail: `{issueDetail}`
remediation: `{issueRemediation}`
end if

0 comments on commit f429df9

Please sign in to comment.