instance_id stringlengths 17 28 | repo stringclasses 85
values | base_commit stringlengths 40 40 | date timestamp[ns]date 2011-05-04 02:41:45 2025-11-08 00:00:00 | project_name stringclasses 85
values | lang stringclasses 3
values | dockerfile stringlengths 178 1.15k | build_sh stringclasses 102
values | work_dir stringclasses 85
values | sanitizer stringclasses 4
values | bug_description stringlengths 905 163k | additional_files listlengths 0 6 | candidate_fixes listlengths 0 321 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
gpac.cve-2023-2838 | gpac/gpac | ba59206b3225f0e8e95a27eff41cb1c49ddf9a37 | 2023-05-22T10:37:24 | gpac | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev
RUN git clone https://github.com/gpac/gpac gpac
RUN git -C gpac checkout ba59206b3225f0e8e95a27eff41cb1c49ddf9a37
WORKDIR $SRC/gpac
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}"
make -j$(nproc) | /src/gpac | address | ================= Bug Report (1/1) ==================
## Source: Huntr
## URL: https://huntr.dev/bounties/711e0988-5345-4c01-a2fe-1179604dd07f
## Description:
Environment
Distributor ID: Debian
Description: Debian GNU/Linux bookworm/sid
Release: n/a
Codename: bookworm
Version
I checked against the latest releas... | [] | [
{
"sha": "711e0988",
"url": null
},
{
"sha": "c88df2e202efad214c25b4e586f243b2038779ba",
"url": "https://github.com/gpac/gpac/commit/c88df2e202efad214c25b4e586f243b2038779ba"
},
{
"sha": "a6ae93532ea5615c876c81a6580badbfa01d4383",
"url": "https://github.com/gpac/gpac/commit/a6ae93532... |
unicorn.cve-2022-29694 | unicorn-engine/unicorn | cf18982e1c29d354805863a8e017cddd974e3114 | 2022-04-16T11:19:41 | unicorn | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y cmake pkg-config make python3
RUN git clone https://github.com/unicorn-engine/unicorn unicorn
RUN git -C unicorn checkout cf18982e1c29d354805863a8e017cddd974e3114
WORKDIR $SRC/unicorn
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=off -DUNICORN_FUZZ=1
make -j4 | /src/unicorn | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/unicorn-engine/unicorn/issues/1588
## Description:
Issue: unicorn-engine/unicorn#1588
Title: Null pointer dereference in `qemu_ram_free` when HVA malloc fails
State: closed
Created by: liyansong2018
Created at: 2022... | [] | [
{
"sha": "3d3deac5e6d38602b689c4fef5dac004f07a2e63",
"url": "https://github.com/unicorn-engine/unicorn/commit/3d3deac5e6d38602b689c4fef5dac004f07a2e63"
},
{
"sha": "31389e59457f304be3809f9679f91a42daa7ebaa",
"url": null
},
{
"sha": "6a879a082d4d67a5d13f1233ae0334cde0a7f844",
"url": n... |
njs.cve-2022-34031 | nginx/njs | 37dc1e788060ba17cdcd6e3fd2695177c9d7aa38 | 2022-06-20T23:38:49 | njs | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool mercurial git libpcre2-dev
RUN git clone https://github.com/nginx/njs njs
RUN git -C njs checkout 37dc1e788060ba17cdcd6e3fd2695177c9d7aa38
WORKDIR $SRC/njs
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./autogen.sh
CFLAGS="$CFLAGS -fno-use-cxa-atexit" CXXFLAGS="$CXXFLAGS -fno-use-cxa-atexit" ./configure
make -j$(nproc) clean
make -j$(nproc) all
make install -j$(nproc)
sed -i "s/\$libS\$libR \(-lpcre2-8$\)/\$libS\$libR -Wl,-Bstatic \1 -Wl,-... | /src/njs | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/nginx/njs/issues/523
## Description:
Issue: nginx/njs#523
Title: SEGV src/njs_value_conversion.h:17:9 in njs_value_to_number
State: closed
Created by: dramthy
Created at: 2022-06-01 07:38:49+00:00
Labels: bug, fuzze... | [] | [
{
"sha": "c62a9fb92b102c90a66aa724cb9054183a33a68c",
"url": "https://github.com/nginx/njs/commit/c62a9fb92b102c90a66aa724cb9054183a33a68c"
},
{
"sha": "1878e6b475720c7c51969e69ab2d276fae6d1dee",
"url": "https://github.com/nginx/njs/commit/1878e6b475720c7c51969e69ab2d276fae6d1dee"
},
{
"s... |
libtorrent.cve-2016-7164 | arvidn/libtorrent | 2921caf95e851a7918026dc159b1717ef5045f30 | 2016-04-10T19:46:51 | libtorrent | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make wget libssl-dev libgeoip-dev pkg-config
RUN git clone https://github.com/arvidn/libtorrent libtorrent
RUN git -C libtorrent checkout 2921caf95e851a7918026dc159b1717ef5045f30
WORKDIR $SRC/libtorrent
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p build
cd build
cmake -DBUILD_SHARED_LIBS=Off ..
make -j$(nproc) | /src/libtorrent | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/arvidn/libtorrent/issues/1021
## Description:
Issue: arvidn/libtorrent#1021
Title: "Segmentation fault" (possible DoS) when parsing compressed data with function "inflate_gzip"
State: closed
Created by: sz3n
Created... | [] | [
{
"sha": "2d7d0128adafb7574d0e5a66390188cdfb8caad6",
"url": "https://github.com/arvidn/libtorrent/commit/2d7d0128adafb7574d0e5a66390188cdfb8caad6"
}
] |
libjpeg-turbo.cve-2020-17541 | libjpeg-turbo/libjpeg-turbo | 6367924ac62e72fc97e3105c43eb6bd1ec8eead3 | 2019-12-31T00:35:08 | libjpeg-turbo | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool nasm curl cmake
RUN git clone https://github.com/libjpeg-turbo/libjpeg-turbo libjpeg-turbo
RUN git -C libjpeg-turbo checkout 6367924ac62e72fc97e3105c43eb6bd1ec8eead3
WORKDIR $SRC/libjpeg-turbo
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
cmake . -DCMAKE_INSTALL_PREFIX=$WORK -DENABLE_STATIC:bool=on
make "-j$(nproc)"
make install -j$(nproc) | /src/libjpeg-turbo | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/libjpeg-turbo/libjpeg-turbo/issues/392
## Description:
Issue: libjpeg-turbo/libjpeg-turbo#392
Title: report a stack buffer overflow security issue
State: closed
Created by: lxkeklx
Created at: 2019-12-05 13:46:42+00... | [
{
"content": "/*\n# Copyright 2016 Google Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by app... | [
{
"sha": "c76f4a08263b0cea40d2967560ac7c21f6959079",
"url": "https://github.com/libjpeg-turbo/libjpeg-turbo/commit/c76f4a08263b0cea40d2967560ac7c21f6959079"
},
{
"sha": "6bbc0a3c703f5ea2aecc3a6e60e8ba2935febb82",
"url": "https://github.com/libjpeg-turbo/libjpeg-turbo/commit/6bbc0a3c703f5ea2aecc3... |
njs.cve-2022-32414 | nginx/njs | 2e00e95473861846aa8538be87db07699d9f676d | 2022-04-22T19:02:36 | njs | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool mercurial git libpcre2-dev
RUN git clone https://github.com/nginx/njs njs
RUN git -C njs checkout 2e00e95473861846aa8538be87db07699d9f676d
WORKDIR $SRC/njs
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./autogen.sh
CFLAGS="$CFLAGS -fno-use-cxa-atexit" CXXFLAGS="$CXXFLAGS -fno-use-cxa-atexit" ./configure
make -j$(nproc) clean
make -j$(nproc) all
make install -j$(nproc)
sed -i "s/\$libS\$libR \(-lpcre2-8$\)/\$libS\$libR -Wl,-Bstatic \1 -Wl,-... | /src/njs | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/nginx/njs/issues/483
## Description:
Issue: nginx/njs#483
Title: SEGV njs_vmcode.c:802:27 in njs_vmcode_interpreter
State: closed
Created by: Q1IQ
Created at: 2022-03-02 11:46:31+00:00
Labels: bug, fuzzer
Issue Bod... | [] | [
{
"sha": "31ed93a5623f24ca94e6d47e895ba735d9d97d46",
"url": "https://github.com/nginx/njs/commit/31ed93a5623f24ca94e6d47e895ba735d9d97d46"
},
{
"sha": "f65981b0b8fcf02d69a40bc934803c25c9f607ab",
"url": "https://github.com/nginx/njs/commit/f65981b0b8fcf02d69a40bc934803c25c9f607ab"
}
] |
gpac.cve-2022-47093 | gpac/gpac | 65430e30593bb04579445e77df0a1207adfad357 | 2022-12-19T09:13:04 | gpac | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev
RUN git clone https://github.com/gpac/gpac gpac
RUN git -C gpac checkout 65430e30593bb04579445e77df0a1207adfad357
WORKDIR $SRC/gpac
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}"
make -j$(nproc) | /src/gpac | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/gpac/gpac/issues/2344
## Description:
Issue: gpac/gpac#2344
Title: heap-use-after-free filters/dmx_m2ts.c:470 in m2tsdmx_declare_pid
State: closed
Created by: xidoo123
Created at: 2022-12-11 13:29:49+00:00
Issue Bo... | [] | [
{
"sha": "706111f4d8babf0cda9fac5f3ca4e89983274d6e",
"url": "https://github.com/gpac/gpac/commit/706111f4d8babf0cda9fac5f3ca4e89983274d6e"
},
{
"sha": "eec9e058a9486fe4e99c33021481d9e1826ca9db",
"url": "https://github.com/gpac/gpac/commit/eec9e058a9486fe4e99c33021481d9e1826ca9db"
}
] |
gpac.cve-2019-20170 | gpac/gpac | ed4ec31ea84a1a94abb17669db33f5c4e7a679cf | 2020-06-15T05:33:03 | gpac | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev
RUN git clone https://github.com/gpac/gpac gpac
RUN git -C gpac checkout ed4ec31ea84a1a94abb17669db33f5c4e7a679cf
WORKDIR $SRC/gpac
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}"
make -j$(nproc) | /src/gpac | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/gpac/gpac/issues/1328
## Description:
Issue: gpac/gpac#1328
Title: AddressSanitizer: heap-use-after-free in GF_IPMPX_AUTH_Delete odf/ipmpx_code.c:115
State: closed
Created by: Clingto
Created at: 2019-11-09 11:14:15... | [
{
"content": "/* Copyright 2021 Google LLC\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n http://www.apache.org/licenses/LICENSE-2.0\nUnless required by applicable law or agreed ... | [
{
"sha": "16856430287cc10f495eb241910b4dc45b193e03",
"url": "https://github.com/gpac/gpac/commit/16856430287cc10f495eb241910b4dc45b193e03"
}
] |
faad2.cve-2021-32276 | knik0/faad2 | f97f6e933a4ee3cf00b4e1ba4e3a1f05bc9de165 | 2020-10-20T01:24:05 | faad2 | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone https://github.com/knik0/faad2 faad2
RUN git -C faad2 checkout f97f6e933a4ee3cf00b4e1ba4e3a1f05bc9de165
WORKDIR $SRC/faad2
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./bootstrap
./configure
make -j$(nproc) | /src/faad2 | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/knik0/faad2/issues/58
## Description:
Issue: knik0/faad2#58
Title: A Segmentation fault in output.c:49:16
State: closed
Created by: seviezhou
Created at: 2020-08-30 15:29:51+00:00
Issue Body:
## System info
Ubuntu... | [] | [
{
"sha": "1073aeef823cafd844704389e9a497c257768e2f",
"url": "https://github.com/knik0/faad2/commit/1073aeef823cafd844704389e9a497c257768e2f"
},
{
"sha": "7778bb8aed476183d8ec26c9250be4938dc9d111",
"url": "https://github.com/awesie/faad2/commit/7778bb8aed476183d8ec26c9250be4938dc9d111"
},
{
... |
flac.cve-2020-22219 | xiph/flac | 35303458f01eaf36e5d4b9beafa0a1c2d626d0d6 | 2022-09-07T02:57:18 | flac | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool libtool-bin pkg-config gettext sudo default-jdk
RUN git clone https://github.com/xiph/flac flac
RUN git -C flac checkout 35303458f01eaf36e5d4b9beafa0a1c2d626d0d6
WORKDIR $SRC/flac
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
export ASAN_OPTIONS="detect_leaks=0"
export CXXFLAGS="$CXXFLAGS -DASAN"
export CXXFLAGS="$CXXFLAGS -DMSAN"
export CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=0"
export CXXFLAGS="$CXXFLAGS -D_FORTIFY_SOURCE=0 -D_GLIBCXX_DEBUG"
mkdir -p $SRC/lib... | /src/flac | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/xiph/flac/issues/215
## Description:
Issue: xiph/flac#215
Title: wild-addr-write found by fuzz
State: closed
Created by: ltx2018
Created at: 2020-06-02 03:09:10+00:00
Issue Body:
we found wild-addr-write by fuzzing... | [
{
"content": "// Copyright 2020 Google Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required b... | [
{
"sha": "5a79fb5ce99b4fb7ba01b4ea85a0e5911e82b243",
"url": "https://github.com/xiph/flac/commit/5a79fb5ce99b4fb7ba01b4ea85a0e5911e82b243"
},
{
"sha": "c354702a89b226f570399e5b0a7c93d869855e3d",
"url": "https://github.com/xiph/flac/commit/c354702a89b226f570399e5b0a7c93d869855e3d"
},
{
"s... |
gpac.cve-2023-0770 | gpac/gpac | 514a3af977f675bd917e19f957fe6fb56ac14bf4 | 2022-11-23T08:43:54 | gpac | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev
RUN git clone https://github.com/gpac/gpac gpac
RUN git -C gpac checkout 514a3af977f675bd917e19f957fe6fb56ac14bf4
WORKDIR $SRC/gpac
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}"
make -j$(nproc) | /src/gpac | address | ================= Bug Report (1/1) ==================
## Source: Huntr
## URL: https://huntr.dev/bounties/e0fdeee5-7909-446e-9bd0-db80fd80e8dd
## Description:
Description
Stack-Based Buffer Overflow in gf_sg_proto_field_is_sftime_offset at vrml_proto.c:1295.
version
git log
commit 05eaac875354682942b70c790bcd62cb5f4cc8... | [] | [
{
"sha": "e0fdeee5",
"url": null
},
{
"sha": "c31941822ee275a35bc148382bafef1c53ec1c26",
"url": "https://github.com/gpac/gpac/commit/c31941822ee275a35bc148382bafef1c53ec1c26"
},
{
"sha": "05eaac875354682942b70c790bcd62cb5f4cc825",
"url": "https://github.com/gpac/gpac/commit/05eaac875... |
gpac.cve-2023-5586 | gpac/gpac | 50a60b0e560f4c2d36198a231f952c876a760596 | 2023-10-13T06:26:36 | gpac | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev
RUN git clone https://github.com/gpac/gpac gpac
RUN git -C gpac checkout 50a60b0e560f4c2d36198a231f952c876a760596
WORKDIR $SRC/gpac
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}"
make -j$(nproc) | /src/gpac | address | ================= Bug Report (1/1) ==================
## Source: Huntr
## URL: https://huntr.dev/bounties/d2a6ea71-3555-47a6-9b18-35455d103740
## Description:
Description
NULL Pointer Dereference in function gf_filter_pck_new_alloc_internal at filter_core/filter_pck.c:108.
Version
git log
commit 5692dc729491805e0e5f55c... | [] | [
{
"sha": "d2a6ea71",
"url": null
},
{
"sha": "ca1b48f0abe71bf81a58995d7d75dc27f5a17ddc",
"url": "https://github.com/gpac/gpac/commit/ca1b48f0abe71bf81a58995d7d75dc27f5a17ddc"
},
{
"sha": "5692dc729491805e0e5f55c21d50ba1e6b19e88e",
"url": "https://github.com/gpac/gpac/commit/5692dc729... |
qemu.cve-2023-0330 | qemu/qemu | 9d52aaa92bd8b301e918dc5055041932ee1e0371 | 2023-05-28T04:02:26 | qemu | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool ninja-build libglib2.0-dev libfdt-dev libpixman-1-dev zlib1g-dev libslirp-dev patchelf wget libattr1 libattr1-dev libcap-ng-dev pkg-config
RUN git clone https://github.com/qemu/qemu qemu
RUN git -C qemu checkout 9d52... | #!/bin/bash
# Default build script template for C/C++ projects
set -eu
# Define configuration options
CONFIG_OPTS="--disable-shared"
CMAKE_OPTS="-DCMAKE_BUILD_TYPE=Debug"
MAKE_OPTS="-j$(nproc)"
BUILD_DIR="build"
# 1. Run build preparation scripts if they exist
for prep_script in buildconf autogen.sh bootstrap; do
i... | /src/qemu | address | ================= Bug Report (1/1) ==================
## Source: Red Hat Bugzilla
## URL: https://bugzilla.redhat.com/show_bug.cgi?id=2160151
## Description:
Bugzilla ID: 2160151
Title: CVE-2023-0330 QEMU: lsi53c895a: DMA reentrancy issue leads to stack overflow
Description
Rohit Keshri 2023-01-11 15:25:09 UTC
A vulne... | [
{
"content": "[libfuzzer]\nclose_fd_mask=3\ndetect_leaks=0\nmax_len=8192\n",
"filename": "default.options"
}
] | [] |
mruby.cve-2022-0240 | mruby/mruby | 475b868b7236fd8e8824618e8724b587f08fbe9d | 2022-01-15T03:24:39 | mruby | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y build-essential ruby bison ninja-build cmake zlib1g-dev libbz2-dev liblzma-dev
RUN git clone https://github.com/mruby/mruby mruby
RUN git -C mruby checkout 475b868b7236fd8e8824618e8724b587f08fbe9d
WORKDIR $SRC/mruby
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
cd $SRC/mruby
export LD=$CC
export LDFLAGS="$CFLAGS"
rake -m | /src/mruby | address | ================= Bug Report (1/1) ==================
## Source: Huntr
## URL: https://huntr.dev/bounties/5857eced-aad9-417d-864e-0bdf17226cbb
## Description:
Description
There is a NULL Pointer Dereference in prepare_singleton_class (src/class.c:360:13). This bug has been found on mruby lastest commit (hash 171d32c007... | [] | [
{
"sha": "5857eced",
"url": null
},
{
"sha": "31fa3304049fc406a201a72293cce140f0557dca",
"url": "https://github.com/mruby/mruby/commit/31fa3304049fc406a201a72293cce140f0557dca"
},
{
"sha": "171d32c0071d776207174a40a8fa26def3dbb931",
"url": "https://github.com/mruby/mruby/commit/171d3... |
imagemagick.cve-2018-11251 | imagemagick/imagemagick | a91afc45bd4db0094d54abff921419d65dea14ca | 2018-01-06T07:49:17 | imagemagick | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone https://github.com/imagemagick/imagemagick imagemagick
RUN git -C imagemagick checkout a91afc45bd4db0094d54abff921419d65dea14ca
WORKDIR $SRC/imagemagick
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./configure --prefix="$WORK" --disable-shared --disable-docs
make "-j$(nproc)"
make install -j$(nproc) | /src/imagemagick | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/ImageMagick/ImageMagick/issues/956
## Description:
Issue: ImageMagick/ImageMagick#956
Title: heap-buffer-overflow in SetGrayscaleImage
State: closed
Created by: henices
Created at: 2018-01-24 02:10:17+00:00
Labels: ... | [
{
"content": "#include <cstdint>\n\n#include <Magick++/Blob.h>\n#include <Magick++/Image.h>\n\nextern \"C\" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {\n uint16_t Width;\n uint16_t Height;\n if (Size < (sizeof(Width) + sizeof(Height))) {\n return 0;\n }\n Width = *reinterpret_cast<con... | [
{
"sha": "73fbc6a557b4f63af18b2debe83f817859ef7481",
"url": "https://github.com/ImageMagick/ImageMagick/commit/73fbc6a557b4f63af18b2debe83f817859ef7481"
},
{
"sha": "f590a1ce9653b051a5358542f0712a2f0356e276",
"url": "https://github.com/ImageMagick/ImageMagick/commit/f590a1ce9653b051a5358542f0712... |
upx.cve-2021-43314 | upx/upx | e0bf4609938b0b4d2e83469fac00206a771429e5 | 2022-10-28T03:34:31 | upx | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool cmake
RUN git clone https://github.com/upx/upx upx
RUN git -C upx checkout e0bf4609938b0b4d2e83469fac00206a771429e5
WORKDIR $SRC/upx
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
sed -i 's/ \&\& __clang_major__ < 15//m' /src/upx/src/util/util.cpp
mkdir -p build/debug
cd build/debug
cmake ../..
cmake --build . --target $fuzz_basename -v | /src/upx | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/upx/upx/issues/380
## Description:
Issue: upx/upx#380
Title: [bug] multi heap buffer overflows in get_le32()
State: closed
Created by: 14isnot40
Created at: 2020-05-23 14:24:07+00:00
Issue Body:
## What's the probl... | [] | [
{
"sha": "c8386ee47db1bb2ad702eadcdb8b13f2b2dc57d8",
"url": "https://github.com/upx/upx/commit/c8386ee47db1bb2ad702eadcdb8b13f2b2dc57d8"
},
{
"sha": "b327645e648d46c8730be80730a171cf74cfe338",
"url": "https://github.com/upx/upx/commit/b327645e648d46c8730be80730a171cf74cfe338"
}
] |
exiv2.cve-2017-17669 | exiv2/exiv2 | fa449a4d2c58d63f0d75ff259f25683a98a44630 | 2017-04-26T14:16:21 | exiv2 | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y cmake make ccache python3 libexpat1-dev zlib1g-dev libssh-dev libcurl4-openssl-dev libxml2-utils
RUN git clone https://github.com/exiv2/exiv2 exiv2
RUN git -C exiv2 checkout fa449a4d2c58d63f0d75ff259f25683a98a44630
WORKDIR $SRC/exiv2
COPY build.sh... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p build
cd build
cmake -DEXIV2_ENABLE_PNG=ON -DEXIV2_ENABLE_WEBREADY=ON -DEXIV2_ENABLE_CURL=OFF -DEXIV2_ENABLE_BMFF=ON -DEXIV2_TEAM_WARNINGS_AS_ERRORS=ON -DBUILD_SHARED_LIBS=OFF -DCMAKE_CXX_COMPILER="${CXX}" -DCMAKE_CXX_FLAGS="${CXXFL... | /src/exiv2 | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/Exiv2/exiv2/issues/187
## Description:
Issue: Exiv2/exiv2#187
Title: CVE-2017-17669: heap-buffer-overflow in Exiv2::Internal::PngChunk::keyTXTChunk
State: closed
Created by: YangY-Xiao
Created at: 2017-12-10 07:21:3... | [] | [
{
"sha": "4be065595e4b81e876e32c9c4705f8313f896d43",
"url": "https://github.com/exiv2/exiv2/commit/4be065595e4b81e876e32c9c4705f8313f896d43"
},
{
"sha": "5f360a99af83bd44d269e8fce6f48f375094f5a3",
"url": "https://github.com/Exiv2/exiv2/commit/5f360a99af83bd44d269e8fce6f48f375094f5a3"
},
{
... |
libredwg.cve-2020-21830 | libredwg/libredwg | d5a51c01023d5585ddf3dd17c83dbb3c81efc97e | 2020-01-08T08:16:22 | libredwg | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y autoconf libtool texinfo
RUN git clone https://github.com/libredwg/libredwg libredwg
RUN git -C libredwg checkout d5a51c01023d5585ddf3dd17c83dbb3c81efc97e
WORKDIR $SRC/libredwg
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
sh ./autogen.sh
./configure --disable-shared
make -j$(nproc) | /src/libredwg | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/LibreDWG/libredwg/issues/188#issuecomment-574493134
## Description:
Issue: LibreDWG/libredwg#188
Title: Several bugs found by fuzzing
Referenced comment by linhlhq on 2020-01-15 04:41:39+00:00:
**8.heap-buffer-over... | [
{
"content": "[libfuzzer]\ndetect_leaks=0\n",
"filename": "fuzz_dwg_decode.options"
}
] | [
{
"sha": "6757b07c65742277ae2ff5c9fe32157195726258",
"url": "https://github.com/LibreDWG/libredwg/commit/6757b07c65742277ae2ff5c9fe32157195726258"
},
{
"sha": "d447393a30df70531215e17baa609be5609c8614",
"url": "https://github.com/LibreDWG/libredwg/commit/d447393a30df70531215e17baa609be5609c8614"... |
upx.cve-2020-27788 | upx/upx | eb90eab6325d009004ffb155e3e33f22d4d3ca26 | 2020-01-13T19:10:02 | upx | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool cmake
RUN git clone https://github.com/upx/upx upx
RUN git -C upx checkout eb90eab6325d009004ffb155e3e33f22d4d3ca26
WORKDIR $SRC/upx
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
sed -i 's/ \&\& __clang_major__ < 15//m' /src/upx/src/util/util.cpp
mkdir -p build/debug
cd build/debug
cmake ../..
cmake --build . --target $fuzz_basename -v | /src/upx | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/upx/upx/issues/332
## Description:
Issue: upx/upx#332
Title: heap-buffer-overflow in PackLinuxElf64::canPack() at p_lx_elf.cpp:2385
State: closed
Created by: cxy20103657
Created at: 2020-01-13 08:10:55+00:00
Issue ... | [] | [
{
"sha": "1bb93d4fce9f1d764ba57bf5ac154af515b3fc83",
"url": "https://github.com/upx/upx/commit/1bb93d4fce9f1d764ba57bf5ac154af515b3fc83"
}
] |
gpac.cve-2024-57184 | gpac/gpac | ad3ca600020e01dd514874ab67c28b53c57d0d4c | 2020-03-05T08:35:08 | gpac | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev
RUN git clone https://github.com/gpac/gpac gpac
RUN git -C gpac checkout ad3ca600020e01dd514874ab67c28b53c57d0d4c
WORKDIR $SRC/gpac
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}"
make -j$(nproc) | /src/gpac | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/gpac/gpac/issues/1421
## Description:
Issue: gpac/gpac#1421
Title: AddressSanitizer: heap-buffer-overflow media_tools/mpegts.c:2163 in gf_m2ts_process_pmt
State: closed
Created by: dr3dd589
Created at: 2020-02-29 21... | [
{
"content": "/* Copyright 2021 Google LLC\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n http://www.apache.org/licenses/LICENSE-2.0\nUnless required by applicable law or agreed ... | [
{
"sha": "8c5e847185d74462d674ee7d28fb46c29dae6dd2",
"url": "https://github.com/gpac/gpac/commit/8c5e847185d74462d674ee7d28fb46c29dae6dd2"
},
{
"sha": "eec9e058a9486fe4e99c33021481d9e1826ca9db",
"url": "https://github.com/gpac/gpac/commit/eec9e058a9486fe4e99c33021481d9e1826ca9db"
}
] |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 3