PoC-in-GitHub icon indicating copy to clipboard operation
PoC-in-GitHub copied to clipboard

just a checker for CVE-2023-26604

Open danielsadoc opened this issue 1 year ago • 4 comments

maybe there are exploits for CVE-2023-26604

https://www.exploit-db.com/exploits/51674

is the above exploit indeed functional?

the artifact cited by nomisec is just a checker

https://github.com/Zenmovie/CVE-2023-26604

#!/bin/sh

version=$(systemd --version | awk 'NR==1{print $2}')

if (($version < "247")) then echo 'Vulnerable' else echo 'Not vulnerable' fi

note also that the artifact cited by NVD has a date from 2012

https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/

danielsadoc avatar Sep 20 '23 23:09 danielsadoc