Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2023-4722: Fixed #2579 · gpac/gpac@de7f3a8

Integer Overflow or Wraparound in GitHub repository gpac/gpac prior to 2.3-DEV.

CVE
#git

Expand Up

@@ -5713,7 +5713,7 @@ static GF_Err mp4_mux_initialize_movie(GF_MP4MuxCtx *ctx)

if (p && p->value.lfrac.den) {

tkw->pid_dur = p->value.lfrac;

if (tkw->pid_dur.num<0) tkw->pid_dur.num = -tkw->pid_dur.num;

if (max_dur.num * (s64) tkw->pid_dur.den < (s64) max_dur.den * tkw->pid_dur.num) {

if (gf_timestamp_less(max_dur.num, max_dur.den, tkw->pid_dur.num, tkw->pid_dur.den)) {

max_dur.num = tkw->pid_dur.num;

max_dur.den = tkw->pid_dur.den;

}

Expand Down

CVE: Latest News

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