Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2023-3523: fixed #2520 · gpac/gpac@64201a2

Out-of-bounds Read in GitHub repository gpac/gpac prior to 2.2.2.

CVE
#git

Expand Up

@@ -253,13 +253,15 @@ static char *strtrim(char *str)

GF_Err vobsub_read_idx(FILE *file, vobsub_file *vobsub, s32 *version)

{

char strbuf[256];

char strbuf[257];

char *str, *pos, *entry;

s32 line, id =-1, delay = 0;

Bool error = 0;

for (line = 0; !error && gf_fgets(strbuf, sizeof(strbuf), file); line++)

for (line = 0; !error && gf_fgets(strbuf, 256, file); line++)

{

//make sure we are null-terminated - cf #2520

strbuf[256]=0;

str = strtrim(strbuf);

if (line == 0)

Expand Down

CVE: Latest News

CVE-2023-50976: Transactions API Authorization by oleiman · Pull Request #14969 · redpanda-data/redpanda
CVE-2023-6905
CVE-2023-6903
CVE-2023-6904
CVE-2023-3907