Vulnerabilities (Page 10)

OpenAI Allowed “Unlimited” Credit on New Accounts 

OpenAI would provide some free credits to a user once they verify their phone number, and then to prevent abuse, ensure phone numbers are unique.Its a sane plan, but Checkmarx did find a way to bypass this…

 

Git Arbitrary Configuration Injection [CVE-2023-29007]

A logic bug when dealing with the parsing of the git/.config file, which could be triggered via git submodules.The relevant function for the vuln here is git_config_copy_or_rename_section_in_file(), which would remove or rename configuration sections in-place in the config file…

 

Shell in the Ghost: Ghostscript CVE-2023-28879 writeup

A pretty classic string escaping bug in GhostScript, one common and buggy edge case when escaping characters in a buffer is to not properly account for escapes that happen at the very limit of the destination buffer.As was the case here, despite checking that the limit of the buffer was not reached on every iteration, when a character was found that should be escaped, it would write to the destination buffer write, first with the escape character (0x01) and then again with an XOR’d version of the character to be escaped…

 
8
9
10
11
12
13
14