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"
}
] |
imagemagick.cve-2019-13297 | imagemagick/imagemagick | a7759f410b773a1dd57b0e1fb28112e1cd8b97bc | 2019-06-21T15:51:38 | imagemagick | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config cmake nasm autopoint
RUN git clone https://github.com/imagemagick/imagemagick imagemagick
RUN git -C imagemagick checkout a7759f410b773a1dd57b0e1fb28112e1cd8b97bc
WORKDIR $SRC/imagemagick
COPY build.sh $SR... | #!/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/imagemagick | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/ImageMagick/ImageMagick/issues/1609
## Description:
Issue: ImageMagick/ImageMagick#1609
Title: heap-buffer-overflow at MagickCore/threshold.c:328:11 in AdaptiveThresholdImage
State: closed
Created by: SuhwanSong
Cre... | [] | [
{
"sha": "604588fc35c7585abb7a9e71f69bb82e4389fefc",
"url": "https://github.com/ImageMagick/ImageMagick/commit/604588fc35c7585abb7a9e71f69bb82e4389fefc"
},
{
"sha": "35c7032723d85eee7318ff6c82f031fa2666b773",
"url": "https://github.com/ImageMagick/ImageMagick6/commit/35c7032723d85eee7318ff6c82f0... |
wasm3.cve-2022-39974 | wasm3/wasm3 | 6b8bcb1e07bf26ebef09a7211b0a37a446eafd52 | 2021-06-02T05:40:14 | wasm3 | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make
RUN git clone https://github.com/wasm3/wasm3 wasm3
RUN git -C wasm3 checkout 6b8bcb1e07bf26ebef09a7211b0a37a446eafd52
WORKDIR $SRC/wasm3
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p build && cd build
cmake -DBUILD_WASI=none ..
make -j$(nproc) | /src/wasm3 | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/wasm3/wasm3/issues/379
## Description:
Issue: wasm3/wasm3#379
Title: SEGV wasm3/source/m3_exec.h:1078 in op_Select_i32_srs
State: closed
Created by: ioo0s
Created at: 2022-08-29 02:19:49+00:00
Labels: wasm-validatio... | [] | [
{
"sha": "7890a2097569fde845881e0b352d813573e371f9",
"url": "https://github.com/wasm3/wasm3/commit/7890a2097569fde845881e0b352d813573e371f9"
}
] |
upx.cve-2021-43313 | 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/378
## Description:
Issue: upx/upx#378
Title: [bug]heap buffer overflow in PackLinuxElf32::invert_pt_dynamic at p_lx_elf.cpp:1688
State: closed
Created by: 14isnot40
Created at: 2020-05-23 14:19:31+00... | [] | [
{
"sha": "3d87b34754bbac3e171600be396ec652794b2cfa",
"url": "https://github.com/upx/upx/commit/3d87b34754bbac3e171600be396ec652794b2cfa"
},
{
"sha": "828a6cf07b69bc7314e888d7b76f0eafe125a3f6",
"url": "https://github.com/upx/upx/commit/828a6cf07b69bc7314e888d7b76f0eafe125a3f6"
}
] |
gpac.cve-2020-22674 | gpac/gpac | 6b4ab401297be43b57f9eddd675971a8a5feab44 | 2019-06-27T05:20:45 | 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 6b4ab401297be43b57f9eddd675971a8a5feab44
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/1346
## Description:
Issue: gpac/gpac#1346
Title: Segmentation fault (ASAN: SEGV on unknown address) in the FixTrackID function of isom_intern.c:133
State: closed
Created by: gutiniao
Created at: 2... | [
{
"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": "6040a5981a9f51410bd18af8820afbd2748c2d76",
"url": "https://github.com/gpac/gpac/commit/6040a5981a9f51410bd18af8820afbd2748c2d76"
},
{
"sha": "eec9e058a9486fe4e99c33021481d9e1826ca9db",
"url": "https://github.com/gpac/gpac/commit/eec9e058a9486fe4e99c33021481d9e1826ca9db"
}
] |
libarchive.cve-2016-10209 | libarchive/libarchive | 629358182b04d7de2316bbd29708c58ddf797fd2 | 2016-10-23T22:37:27 | libarchive | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get install -y make autoconf automake libtool pkg-config libbz2-dev liblzo2-dev liblzma-dev liblz4-dev libz-dev libxml2-dev libssl-dev
RUN git clone https://github.com/libarchive/libarchive libarchive
RUN git -C libarchive checkout 629358182b04d7de2316bbd29708c58ddf797fd2
WORKDIR... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./configure
make -j$(nproc) all | /src/libarchive | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/libarchive/libarchive/issues/842
## Description:
Issue: libarchive/libarchive#842
Title: SIGSEGV in archive_wstring_append_from_mbs()
State: closed
Created by: fumfel
Created at: 2016-12-12 17:47:50+00:00
Issue Bod... | [
{
"content": "// 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 b... | [
{
"sha": "54546be8a7a2e69738247d68f4f6c253430a3d6f",
"url": "https://github.com/libarchive/libarchive/commit/54546be8a7a2e69738247d68f4f6c253430a3d6f"
},
{
"sha": "e8a9de5eaf3b79fc3d990d056343bb52c51c5ba4",
"url": "https://github.com/libarchive/libarchive/commit/e8a9de5eaf3b79fc3d990d056343bb52c... |
upx.cve-2020-27800 | upx/upx | 69ca635c4c0ba474e9ca583dbb42e3d028c4533a | 2022-10-28T03:38:03 | 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 69ca635c4c0ba474e9ca583dbb42e3d028c4533a
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/395
## Description:
Issue: upx/upx#395
Title: Another heap buffer overflow in get_le32()
State: closed
Created by: giantbranch
Created at: 2020-07-24 08:10:02+00:00
Issue Body:
Author: giantbranch of... | [] | [
{
"sha": "76cd518110a9e7597363012ff4e31bcd526a081e",
"url": "https://github.com/upx/upx/commit/76cd518110a9e7597363012ff4e31bcd526a081e"
},
{
"sha": "cc60f03b2eae1626155d0b6d97a2d9d7529616c7",
"url": "https://github.com/upx/upx/commit/cc60f03b2eae1626155d0b6d97a2d9d7529616c7"
},
{
"sha":... |
php.cve-2016-4537 | php/php-src | fc1df8e7a6886e29a6ed5bef3f674ac61164e847 | 2014-08-27T08:31:35 | php-src | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool bison re2c make ca-certificates curl xz-utils dpkg-dev file libc-dev pkg-config libcurl4-openssl-dev libedit-dev libsqlite3-dev libssl-dev zlib1g-dev
RUN git clone https://github.com/php/php-src php-src
RUN git -C ph... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./buildconf --force
./configure \
--enable-option-checking=fatal \
--disable-libxml \
--disable-dom \
--disable-simplexml \
--disable-xml \
--disable-xmlreader \
--disable-xmlwriter \
... | /src/php-src | address | ================= Bug Report (1/1) ==================
## Source: PHP Bugs
## URL: https://bugs.php.net/bug.php?id=72093
## Description:
PHP Bug ID: 72093
Summary: bcpowmod accepts negative scale and corrupts _one_ definition
Status: Closed
PHP Version: 5.5.34
Assigned: stas (profile)
CVE-ID: 2016-4537
Description:
Des... | [] | [
{
"sha": "d650063a0457aec56364e4005a636dc6c401f9cd",
"url": "https://github.com/php/php-src/commit/d650063a0457aec56364e4005a636dc6c401f9cd"
},
{
"sha": "c05240731",
"url": null
},
{
"sha": "c05320149",
"url": null
},
{
"sha": "c05390722",
"url": null
}
] |
openexr.cve-2020-16588 | academysoftwarefoundation/openexr | 6bb36714528a9563dd3b92720c5063a1284b86f8 | 2019-07-25T04:06:42 | openexr | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool zlib1g-dev
RUN git clone https://github.com/academysoftwarefoundation/openexr openexr
RUN git -C openexr checkout 6bb36714528a9563dd3b92720c5063a1284b86f8
WORKDIR $SRC/openexr
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
cmake $SRC/openexr ${CMAKE_SETTINGS[@]}
make -j$(nproc) | /src/openexr | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/AcademySoftwareFoundation/openexr/issues/493
## Description:
Issue: AcademySoftwareFoundation/openexr#493
Title: SEGV exrmakepreview in makePreview.cpp:132
State: closed
Created by: strongcourage
Created at: 2019-07... | [
{
"content": "// Copyright 2020 Google LLC\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... | [
{
"sha": "74504503cff86e986bac441213c403b0ba28d58f",
"url": "https://github.com/fnordware/openexr/commit/74504503cff86e986bac441213c403b0ba28d58f"
},
{
"sha": "587ad0ead9b38fd7ced800389bf024820626aa80",
"url": "https://github.com/peterhillman/openexr/commit/587ad0ead9b38fd7ced800389bf024820626aa... |
imagemagick.cve-2017-17504 | imagemagick/imagemagick | 4b484c9ca35c78a828c3ca6a8d077ac1ce3fdecb | 2017-11-28T19:33:32 | 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 4b484c9ca35c78a828c3ca6a8d077ac1ce3fdecb
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/872
## Description:
Issue: ImageMagick/ImageMagick#872
Title: heap-buffer-overflow in Magick_png_read_raw_profile
State: closed
Created by: henices
Created at: 2017-11-21 05:39:48+00:0... | [
{
"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": "6645a122ee83105008e8447f92555e4a9e307ecf",
"url": "https://github.com/imagemagick/imagemagick/commit/6645a122ee83105008e8447f92555e4a9e307ecf"
},
{
"sha": "59c49559e302e06bfba46cb6feb4e39adbe675b6",
"url": "https://github.com/ImageMagick/ImageMagick/commit/59c49559e302e06bfba46cb6feb4e... |
wasm3.cve-2022-28966 | wasm3/wasm3 | 6b8bcb1e07bf26ebef09a7211b0a37a446eafd52 | 2021-06-02T05:40:14 | wasm3 | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make
RUN git clone https://github.com/wasm3/wasm3 wasm3
RUN git -C wasm3 checkout 6b8bcb1e07bf26ebef09a7211b0a37a446eafd52
WORKDIR $SRC/wasm3
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p build && cd build
cmake -DBUILD_WASI=none ..
make -j$(nproc) | /src/wasm3 | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/wasm3/wasm3/issues/320
## Description:
Issue: wasm3/wasm3#320
Title: [security] Heap Overflow in NewCodePage m3_code.c:25:29
State: closed
Created by: zu1k
Created at: 2022-04-07 06:41:07+00:00
Issue Body:
I found ... | [] | [] |
libsass.cve-2018-20822 | sass/libsass | 1e52b74306b7d73a617396c912ca436dc55fd4d8 | 2018-04-25T00:47:16 | libsass | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone https://github.com/sass/libsass libsass
RUN git -C libsass checkout 1e52b74306b7d73a617396c912ca436dc55fd4d8
WORKDIR $SRC/libsass
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
export BUILD='static'
make -j$(nproc) | /src/libsass | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/sass/libsass/issues/2671
## Description:
Issue: sass/libsass#2671
Title: AddressSanitizer: stack-overflow at Sass::Inspect::operator() (inspect.cpp:977)
State: closed
Created by: hongxuchen
Created at: 2018-06-03 04... | [
{
"content": "#include \"sass.h\"\n\nextern \"C\" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {\n char* sass_data = (char*) malloc(sizeof(char) * size + 1);\n if (sass_data == NULL) return 0;\n\n memcpy(sass_data, data, size);\n sass_data[size] = '\\0';\n\n struct Sass_Data_Context* ctx = ... | [
{
"sha": "45f50873962b7d1c66bd115ba6e644bdaaf6cac1",
"url": "https://github.com/sass/libsass/commit/45f50873962b7d1c66bd115ba6e644bdaaf6cac1"
},
{
"sha": "dfe23ac550de902289e5e5d5f4ece794afbb68d3",
"url": "https://github.com/sass/libsass/commit/dfe23ac550de902289e5e5d5f4ece794afbb68d3"
}
] |
imagemagick.cve-2017-14138 | imagemagick/imagemagick | 781c31aeb16047d7123502666dea2ecdc97c072e | 2017-08-02T17:42:33 | 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 781c31aeb16047d7123502666dea2ecdc97c072e
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 | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/ImageMagick/ImageMagick/issues/639
## Description:
Issue: ImageMagick/ImageMagick#639
Title: memory leak in ReadWEBPImage
State: closed
Created by: jgj212
Created at: 2017-08-01 14:48:29+00:00
Labels: bug
Issue Bod... | [
{
"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": "13f4cbc6ed5e01a78d179f5be0032ed560adfb1a",
"url": "https://github.com/ImageMagick/ImageMagick/commit/13f4cbc6ed5e01a78d179f5be0032ed560adfb1a"
},
{
"sha": "5ea1396db9b6a85a11a65daa99d267517f3cbdcd",
"url": "https://github.com/ImageMagick/ImageMagick/commit/5ea1396db9b6a85a11a65daa99d26... | |
imagemagick.cve-2017-12641 | imagemagick/imagemagick | 91e07240f3c787469f480a089a256b5d0ae64149 | 2017-07-08T13:06:55 | 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 91e07240f3c787469f480a089a256b5d0ae64149
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/550
## Description:
Issue: ImageMagick/ImageMagick#550
Title: memory leak in ReadOneJNGImage
State: closed
Created by: jgj212
Created at: 2017-07-08 13:35:29+00:00
Labels: bug
Issue B... | [
{
"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": "c9aa9f80828594eacbe3affe16c43d623562e5d8",
"url": "https://github.com/ImageMagick/ImageMagick/commit/c9aa9f80828594eacbe3affe16c43d623562e5d8"
},
{
"sha": "982d89a952e7d6840ec7851c364f489a50d805b7",
"url": "https://github.com/ImageMagick/ImageMagick/commit/982d89a952e7d6840ec7851c364f4... |
protobuf-c.cve-2022-33070 | protobuf-c/protobuf-c | f224ab2eeb648a818eb20687d7150a285442c907 | 2021-05-18T19:45:28 | protobuf-c | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config
RUN git clone https://github.com/protobuf-c/protobuf-c protobuf-c
RUN git -C protobuf-c checkout f224ab2eeb648a818eb20687d7150a285442c907
WORKDIR $SRC/protobuf-c
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
export ASAN_OPTIONS=alloc_dealloc_mismatch=0
export CXXFLAGS="$CXXFLAGS -DASAN"
export CXXFLAGS="$CXXFLAGS -DMSAN"
export CXXFLAGS="$CXXFLAGS -fno-use-cxa-atexit"
mkdir -p $SRC/protobuf-install/
cd $SRC/protobuf/
./autogen.sh
./c... | /src/protobuf-c | undefined | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/protobuf-c/protobuf-c/issues/506
## Description:
Issue: protobuf-c/protobuf-c#506
Title: UndefinedBehaviorSanitizer: invalid left shift in protobuf-c.c:2086
State: closed
Created by: pietroborrello
Created at: 2022-... | [] | [
{
"sha": "f224ab2eeb648a818eb20687d7150a285442c907",
"url": "https://github.com/protobuf-c/protobuf-c/commit/f224ab2eeb648a818eb20687d7150a285442c907"
},
{
"sha": "6e389ce2c34355d36009a8fb1666bed29fa2d4f4",
"url": "https://github.com/protobuf-c/protobuf-c/commit/6e389ce2c34355d36009a8fb1666bed29... |
imagemagick.cve-2017-12668 | imagemagick/imagemagick | d3bfbe88609cf213494c4143c003dc2c77c3912d | 2017-07-17T16:25:01 | 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 d3bfbe88609cf213494c4143c003dc2c77c3912d
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 | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/ImageMagick/ImageMagick/issues/575
## Description:
Issue: ImageMagick/ImageMagick#575
Title: memory leak in WritePCXImage
State: closed
Created by: jgj212
Created at: 2017-07-17 01:29:33+00:00
Labels: bug
Issue Bo... | [
{
"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": "2ba8f335fa06daf1165e0878462686028e633a74",
"url": "https://github.com/ImageMagick/ImageMagick/commit/2ba8f335fa06daf1165e0878462686028e633a74"
},
{
"sha": "560e6e512961008938aa1d1b9aab06347b1c8f9b",
"url": "https://github.com/ImageMagick/ImageMagick/commit/560e6e512961008938aa1d1b9aab0... | |
exiv2.cve-2017-11339 | 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: Red Hat Bugzilla
## URL: https://bugzilla.redhat.com/show_bug.cgi?id=1470946
## Description:
Bugzilla ID: 1470946
Title: There is a heap-buffer-overflow in image.cpp of exiv2.
Description
owl337 2017-07-14 06:21:58 UTC
Created attachment 1298133 [details... | [] | [
{
"sha": "751905ccdef9f17862666dfcb83912c3d9b1ed69",
"url": "https://github.com/Exiv2/exiv2/commit/751905ccdef9f17862666dfcb83912c3d9b1ed69"
},
{
"sha": "751312f9aaa7b82b9e8f04326f10fc486e2c8446",
"url": "https://github.com/Exiv2/exiv2/commit/751312f9aaa7b82b9e8f04326f10fc486e2c8446"
},
{
... |
cjson.cve-2016-10749 | davegamble/cjson | 3a7bd6924a67c301b8811f521de6ed07c7cf0c3c | 2016-05-29T12:16:19 | cjson | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y cmake
RUN git clone https://github.com/davegamble/cjson cjson
RUN git -C cjson checkout 3a7bd6924a67c301b8811f521de6ed07c7cf0c3c
WORKDIR $SRC/cjson
COPY build.sh $SRC/ | #!/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/cjson | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/DaveGamble/cJSON/issues/30
## Description:
Issue: DaveGamble/cJSON#30
Title: cJSON buffer overflow with odd formatted JSON string
State: closed
Created by: marcograss
Created at: 2016-10-01 08:19:37+00:00
Labels: bu... | [] | [
{
"sha": "94df772485c92866ca417d92137747b2e3b0a917",
"url": "https://github.com/DaveGamble/cJSON/commit/94df772485c92866ca417d92137747b2e3b0a917"
},
{
"sha": "48b390994642e59eb1a461922a646b4c6544693c",
"url": "https://github.com/DaveGamble/cJSON/commit/48b390994642e59eb1a461922a646b4c6544693c"
... |
openjpeg.cve-2017-14164 | uclouvain/openjpeg | af760007711bf93041d3eba3a41b9a48d365f303 | 2017-08-16T06:36:52 | openjpeg | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make cmake g++
RUN git clone https://github.com/uclouvain/openjpeg openjpeg
RUN git -C openjpeg checkout af760007711bf93041d3eba3a41b9a48d365f303
WORKDIR $SRC/openjpeg
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p build
cd build
cmake ..
make clean -s -j$(nproc)
make -j$(nproc) -s | /src/openjpeg | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/uclouvain/openjpeg/issues/991
## Description:
Issue: uclouvain/openjpeg#991
Title: heap-based buffer overflow in opj_write_bytes_LE (cio.c) (unfixed #985)
State: closed
Created by: asarubbo
Created at: 2017-08-16 14... | [] | [
{
"sha": "dcac91b8c72f743bda7dbfa9032356bc8110098a",
"url": "https://github.com/uclouvain/openjpeg/commit/dcac91b8c72f743bda7dbfa9032356bc8110098a"
}
] |
njs.cve-2022-28049 | nginx/njs | ad48705bf1f04b4221a5f5b07715ac48b3160d53 | 2022-02-21T10:52:59 | 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 ad48705bf1f04b4221a5f5b07715ac48b3160d53
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/473
## Description:
Issue: nginx/njs#473
Title: Null pointer dereference in src/njs_vmcode.c:1049:17
State: closed
Created by: andreafioraldi
Created at: 2022-02-17 15:51:14+00:00
Labels: bug, fuzze... | [] | [
{
"sha": "f65981b0b8fcf02d69a40bc934803c25c9f607ab",
"url": "https://github.com/nginx/njs/commit/f65981b0b8fcf02d69a40bc934803c25c9f607ab"
}
] |
libiec61850.cve-2018-19122 | mz-automation/libiec61850 | 6ba363bd4a4803dfb194733a9729ad421d6b49f0 | 2018-09-04T08:01:19 | libiec61850 | c++ | FROM hwiwonlee/secb.base:latest
RUN git clone https://github.com/mz-automation/libiec61850 libiec61850
RUN git -C libiec61850 checkout 6ba363bd4a4803dfb194733a9729ad421d6b49f0
WORKDIR $SRC/libiec61850
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p build && cd build
cmake ../
make -j$(nproc) | /src/libiec61850 | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/mz-automation/libiec61850/issues/86
## Description:
Issue: mz-automation/libiec61850#86
Title: SEGV in function Ethernet_sendPacket
State: open
Created by: fouzhe
Created at: 2018-11-08 15:41:19+00:00
Issue Body:
I... | [
{
"content": "[libfuzzer]\ndetect_leaks=0\n",
"filename": "fuzz_decode.options"
}
] | [] |
njs.cve-2022-38890 | nginx/njs | 6af74b6c5e120595e11df74ca8749021e5f2a7e1 | 2022-08-29T23:18:20 | 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 6af74b6c5e120595e11df74ca8749021e5f2a7e1
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/569
## Description:
Issue: nginx/njs#569
Title: Another way to trigger SEGV in njs_utf8_next cause oob read
State: closed
Created by: ret2ddme
Created at: 2022-08-25 02:58:03+00:00
Labels: bug, fuzz... | [] | [
{
"sha": "569292e0a74f2b1ec09566f3329f82bdd0d58e87",
"url": "https://github.com/nginx/njs/commit/569292e0a74f2b1ec09566f3329f82bdd0d58e87"
},
{
"sha": "b9aea5854bcf6f2de8f7a7f1550874e392b94be2",
"url": "https://github.com/nginx/njs/commit/b9aea5854bcf6f2de8f7a7f1550874e392b94be2"
}
] |
gpac.cve-2021-32270 | gpac/gpac | 9d593d5d7fd48bb4ab6d90b40f79faf9c6270136 | 2020-09-10T11:23:35 | 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 9d593d5d7fd48bb4ab6d90b40f79faf9c6270136
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/1586
## Description:
Issue: gpac/gpac#1586
Title: A Segmentation fault in box_code_base.c:11579
State: closed
Created by: seviezhou
Created at: 2020-09-04 14:58:11+00:00
Issue Body:
## System info
... | [
{
"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": "5a884e376e1f67b3d40ec91c0b70ab49219fe3cd",
"url": "https://github.com/gpac/gpac/commit/5a884e376e1f67b3d40ec91c0b70ab49219fe3cd"
},
{
"sha": "362fc486b5c0eea04f26793d5623f6a9272bd85a",
"url": "https://github.com/gpac/gpac/commit/362fc486b5c0eea04f26793d5623f6a9272bd85a"
}
] |
imagemagick.cve-2017-11754 | imagemagick/imagemagick | 2ab7a8720e8d36aaeab5eb6ca997582bb7c2b47f | 2017-07-28T17:46:10 | 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 2ab7a8720e8d36aaeab5eb6ca997582bb7c2b47f
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 | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/ImageMagick/ImageMagick/issues/633
## Description:
Issue: ImageMagick/ImageMagick#633
Title: Memory-Leak in AcquireAlignedMemory MagickCore/memory.c:262
State: closed
Created by: zhouat
Created at: 2017-07-30 11:13:... | [
{
"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": "cb713211bad3fa4f0c535255fa043917482fc964",
"url": "https://github.com/ImageMagick/ImageMagick/commit/cb713211bad3fa4f0c535255fa043917482fc964"
},
{
"sha": "b04e9c949d917a4a603f1a9bfe09737246229323",
"url": "https://github.com/ImageMagick/ImageMagick/commit/b04e9c949d917a4a603f1a9bfe097... | |
gpac.cve-2019-20164 | 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/1332
## Description:
Issue: gpac/gpac#1332
Title: AddressSanitizer: NULL pointer dereference (use-after-free ) in gf_isom_box_del isomedia/box_funcs.c:1500
State: closed
Created by: Clingto
Created ... | [
{
"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": "5250afecbc770c8f26829e9566d5b226a3c5fa80",
"url": "https://github.com/gpac/gpac/commit/5250afecbc770c8f26829e9566d5b226a3c5fa80"
}
] |
wamr.cve-2024-25431 | bytecodealliance/wasm-micro-runtime | b3f728ceb36f9c72047a934436ef41699643ab99 | 2024-01-31T22:42:12 | wasm-micro-runtime | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt upgrade -y && apt install -y build-essential clang llvm
RUN apt install -y build-essential clang llvm
RUN git clone https://github.com/bytecodealliance/wasm-micro-runtime wasm-micro-runtime
RUN git -C wasm-micro-runtime checkout b3f728ceb36f9c72047a934436ef41699... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
-DCMAKE_C_FLAGS="${CFLAGS}"
-DCMAKE_CXX_FLAGS="${CXXFLAGS}"
-DCMAKE_EXE_LINKER_FLAGS="${LDFLAGS}"
-DCMAKE_MODULE_LINKER_FLAGS="${LDFLAGS}"
-DCMAKE_SHARED_LINKER_FLAGS="${LDFLAGS}"
cmake -S . -B build_loader \
"${cmake_args[... | /src/wasm-micro-runtime | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/bytecodealliance/wasm-micro-runtime/issues/3122
## Description:
Issue: bytecodealliance/wasm-micro-runtime#3122
Title: Invalid Read Memory in check_wasi_abi_compatibility
State: closed
Created by: haruki3hhh
Created... | [] | [
{
"sha": "b3f728ceb36f9c72047a934436ef41699643ab99",
"url": "https://github.com/bytecodealliance/wasm-micro-runtime/commit/b3f728ceb36f9c72047a934436ef41699643ab99"
},
{
"sha": "06df58f20eeb46351b0ca7ff46d21eb541d2784a",
"url": "https://github.com/bytecodealliance/wasm-micro-runtime/commit/06df5... |
libarchive.cve-2017-14501 | libarchive/libarchive | 98a695399e8e7420635a5448aecde8b0a82fb83a | 2017-07-09T21:38:04 | libarchive | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config libbz2-dev liblzo2-dev liblzma-dev liblz4-dev libz-dev libxml2-dev libssl-dev libacl1-dev libattr1-dev
RUN git clone https://github.com/libarchive/libarchive libarchive
RUN git -C libarchive checkout 98a69... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./configure
make -j$(nproc) all | /src/libarchive | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/libarchive/libarchive/issues/949
## Description:
Issue: libarchive/libarchive#949
Title: out-of-bounds read in archive_read_format_iso9660_read_header()
State: closed
Created by: carnil
Created at: 2017-09-16 19:13:... | [
{
"content": "// 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 b... | [
{
"sha": "5562545b5562f6d12a4ef991fae158bf4ccf92b6",
"url": "https://github.com/libarchive/libarchive/commit/5562545b5562f6d12a4ef991fae158bf4ccf92b6"
}
] |
faad2.cve-2021-32273 | 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/56
## Description:
Issue: knik0/faad2#56
Title: A stack-buffer-overflow in mp4read.c:141:9
State: closed
Created by: seviezhou
Created at: 2020-08-16 07:27:58+00:00
Issue Body:
## System info
U... | [] | [
{
"sha": "eb19fa58e08ffad79fe4af09abc0b5a584b4e6e6",
"url": "https://github.com/knik0/faad2/commit/eb19fa58e08ffad79fe4af09abc0b5a584b4e6e6"
},
{
"sha": "1073aeef823cafd844704389e9a497c257768e2f",
"url": "https://github.com/knik0/faad2/commit/1073aeef823cafd844704389e9a497c257768e2f"
}
] |
mruby.cve-2022-1106 | mruby/mruby | bf5bbf0a4b7f19ea3960e59f32ec252b3aee2c1a | 2022-03-25T21:26:57 | 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 bf5bbf0a4b7f19ea3960e59f32ec252b3aee2c1a
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/16b9d0ea-71ed-41bc-8a88-2deb4c20be8f
## Description:
While fuzzing mruby I found a use after free in mruby compiled with ASAn.
Proof of Concept (uaf5.rb)
var1=([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,nil]..([0,0,0... | [] | [
{
"sha": "16b9d0ea",
"url": null
},
{
"sha": "7f5a490d09f4d56801ac3a3e4e39e03e1471b44c",
"url": "https://github.com/mruby/mruby/commit/7f5a490d09f4d56801ac3a3e4e39e03e1471b44c"
},
{
"sha": "aaa28a508903041dd7399d4159a8ace9766b022f",
"url": "https://github.com/mruby/mruby/commit/aaa28... |
mruby.cve-2022-1071 | mruby/mruby | b4168c9b68daf759ce890c7da9e4ad5547058330 | 2022-03-24T17:45:06 | 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 b4168c9b68daf759ce890c7da9e4ad5547058330
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/6597ece9-07af-415b-809b-919ce0a17cf3
## Description:
While fuzzing mruby I found a use after free in mruby compiled with ASAn.
Proof of Concept (uaf1.rb)
var1 = -0
var2 = 1.0
var3 = 1
var4 = +0
var3 = methods.group... | [] | [
{
"sha": "6597ece9",
"url": null
},
{
"sha": "aaa28a508903041dd7399d4159a8ace9766b022f",
"url": "https://github.com/mruby/mruby/commit/aaa28a508903041dd7399d4159a8ace9766b022f"
},
{
"sha": "d53a991b0741f12f1a372c2cd557189a38f2000a",
"url": "https://github.com/mruby/mruby/commit/d53a9... |
php.cve-2018-19935 | php/php-src | c26cb383a5661255bf60fe54de6baf430537e380 | 2018-12-05T02:13:30 | php-src | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool bison re2c make ca-certificates curl xz-utils dpkg-dev file libc-dev pkg-config libcurl4-openssl-dev libedit-dev libsqlite3-dev libssl-dev zlib1g-dev
RUN git clone https://github.com/php/php-src php-src
RUN git -C ph... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./buildconf --force
./configure \
--enable-option-checking=fatal \
--disable-libxml \
--disable-dom \
--disable-simplexml \
--disable-xml \
--disable-xmlreader \
--disable-xmlwriter \
... | /src/php-src | address | ================= Bug Report (1/1) ==================
## Source: PHP Bugs
## URL: https://bugs.php.net/bug.php?id=77020
## Description:
PHP Bug ID: 77020
Summary: null pointer dereference in imap_mail
Status: Closed
PHP Version: 7.2.11
Assigned: stas (profile)
CVE-ID: 2018-19935
Description:
Description:
------------
... | [] | [
{
"sha": "8b1049a7ae96ae9b0315cfe6742e5fb010ffb5d3",
"url": "https://github.com/php/php-src/commit/8b1049a7ae96ae9b0315cfe6742e5fb010ffb5d3"
}
] |
php.cve-2019-9023 | php/php-src | 05fb10165081cb4fb55a9943b44cab62c627db7a | 2019-01-09T02:57:53 | php-src | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool bison re2c make ca-certificates curl xz-utils dpkg-dev file libc-dev pkg-config libcurl4-openssl-dev libedit-dev libsqlite3-dev libssl-dev zlib1g-dev
RUN git clone https://github.com/php/php-src php-src
RUN git -C ph... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./buildconf --force
./configure \
--enable-option-checking=fatal \
--disable-libxml \
--disable-dom \
--disable-simplexml \
--disable-xml \
--disable-xmlreader \
--disable-xmlwriter \
... | /src/php-src | address | ================= Bug Report (1/7) ==================
## Source: PHP Bugs
## URL: https://bugs.php.net/bug.php?id=77370
## Description:
PHP Bug ID: 77370
Summary: Buffer overflow on mb regex functions - fetch_token
Status: Closed
PHP Version: 5.6.39
Assigned: stas (profile)
CVE-ID: 2019-9023
Description:
Description:
... | [] | [
{
"sha": "0839641503bc381d64347081b4308dd7335a26b5",
"url": "https://github.com/php/php-src/commit/0839641503bc381d64347081b4308dd7335a26b5"
},
{
"sha": "d949cca738a67419c7d73f032ffe81ca6b77d803",
"url": "https://github.com/php/php-src/commit/d949cca738a67419c7d73f032ffe81ca6b77d803"
},
{
... |
gpac.cve-2023-0819 | gpac/gpac | 1b77837ca27a80c695363416077bcab1aa72dc0a | 2023-02-13T08:41:01 | 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 1b77837ca27a80c695363416077bcab1aa72dc0a
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/35793610-dccc-46c8-9f55-6a24c621e4ef
## Description:
Version
./MP4Box -version
MP4Box - GPAC version 2.3-DEV-rev40-g3602a5ded-master
(c) 2000-2023 Telecom Paris distributed under LGPL v2.1+ - http://gpac.io
Please... | [] | [
{
"sha": "6a24c621e4ef",
"url": null
},
{
"sha": "d067ab3ccdeaa340e8c045a0fd5bcfc22b809e8f",
"url": "https://github.com/gpac/gpac/commit/d067ab3ccdeaa340e8c045a0fd5bcfc22b809e8f"
},
{
"sha": "3602a5ded4e57b0044a949f985ee3792f94a9a36",
"url": "https://github.com/gpac/gpac/commit/3602a... |
w3m.cve-2023-38253 | tats/w3m | c8223fed7cc631ad85d8e5665e509e7988bedbab | 2023-01-20T20:01:52 | w3m | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y libgc-dev
RUN git clone https://github.com/tats/w3m w3m
RUN git -C w3m checkout c8223fed7cc631ad85d8e5665e509e7988bedbab
WORKDIR $SRC/w3m
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./configure
make myctype.o -j$(nproc)
make Str.o -j$(nproc)
make libwc -j$(nproc) | /src/w3m | address | ================= Bug Report (1/2) ==================
## Source: GitHub Issue
## URL: https://github.com/tats/w3m/issues/271
## Description:
Issue: tats/w3m#271
Title: [BUG] Out-of-bound read in growbuf_to_Str , indep.c:441
State: closed
Created by: iskindar
Created at: 2023-06-29 12:32:55+00:00
Issue Body:
Hello, I f... | [] | [
{
"sha": "93ad5ee7da3bb3b6848434f0940321f345b7369c",
"url": "https://github.com/tats/w3m/commit/93ad5ee7da3bb3b6848434f0940321f345b7369c"
},
{
"sha": "edc602651c506aeeb60544b55534dd1722a340d3",
"url": "https://github.com/tats/w3m/commit/edc602651c506aeeb60544b55534dd1722a340d3"
}
] |
libsass.cve-2017-12964 | sass/libsass | 31573210c0d120ae56aaea543a0dbab5255cdfb7 | 2017-05-22T14:06:38 | libsass | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone https://github.com/sass/libsass libsass
RUN git -C libsass checkout 31573210c0d120ae56aaea543a0dbab5255cdfb7
WORKDIR $SRC/libsass
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
export BUILD='static'
make -j$(nproc) | /src/libsass | address | ================= Bug Report (1/1) ==================
## Source: Red Hat Bugzilla
## URL: https://bugzilla.redhat.com/show_bug.cgi?id=1482397
## Description:
Bugzilla ID: 1482397
Title: There is a stack-overflow in the sassc of libsass library. This vulnerability is triggered in function Sass::Eval::operator() .
Descr... | [
{
"content": "#include \"sass.h\"\n\nextern \"C\" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {\n char* sass_data = (char*) malloc(sizeof(char) * size + 1);\n if (sass_data == NULL) return 0;\n\n memcpy(sass_data, data, size);\n sass_data[size] = '\\0';\n\n struct Sass_Data_Context* ctx = ... | [] |
imagemagick.cve-2017-14684 | imagemagick/imagemagick | dcd5a5fed62ec861b955bd3da1d6f5592486c05a | 2017-09-23T05:58:25 | 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 dcd5a5fed62ec861b955bd3da1d6f5592486c05a
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/770
## Description:
Issue: ImageMagick/ImageMagick#770
Title: memory leak in ResizeMagickMemory MagickCore/memory.c:1225
State: closed
Created by: jerryl3e
Created at: 2017-09-21 09:06... | [
{
"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": "dd367e0c3c3f37fbf1c20fa107b67a668b22c6e2",
"url": "https://github.com/ImageMagick/ImageMagick/commit/dd367e0c3c3f37fbf1c20fa107b67a668b22c6e2"
},
{
"sha": "a25142f284384a10306f14393d9bfd7af95ddfff",
"url": "https://github.com/ImageMagick/ImageMagick/commit/a25142f284384a10306f14393d9bf... |
mruby.cve-2022-0632 | mruby/mruby | f906ac314cbeca0da5dffa0fc736be0c4a388d7e | 2022-02-19T00:49:44 | 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 f906ac314cbeca0da5dffa0fc736be0c4a388d7e
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/3e5bb8f6-30fd-4553-86dd-761e9459ce1b
## Description:
Description
There is a NULL Pointer Dereference in ary_concat (array.c:301). This bug has been found on mruby lastest commit (hash ecb28f4bf463483cf914c799d086b0... | [] | [
{
"sha": "3e5bb8f6",
"url": null
},
{
"sha": "44f591aa8f7091e6ca6cb418e428ae6d4ceaf77d",
"url": "https://github.com/mruby/mruby/commit/44f591aa8f7091e6ca6cb418e428ae6d4ceaf77d"
},
{
"sha": "ecb28f4bf463483cf914c799d086b0cfff997aee",
"url": "https://github.com/mruby/mruby/commit/ecb28... |
upx.cve-2021-43312 | 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/379
## Description:
Issue: upx/upx#379
Title: [bug] heap buffer overflow in PackLinuxElf64::invert_pt_dynamic at p_lx_elf.cpp:5239
State: closed
Created by: 14isnot40
Created at: 2020-05-23 14:21:20+0... | [] | [
{
"sha": "3d87b34754bbac3e171600be396ec652794b2cfa",
"url": "https://github.com/upx/upx/commit/3d87b34754bbac3e171600be396ec652794b2cfa"
},
{
"sha": "828a6cf07b69bc7314e888d7b76f0eafe125a3f6",
"url": "https://github.com/upx/upx/commit/828a6cf07b69bc7314e888d7b76f0eafe125a3f6"
}
] |
open5gs.cve-2024-40129 | open5gs/open5gs | 2aa12449aade5f50ed4710d9ac2eb8e1b96c43b9 | 2023-09-05T08:11:19 | open5gs | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get upgrade -y && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends python3-pip python3-setuptools python3-wheel ninja-build build-essential flex bison git cmake meson libsctp-dev libgnutls28-dev libgcrypt-dev libssl-dev libidn11-dev libm... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
CFLAGS="$CFLAGS -Wno-compound-token-split-by-macro -Wno-format"
CXXFLAGS="$CFLAGS"
LDFLAGS="$CFLAGS"
sed -i "s|link_args: lib_fuzzing_engine|link_args: [lib_fuzzing_engine, '-ltalloc', '-Wl,-rpath,\$ORIGIN/lib']|" tests/fuzzing/meson.build
m... | /src/open5gs | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/open5gs/open5gs/issues/2585
## Description:
Issue: open5gs/open5gs#2585
Title: [Bug]: Possible heap-buffer-overflow in /lib/pfcp/context.c
State: closed
Created by: liuxiaoxinxinxin
Created at: 2023-09-05 14:50:54+0... | [] | [
{
"sha": "2fbc445d32aa7749166396a9c055a199f90a1b01",
"url": "https://github.com/open5gs/open5gs/commit/2fbc445d32aa7749166396a9c055a199f90a1b01"
},
{
"sha": "444297968be04235496c6724b0bec62c61fe8760",
"url": "https://github.com/open5gs/open5gs/commit/444297968be04235496c6724b0bec62c61fe8760"
}... |
mruby.cve-2022-0080 | mruby/mruby | 3de9ddfb395c03996066a5df6d22f901a4999de2 | 2021-12-31T03:15:41 | 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 3de9ddfb395c03996066a5df6d22f901a4999de2
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/59a70392-4864-4ce3-8e35-6ac2111d1e2e
## Description:
Description
Heap Base Buffer Overflow mrb_irep_cutref
Proof of Concept
( *a = () )
a.<<.take_while{ a.drop_while {Enumerable ; a<<lambda {}}}
Impact
mruby/bin/mi... | [] | [
{
"sha": "59a70392",
"url": null
},
{
"sha": "28ccc664e5dcd3f9d55173e9afde77c4705a9ab6",
"url": "https://github.com/mruby/mruby/commit/28ccc664e5dcd3f9d55173e9afde77c4705a9ab6"
}
] |
faad2.cve-2018-20361 | knik0/faad2 | 334e7647a5f31903aca33dde39bb8683e9d8cccd | 2017-12-17T13:54:42 | 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 334e7647a5f31903aca33dde39bb8683e9d8cccd
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/30
## Description:
Issue: knik0/faad2#30
Title: Invalid memory address dereference in hf_assembly (in libfaad/sbr_hfadj.c:1536)
State: closed
Created by: fantasy7082
Created at: 2018-12-17 06:49:1... | [] | [
{
"sha": "6b4a7cde30f2e2cb03e78ef476cc73179cfffda3",
"url": "https://github.com/knik0/faad2/commit/6b4a7cde30f2e2cb03e78ef476cc73179cfffda3"
},
{
"sha": "678aaac12a93ea496bb037730a1c13db73e70924",
"url": "https://github.com/knik0/faad2/commit/678aaac12a93ea496bb037730a1c13db73e70924"
},
{
... |
freerdp.cve-2023-39354 | freerdp/freerdp | 60dd48e6982b4e4d5dcd3ed1a4fc1ef923887082 | 2023-08-25T07:36:05 | freerdp | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y build-essential git-core cmake ninja-build pkg-config zlib1g-dev ccache libx11-dev libxext-dev libxinerama-dev libxcursor-dev libxkbfile-dev libxv-dev libxi-dev libxdamage-dev libxrender-dev libxrandr-dev libssl-dev libasound2-dev libcups2-dev lib... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
-DCMAKE_C_FLAGS="${CFLAGS}"
-DCMAKE_CXX_FLAGS="${CXXFLAGS}"
-DCMAKE_EXE_LINKER_FLAGS="${LDFLAGS}"
-DCMAKE_MODULE_LINKER_FLAGS="${LDFLAGS}"
-DCMAKE_SHARED_LINKER_FLAGS="${LDFLAGS}"
cmake "${cmake_args[@]}" -S . -B build -G... | /src/freerdp | address | ================= Bug Report (1/1) ==================
## Source: GitHub Advisory
## URL: https://github.com/FreeRDP/FreeRDP/security/advisories/GHSA-c3r2-pxxp-f8r6
## Description:
Advisory ID: GHSA-c3r2-pxxp-f8r6
Title: Out-Of-Bounds Read in nsc_rle_decompress_data
Description:
Summary
Out-Of-Bounds Read in nsc_rle_de... | [] | [
{
"sha": "cd1da25a87358eb3b5512fd259310e95b19a05ec",
"url": "https://github.com/FreeRDP/FreeRDP/commit/cd1da25a87358eb3b5512fd259310e95b19a05ec"
},
{
"sha": "63a2f65618748c12f79ff7450d46c6e194f2db76",
"url": "https://github.com/FreeRDP/FreeRDP/commit/63a2f65618748c12f79ff7450d46c6e194f2db76"
}... |
qpdf.cve-2017-18183 | qpdf/qpdf | 36b3fe5af761b7032a506808cf6ce6d37c297bfc | 2017-08-11T19:57:05 | qpdf | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool cmake nasm
RUN git clone https://github.com/qpdf/qpdf qpdf
RUN git -C qpdf checkout 36b3fe5af761b7032a506808cf6ce6d37c297bfc
WORKDIR $SRC/qpdf
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./configure --static --prefix="$WORK"
make -j$(nproc) all
make install -j$(nproc)
cmake . -DCMAKE_INSTALL_PREFIX="$WORK" -DENABLE_STATIC:bool=on
make -j$(nproc)
./configure \
--enable-static \
--disable-shared \
--prefix="$WORK" \
LD... | /src/qpdf | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/qpdf/qpdf/issues/143
## Description:
Issue: qpdf/qpdf#143
Title: stack overflow / crash on malformed input in QPDFWriter::enqueueObject(QPDFObjectHandle)
State: closed
Created by: hannob
Created at: 2017-08-12 07:51... | [
{
"content": "#include \"qpdf/qpdf-c.h\"\n\n#include <cstddef>\n#include <cstdint>\n#include <cstdlib>\n#include <string>\n#include <vector>\n\nextern \"C\" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {\n _qpdf_data* qpdf = qpdf_init();\n const char* buffer = reinterpret_cast<const char*>(dat... | [
{
"sha": "8249a26d69f72b9cda584c14cc3f12769985e481",
"url": "https://github.com/qpdf/qpdf/commit/8249a26d69f72b9cda584c14cc3f12769985e481"
},
{
"sha": "f754b4eecb56cccb1af55ba1c6df95fb9de329ce",
"url": "https://github.com/jberkenbilt/qpdf/commit/f754b4eecb56cccb1af55ba1c6df95fb9de329ce"
}
] |
libredwg.cve-2020-21844 | 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-574493607
## Description:
Issue: LibreDWG/libredwg#188
Title: Several bugs found by fuzzing
Referenced comment by linhlhq on 2020-01-15 04:44:08+00:00:
**13.memcpy-param-ov... | [
{
"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"... |
imagemagick.cve-2017-17879 | imagemagick/imagemagick | ddbf0ed10323d0fb329189041190630a8f7af5a7 | 2017-12-25T07:15:39 | 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 ddbf0ed10323d0fb329189041190630a8f7af5a7
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/906
## Description:
Issue: ImageMagick/ImageMagick#906
Title: heap-buffer-overflow in ReadOneMNGImage
State: closed
Created by: henices
Created at: 2017-12-21 07:57:04+00:00
Labels: bu... | [
{
"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": "72b3994a948a8a90dc664f3e7f72464878a31fbf",
"url": "https://github.com/ImageMagick/ImageMagick/commit/72b3994a948a8a90dc664f3e7f72464878a31fbf"
},
{
"sha": "e41f18ecccbdd1c38e1382057718e91e8f8d6d80",
"url": "https://github.com/ImageMagick/ImageMagick/commit/e41f18ecccbdd1c38e1382057718e... |
gpac.cve-2019-20167 | 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/1330
## Description:
Issue: gpac/gpac#1330
Title: AddressSanitizer: NULL pointer dereference in senc_Parse isomedia/box_code_drm.c:1378
State: closed
Created by: Clingto
Created at: 2019-11-09 11:17... | [
{
"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": "5250afecbc770c8f26829e9566d5b226a3c5fa80",
"url": "https://github.com/gpac/gpac/commit/5250afecbc770c8f26829e9566d5b226a3c5fa80"
}
] |
gpac.cve-2023-2840 | gpac/gpac | 6f28c4cd607d83ce381f9b4a9f8101ca1e79c611 | 2023-05-22T10:35:19 | 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 6f28c4cd607d83ce381f9b4a9f8101ca1e79c611
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/21926fc2-6eb1-4e24-8a36-e60f487d0257
## Description:
Description
NULL Pointer Dereference In gf_isom_fragment_add_sample_ex isomedia/movie_fragments.c:2883
Environment
No LSB modules are available.
Distributor ID: ... | [] | [
{
"sha": "21926fc2",
"url": null
},
{
"sha": "ba59206b3225f0e8e95a27eff41cb1c49ddf9a37",
"url": "https://github.com/gpac/gpac/commit/ba59206b3225f0e8e95a27eff41cb1c49ddf9a37"
}
] |
gpac.cve-2022-29537 | gpac/gpac | 418db4149af78773815b5f6a7030a120037ba140 | 2022-02-22T09:21:46 | 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 418db4149af78773815b5f6a7030a120037ba140
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/2173
## Description:
Issue: gpac/gpac#2173
Title: [BUG] heap buffer overflow in gp_rtp_builder_do_hevc
State: closed
Created by: kdsjZh
Created at: 2022-04-16 08:01:38+00:00
Issue Body:
Thanks for ... | [] | [
{
"sha": "6dcba5347cd12372225fc47080bc6e770fc4bb1b",
"url": "https://github.com/gpac/gpac/commit/6dcba5347cd12372225fc47080bc6e770fc4bb1b"
},
{
"sha": "1773b7a34bc08734aee7d3f5dfe65d06389fe15a",
"url": "https://github.com/gpac/gpac/commit/1773b7a34bc08734aee7d3f5dfe65d06389fe15a"
},
{
"s... |
oniguruma.cve-2017-9226 | kkos/oniguruma | b4bf968ad52afe14e60a2dc8a95d3555c543353a | 2017-05-18T03:05:27 | oniguruma | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone https://github.com/kkos/oniguruma oniguruma
RUN git -C oniguruma checkout b4bf968ad52afe14e60a2dc8a95d3555c543353a
WORKDIR $SRC/oniguruma
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./autogen.sh
./configure
make clean -j$(nproc)
make -j$(nproc) | /src/oniguruma | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/kkos/oniguruma/issues/55
## Description:
Issue: kkos/oniguruma#55
Title: Heap corruption in next_state_val() in 15 encodings
State: closed
Created by: xixabangm4
Created at: 2017-05-18 04:28:31+00:00
Issue Body:
Th... | [
{
"content": "/oniguruma\n/fuzzer.options.*\n",
"filename": ".gitignore"
},
{
"content": "",
"filename": "fuzzer.options"
}
] | [
{
"sha": "b4bf968ad52afe14e60a2dc8a95d3555c543353a",
"url": "https://github.com/kkos/oniguruma/commit/b4bf968ad52afe14e60a2dc8a95d3555c543353a"
},
{
"sha": "f015fbdd95f76438cd86366467bb2b39870dd7c6",
"url": "https://github.com/kkos/oniguruma/commit/f015fbdd95f76438cd86366467bb2b39870dd7c6"
}
] |
libiec61850.cve-2018-19121 | mz-automation/libiec61850 | 6ba363bd4a4803dfb194733a9729ad421d6b49f0 | 2018-09-04T08:01:19 | libiec61850 | c++ | FROM hwiwonlee/secb.base:latest
RUN git clone https://github.com/mz-automation/libiec61850 libiec61850
RUN git -C libiec61850 checkout 6ba363bd4a4803dfb194733a9729ad421d6b49f0
WORKDIR $SRC/libiec61850
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p build && cd build
cmake ../
make -j$(nproc) | /src/libiec61850 | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/mz-automation/libiec61850/issues/85
## Description:
Issue: mz-automation/libiec61850#85
Title: SEGV in function Ethernet_receivePacket
State: closed
Created by: fouzhe
Created at: 2018-11-08 15:40:58+00:00
Issue Bo... | [
{
"content": "[libfuzzer]\ndetect_leaks=0\n",
"filename": "fuzz_decode.options"
}
] | [] |
imagemagick.cve-2017-11532 | imagemagick/imagemagick | 9871b4ad7400606bbecf7f979b198080f4b107c3 | 2017-07-15T12:32:46 | 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 9871b4ad7400606bbecf7f979b198080f4b107c3
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/563
## Description:
Issue: ImageMagick/ImageMagick#563
Title: Memory Leak in WriteMPCImage()
State: closed
Created by: lcatro
Created at: 2017-07-16 15:36:17+00:00
Labels: bug
Issue B... | [
{
"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": "184a047627aa564b7062d2462aef668155caa390",
"url": "https://github.com/ImageMagick/ImageMagick/commit/184a047627aa564b7062d2462aef668155caa390"
},
{
"sha": "46bcb8a86801d3d9c3f89ec1c01fa8a98da05645",
"url": "https://github.com/ImageMagick/ImageMagick/commit/46bcb8a86801d3d9c3f89ec1c01fa... |
njs.cve-2022-27007 | nginx/njs | e673ae41a998d1391bd562edb2ed6d49db7cc716 | 2022-02-21T10:52:47 | 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 e673ae41a998d1391bd562edb2ed6d49db7cc716
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/469
## Description:
Issue: nginx/njs#469
Title: Patch bypass for njs_await_fulfilled, causing UAF again
State: closed
Created by: P1umer
Created at: 2022-02-15 08:42:02+00:00
Labels: bug, fuzzer
Is... | [] | [
{
"sha": "ad48705bf1f04b4221a5f5b07715ac48b3160d53",
"url": "https://github.com/nginx/njs/commit/ad48705bf1f04b4221a5f5b07715ac48b3160d53"
},
{
"sha": "7bd570b39297d3d91902c93a624c89b08be7a6fe",
"url": "https://github.com/nginx/njs/commit/7bd570b39297d3d91902c93a624c89b08be7a6fe"
},
{
"s... |
mruby.cve-2022-0481 | mruby/mruby | 8d06e79c578a3b24c45ae4881c5122b73b3bff59 | 2022-02-02T05:57:43 | 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 8d06e79c578a3b24c45ae4881c5122b73b3bff59
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/54725c8c-87f4-41b6-878c-01d8e0ee7027
## Description:
Description
There is a NULL Pointer Dereference in iv_free (src/variable.c:232:20). This bug has been found on mruby lastest commit (hash 00f2b74ab2c1f03084908c8... | [] | [
{
"sha": "54725c8c",
"url": null
},
{
"sha": "ae3c99767a27f5c6c584162e2adc6a5d0eb2c54e",
"url": "https://github.com/mruby/mruby/commit/ae3c99767a27f5c6c584162e2adc6a5d0eb2c54e"
},
{
"sha": "00f2b74ab2c1f03084908c815dcd0934f9fc702a",
"url": "https://github.com/mruby/mruby/commit/00f2b... |
imagemagick.cve-2017-17880 | imagemagick/imagemagick | ddbf0ed10323d0fb329189041190630a8f7af5a7 | 2017-12-25T07:15:39 | 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 ddbf0ed10323d0fb329189041190630a8f7af5a7
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/907
## Description:
Issue: ImageMagick/ImageMagick#907
Title: stack-buffer-overflow in SetImageProgress
State: closed
Created by: henices
Created at: 2017-12-21 08:52:20+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": "4b5d1edb02c432040e3ff894d0c461bcce6fd2c9",
"url": "https://github.com/ImageMagick/ImageMagick/commit/4b5d1edb02c432040e3ff894d0c461bcce6fd2c9"
},
{
"sha": "663b3b432c202cd2aeda7ea7e82b74cce51ab1cf",
"url": "https://github.com/ImageMagick/ImageMagick/commit/663b3b432c202cd2aeda7ea7e82b7... |
matio.cve-2019-9038 | tbeu/matio | 55e506b9d46b5ee8036dc7933178f3c59e715ff1 | 2018-10-22T23:21:48 | matio | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone https://github.com/tbeu/matio matio
RUN git -C matio checkout 55e506b9d46b5ee8036dc7933178f3c59e715ff1
WORKDIR $SRC/matio
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./autogen.sh
./configure
make -j$(nproc)
make install -j$(nproc) | /src/matio | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/tbeu/matio/issues/103
## Description:
Issue: tbeu/matio#103
Title: some memory corruption problems when the library parse the mat file
State: closed
Created by: cool-tomato
Created at: 2019-02-20 02:24:30+00:00
Labe... | [
{
"content": "// Copyright 2019 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": "5552ebde32d48e9290de871dce2f773a76cdaca7",
"url": "https://github.com/tbeu/matio/commit/5552ebde32d48e9290de871dce2f773a76cdaca7"
},
{
"sha": "0966538de4e96f8a22e2f10562b765280fa61ece",
"url": "https://github.com/tbeu/matio/commit/0966538de4e96f8a22e2f10562b765280fa61ece"
},
{
... |
md4c.cve-2021-30027 | mity/md4c | aa654230915db7439eb22ae8b0d6c58f4409e17d | 2021-03-22T08:04:55 | md4c | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make cmake
RUN git clone https://github.com/mity/md4c md4c
RUN git -C md4c checkout aa654230915db7439eb22ae8b0d6c58f4409e17d
WORKDIR $SRC/md4c
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/md4c | memory | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/mity/md4c/issues/155
## Description:
Issue: mity/md4c#155
Title: Use of uninitialized value in the md_analyze_line() function
State: closed
Created by: bsdb0y
Created at: 2021-03-27 18:39:10+00:00
Labels: bug
Issue... | [] | [
{
"sha": "4fc808d8fe8d8904f8525bb4231d854f45e23a19",
"url": "https://github.com/ec1oud/md4c/commit/4fc808d8fe8d8904f8525bb4231d854f45e23a19"
}
] |
unicorn.cve-2022-29695 | unicorn-engine/unicorn | c379d1bfe4afc58886518c0a3b3feb25aaea5ca3 | 2022-04-16T10:50:12 | 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 c379d1bfe4afc58886518c0a3b3feb25aaea5ca3
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/1595
## Description:
Issue: unicorn-engine/unicorn#1595
Title: Memory leaks caused by incomplete unicorn engine initialization.
State: closed
Created by: liyansong2018
Created at: 2022-... | [] | [
{
"sha": "5a79d7879ca3ee0ce684ad6576d8ac15e8d90fc7",
"url": "https://github.com/unicorn-engine/unicorn/commit/5a79d7879ca3ee0ce684ad6576d8ac15e8d90fc7"
}
] |
libredwg.cve-2020-21832 | 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-574492612
## Description:
Issue: LibreDWG/libredwg#188
Title: Several bugs found by fuzzing
Referenced comment by linhlhq on 2020-01-15 04:39:11+00:00:
**3.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"... |
libraw.cve-2018-20337 | libraw/libraw | e12cae8cbc7c73a7200f6e7621d71e113885ea72 | 2018-11-22T07:47:32 | libraw | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config
RUN git clone https://github.com/libraw/libraw libraw
RUN git -C libraw checkout e12cae8cbc7c73a7200f6e7621d71e113885ea72
WORKDIR $SRC/libraw
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./configure --disable-examples
make -j$(nproc) | /src/libraw | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/LibRaw/LibRaw/issues/192
## Description:
Issue: LibRaw/LibRaw#192
Title: Stack-buffer-overflow bug
State: closed
Created by: DawnYang-cn
Created at: 2018-12-19 02:36:42+00:00
Issue Body:
Hello!
I am learning AFL-Fu... | [
{
"content": "/* Copyright 2020 Google Inc.\n\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\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or... | [
{
"sha": "fbf60377c006eaea8d3eca3f5e4c654909dcdfd2",
"url": "https://github.com/LibRaw/LibRaw/commit/fbf60377c006eaea8d3eca3f5e4c654909dcdfd2"
},
{
"sha": "b957c2efb6c67c057650cdf03b435dc0cc78c516",
"url": "https://github.com/LibRaw/LibRaw/commit/b957c2efb6c67c057650cdf03b435dc0cc78c516"
},
... |
gpac.cve-2020-23932 | gpac/gpac | 9eeac00b38348c664dfeae2525bba0cf1bc32349 | 2020-09-01T09:46:07 | 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 9eeac00b38348c664dfeae2525bba0cf1bc32349
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/1566
## Description:
Issue: gpac/gpac#1566
Title: A Segmentation fault in filedump.c:1627
State: closed
Created by: seviezhou
Created at: 2020-08-07 03:10:20+00:00
Issue Body:
## System info
Ubunt... | [
{
"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": "ce01bd15f711d4575b7424b54b3a395ec64c1784",
"url": "https://github.com/gpac/gpac/commit/ce01bd15f711d4575b7424b54b3a395ec64c1784"
},
{
"sha": "2aa266dfaab6aaad9f9f4f216ad7d1e62adc7fa0",
"url": "https://github.com/gpac/gpac/commit/2aa266dfaab6aaad9f9f4f216ad7d1e62adc7fa0"
}
] |
libheif.cve-2024-41311 | strukturag/libheif | e382107736f987fa30faeaa06543eeec72a85dd1 | 2024-07-08T03:51:42 | libheif | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y autoconf automake build-essential cmake libtool make mercurial pkg-config yasm
RUN git clone https://github.com/strukturag/libheif libheif
RUN git -C libheif checkout e382107736f987fa30faeaa06543eeec72a85dd1
WORKDIR $SRC/libheif
COPY build.sh $SRC... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
export DEPS_PATH=$SRC/deps
mkdir -p $DEPS_PATH
cd $SRC/x265/build/linux
cmake -G "Unix Makefiles" \
-DCMAKE_C_COMPILER=$CC -DCMAKE_CXX_COMPILER=$CXX \
-DCMAKE_C_FLAGS="$CFLAGS" -DCMAKE_CXX_FLAGS="$CXXFLAGS" \
-DCMAKE_INSTALL_PREF... | /src/libheif | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/strukturag/libheif/issues/1226
## Description:
Issue: strukturag/libheif#1226
Title: OOB Read/Write in `HeifPixelImage::overlay()`
State: closed
Created by: flyyee
Created at: 2024-07-07 09:16:35+00:00
Issue Body:
... | [] | [
{
"sha": "a3ed1b1eb178c5d651d6ac619c8da3d71ac2be36",
"url": "https://github.com/strukturag/libheif/commit/a3ed1b1eb178c5d651d6ac619c8da3d71ac2be36"
},
{
"sha": "7c9729ea8d0f319ab423f8e4e6de121fd78596d0",
"url": "https://github.com/strukturag/libheif/commit/7c9729ea8d0f319ab423f8e4e6de121fd78596d... |
njs.cve-2022-34030 | 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/540
## Description:
Issue: nginx/njs#540
Title: SEGV src/njs_djb_hash.c:21:16 in njs_djb_hash
State: closed
Created by: dramthy
Created at: 2022-06-10 02:31:55+00:00
Labels: bug, fuzzer
Issue Body:... | [] | [
{
"sha": "c756e23eb09dac519fe161c88587cc034306630f",
"url": "https://github.com/nginx/njs/commit/c756e23eb09dac519fe161c88587cc034306630f"
},
{
"sha": "1878e6b475720c7c51969e69ab2d276fae6d1dee",
"url": "https://github.com/nginx/njs/commit/1878e6b475720c7c51969e69ab2d276fae6d1dee"
},
{
"s... |
gpac.cve-2023-4754 | gpac/gpac | a8bc2c8c2ca2af95fb2e659caf8a45cd9c2d543b | 2023-09-02T06:35:51 | 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 a8bc2c8c2ca2af95fb2e659caf8a45cd9c2d543b
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/b7ed24ad-7d0b-40b7-8f4d-3c18a906620c
## Description:
Description
Heap-buffer-overflow in MP4Box.
Version
$ ./bin/gcc/MP4Box -version
MP4Box - GPAC version 2.3-DEV-revrelease
(c) 2000-2023 Telecom Paris distributed ... | [] | [
{
"sha": "b7ed24ad",
"url": null
},
{
"sha": "7e2e92feb1b30fac1d659f6620d743b5a188ffe0",
"url": "https://github.com/gpac/gpac/commit/7e2e92feb1b30fac1d659f6620d743b5a188ffe0"
}
] |
opencv.cve-2019-14491 | opencv/opencv | 7295983964044c280484469d73d6b8f59dbc5a4f | 2019-07-25T13:59:56 | opencv | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y build-essential cmake pkg-config
RUN git clone https://github.com/opencv/opencv opencv
RUN git -C opencv checkout 7295983964044c280484469d73d6b8f59dbc5a4f
WORKDIR $SRC/opencv
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p $build_dir
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=$install_dir \
-DBUILD_SHARED_LIBS=OFF -DOPENCV_GENERATE_PKGCONFIG=ON \
-DOPENCV_GENERATE_PKGCONFIG=ON -DOPENCV_FORCE_3RDPARTY_BUILD=ON \
-DBUILD_TESTS=OFF -... | /src/opencv | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/opencv/opencv/issues/15125
## Description:
Issue: opencv/opencv#15125
Title: out of bounds read in function cv::predictOrdered<cv::HaarEvaluator>
State: closed
Created by: YourButterfly
Created at: 2019-07-23 03:32... | [
{
"content": "// Copyright 2018 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": "33b765d",
"url": null
},
{
"sha": "371bba8",
"url": null
}
] |
openjpeg.cve-2016-3183 | uclouvain/openjpeg | ad593c9e0622e0d8d87228e67e4dbd36243ffd22 | 2016-04-29T16:51:14 | openjpeg | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make cmake g++
RUN git clone https://github.com/uclouvain/openjpeg openjpeg
RUN git -C openjpeg checkout ad593c9e0622e0d8d87228e67e4dbd36243ffd22
WORKDIR $SRC/openjpeg
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p build
cd build
cmake ..
make clean -s -j$(nproc)
make -j$(nproc) -s | /src/openjpeg | address | ================= Bug Report (1/2) ==================
## Source: Red Hat Bugzilla
## URL: https://bugzilla.redhat.com/show_bug.cgi?id=1317821
## Description:
Bugzilla ID: 1317821
Title: CVE-2016-3183 openjpeg: Out-of-bounds read in sycc422_to_rgb function
Description
Adam Mariš 2016-03-15 10:08:32 UTC
n our-of-bounds ... | [] | [
{
"sha": "15f081c89650dccee4aa4ae66f614c3fdb268767",
"url": "https://github.com/rouault/openjpeg/commit/15f081c89650dccee4aa4ae66f614c3fdb268767"
},
{
"sha": "55e2cc9b327f102a91f4e4db56b7bcdc21c50a6a",
"url": "https://github.com/mayeut/openjpeg/commit/55e2cc9b327f102a91f4e4db56b7bcdc21c50a6a"
... |
sleuthkit.cve-2018-11737 | sleuthkit/sleuthkit | 9b776576aa6a1fbf328e82fd7cb6b428179de016 | 2013-02-02T14:47:01 | sleuthkit | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone https://github.com/sleuthkit/sleuthkit sleuthkit
RUN git -C sleuthkit checkout 9b776576aa6a1fbf328e82fd7cb6b428179de016
WORKDIR $SRC/sleuthkit
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
export CFLAGS="$CFLAGS -Wno-error=non-c-typedef-for-linkage"
export CXXFLAGS="$CXXFLAGS -Wno-error=non-c-typedef-for-linkage"
./bootstrap
./configure --enable-static --disable-shared --disable-java
make -j$(nproc) | /src/sleuthkit | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/sleuthkit/sleuthkit/issues/1266
## Description:
Issue: sleuthkit/sleuthkit#1266
Title: AddressSanitizer: out-of-bounds unmapped memory access in ntfs_fix_idxrec (tsk/fs/ntfs_dent.cpp:680:16)
State: open
Created by: ... | [
{
"content": "// Copyright 2020 Google LLC\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... | [
{
"sha": "4efa611df63e627f7850b10b8f7eda36787dbc94",
"url": "https://github.com/sleuthkit/sleuthkit/commit/4efa611df63e627f7850b10b8f7eda36787dbc94"
}
] |
opencv.cve-2017-18009 | opencv/opencv | af4d6f34d8d05b0a9a0278728823272e49a63898 | 2017-10-10T04:29:57 | opencv | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y build-essential cmake pkg-config
RUN git clone https://github.com/opencv/opencv opencv
RUN git -C opencv checkout af4d6f34d8d05b0a9a0278728823272e49a63898
WORKDIR $SRC/opencv
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p opencv/build
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=$WORK \
-DBUILD_SHARED_LIBS=OFF -DOPENCV_GENERATE_PKGCONFIG=ON \
-DOPENCV_GENERATE_PKGCONFIG=ON -DOPENCV_FORCE_3RDPARTY_BUILD=ON ..
make -j$(nproc)
make inst... | /src/opencv | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/opencv/opencv/issues/10479
## Description:
Issue: opencv/opencv#10479
Title: Buffer overflow in cv::HdrDecoder::checkSignature
State: closed
Created by: Mambaboy
Created at: 2018-01-01 03:37:50+00:00
Labels: bug, ca... | [
{
"content": "// Copyright 2018 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": "4ca89db22dea962690f31c1781bce5937ee91837",
"url": "https://github.com/opencv/opencv/commit/4ca89db22dea962690f31c1781bce5937ee91837"
}
] |
php.cve-2016-7127 | php/php-src | a3598dd7c9b182debcb54b9322b1dece14c9b533 | 2016-08-17T00:55:40 | php-src | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool bison re2c make ca-certificates curl xz-utils dpkg-dev file libc-dev pkg-config libcurl4-openssl-dev libedit-dev libsqlite3-dev libssl-dev zlib1g-dev
RUN git clone https://github.com/php/php-src php-src
RUN git -C ph... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./buildconf --force
./configure \
--enable-option-checking=fatal \
--disable-libxml \
--disable-dom \
--disable-simplexml \
--disable-xml \
--disable-xmlreader \
--disable-xmlwriter \
... | /src/php-src | address | ================= Bug Report (1/1) ==================
## Source: PHP Bugs
## URL: https://bugs.php.net/bug.php?id=72730
## Description:
PHP Bug ID: 72730
Summary: imagegammacorrect allows arbitrary write access
Status: Closed
PHP Version: 5.6.24
Assigned: stas (profile)
CVE-ID: 2016-7127
Description:
Description:
----... | [] | [
{
"sha": "1bd103df00f49cf4d4ade2cfe3f456ac058a4eae",
"url": "https://github.com/php/php-src/commit/1bd103df00f49cf4d4ade2cfe3f456ac058a4eae"
},
{
"sha": "dda0ea9b3af0c392be8d850ccdbe8a1bfa2badb6",
"url": "https://github.com/php/php-src/commit/dda0ea9b3af0c392be8d850ccdbe8a1bfa2badb6"
},
{
... |
imagemagick.cve-2016-7799 | imagemagick/imagemagick | 3c57527b28494cd7807f071bd6c4d5ad75ba6ebb | 2016-09-30T13:23:42 | 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 3c57527b28494cd7807f071bd6c4d5ad75ba6ebb
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/280
## Description:
Issue: ImageMagick/ImageMagick#280
Title: imagemagick mogrify global buffer overflow
State: closed
Created by: marcograss
Created at: 2016-09-30 10:18:19+00:00
Labe... | [
{
"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": "a7bb158b7bedd1449a34432feb3a67c8f1873bfa",
"url": "https://github.com/ImageMagick/ImageMagick/commit/a7bb158b7bedd1449a34432feb3a67c8f1873bfa"
},
{
"sha": "00a80395a4cd17a6f420238bf9d936d3d9b65a8a",
"url": "https://github.com/ImageMagick/ImageMagick/commit/00a80395a4cd17a6f420238bf9d93... |
fast-dds.cve-2023-39946 | eprosima/fast-dds | 37af35c59aa214889f69a9fb8ec3c9fcf7e61317 | 2023-08-04T05:23:28 | fast-dds | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt install -y autoconf automake pkg-config
RUN git clone https://github.com/eprosima/fast-dds fast-dds
RUN git -C fast-dds checkout 37af35c59aa214889f69a9fb8ec3c9fcf7e61317
WORKDIR $SRC/fast-dds
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
make clean -j$(nproc)
make -j$(nproc) all
./configure
make -j$(nproc) install
mkdir -p Fast-CDR/build && cd Fast-CDR/build
cmake .. -DBUILD_SHARED_LIBS=OFF
cmake --build . --target install
mkdir -p build && cd build
make -j $(nproc) | /src/fast-dds | address | ================= Bug Report (1/1) ==================
## Source: GitHub Advisory
## URL: https://github.com/eProsima/Fast-DDS/security/advisories/GHSA-j297-rg6j-m7hx
## Description:
Advisory ID: GHSA-j297-rg6j-m7hx
Title: Heap overflow in push_back_helper due to a CDR message
Description:
Summary
Heap can be overflowe... | [] | [
{
"sha": "349227005827e8a67a0406b823138b5068cc47dc",
"url": "https://github.com/eProsima/Fast-DDS/commit/349227005827e8a67a0406b823138b5068cc47dc"
}
] |
exiv2.cve-2018-17282 | 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/457
## Description:
Issue: Exiv2/exiv2#457
Title: CVE-2018-17282: SEGV in Exiv2::DataValue::copy at value.cpp:242
State: closed
Created by: Marsman1996
Created at: 2018-09-20 14:54:34+00:00
Labels... | [] | [
{
"sha": "670fb73dd5ee8acab90971c4878de29f9fc43a02",
"url": "https://github.com/Exiv2/exiv2/commit/670fb73dd5ee8acab90971c4878de29f9fc43a02"
},
{
"sha": "b6a8d39613a28603a989bd5278798db8a54eeb1e",
"url": "https://github.com/Exiv2/exiv2/commit/b6a8d39613a28603a989bd5278798db8a54eeb1e"
},
{
... |
exiv2.cve-2018-10958 | 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/302
## Description:
Issue: Exiv2/exiv2#302
Title: SIGABRT in types.cpp Exiv2::DataBuf::alloc function
State: closed
Created by: legend-issue
Created at: 2018-05-09 13:38:53+00:00
Issue Body:
```j... | [] | [
{
"sha": "e43c1eb7134d2fc4c5548253477fd09d6b2fac79",
"url": "https://github.com/exiv2/exiv2/commit/e43c1eb7134d2fc4c5548253477fd09d6b2fac79"
},
{
"sha": "bb2019149ae2b6f226e8d6be5f5828898b455a03",
"url": "https://github.com/exiv2/exiv2/commit/bb2019149ae2b6f226e8d6be5f5828898b455a03"
},
{
... |
matio.cve-2019-20018 | tbeu/matio | 64f793668e09216029447990702c145403d14375 | 2019-07-18T13:14:38 | matio | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone https://github.com/tbeu/matio matio
RUN git -C matio checkout 64f793668e09216029447990702c145403d14375
WORKDIR $SRC/matio
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./autogen.sh
./configure
make -j$(nproc)
make install -j$(nproc) | /src/matio | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/tbeu/matio/issues/129
## Description:
Issue: tbeu/matio#129
Title: There is a stack-based buffer overflow in the ReadNextCell function of mat5.c(at 1001)
State: closed
Created by: gutiniao
Created at: 2019-11-07 03:... | [
{
"content": "// Copyright 2019 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": "65831b7ec829b0ae0ac9d691a2f8fbc2b26af677",
"url": "https://github.com/tbeu/matio/commit/65831b7ec829b0ae0ac9d691a2f8fbc2b26af677"
},
{
"sha": "a47b7cd3aca70e9a0bddf8146eb4ab0cbd19c2c3",
"url": "https://github.com/tbeu/matio/commit/a47b7cd3aca70e9a0bddf8146eb4ab0cbd19c2c3"
},
{
... |
libredwg.cve-2020-23861 | libredwg/libredwg | 828cb3848356acea9cef9914a4bb4bc8c41814f8 | 2020-01-12T14:32:36 | 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 828cb3848356acea9cef9914a4bb4bc8c41814f8
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/248
## Description:
Issue: LibreDWG/libredwg#248
Title: LibreDWG "read_system_page" function heap overflow vulnerability
State: closed
Created by: yangjiageng
Created at: 2020-07-18 12:19:50... | [
{
"content": "[libfuzzer]\ndetect_leaks=0\n",
"filename": "fuzz_dwg_decode.options"
}
] | [] |
wolfssl.cve-2019-18840 | wolfssl/wolfssl | 50fbdb961fd8c2d8123064e567ae8ec44167732d | 2019-07-23T13:03:29 | wolfssl | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool zip
RUN git clone https://github.com/wolfssl/wolfssl wolfssl
RUN git -C wolfssl checkout 50fbdb961fd8c2d8123064e567ae8ec44167732d
WORKDIR $SRC/wolfssl
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./autogen.sh
./configure --enable-static --disable-shared --prefix=/usr CC="clang"
make -j "$(nproc)" all -j$(nproc)
make install -j$(nproc)
export LDFLAGS="${LDFLAGS-""}"
make -e all -j$(nproc)
make -e export prefix="$OUT" -j$(nproc) | /src/wolfssl | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/wolfSSL/wolfssl/issues/2555
## Description:
Issue: wolfSSL/wolfssl#2555
Title: Heap based buffer overflow while parsing crafted X.509 certificates
State: closed
Created by: cve-reporting
Created at: 2019-11-04 17:01... | [] | [] |
oniguruma.cve-2017-9229 | kkos/oniguruma | bfdc384eae73e87b3443d016302b73d9def8071f | 2017-05-23T03:07:04 | oniguruma | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone https://github.com/kkos/oniguruma oniguruma
RUN git -C oniguruma checkout bfdc384eae73e87b3443d016302b73d9def8071f
WORKDIR $SRC/oniguruma
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./autogen.sh
./configure
make clean -j$(nproc)
make -j$(nproc) | /src/oniguruma | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/kkos/oniguruma/issues/59
## Description:
Issue: kkos/oniguruma#59
Title: SIGSEGV in left_adjust_char_head() due to bad dereference
State: closed
Created by: lxxxxfdh
Created at: 2017-05-23 13:28:54+00:00
Issue Body... | [
{
"content": "/oniguruma\n/fuzzer.options.*\n",
"filename": ".gitignore"
},
{
"content": "",
"filename": "fuzzer.options"
}
] | [
{
"sha": "b690371bbf97794b4a1d3f295d4fb9a8b05d402d",
"url": "https://github.com/kkos/oniguruma/commit/b690371bbf97794b4a1d3f295d4fb9a8b05d402d"
}
] |
wabt.cve-2022-43282 | webassembly/wabt | c32fa597218dbe2c25b43a9837a8475b493ddb71 | 2022-05-04T09:41:06 | wabt | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y cmake libtool make python
RUN git clone https://github.com/webassembly/wabt wabt
RUN git -C wabt checkout c32fa597218dbe2c25b43a9837a8475b493ddb71
WORKDIR $SRC/wabt
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p build
cd build
cmake ..
cmake --build . | /src/wabt | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/WebAssembly/wabt/issues/1983
## Description:
Issue: WebAssembly/wabt#1983
Title: Out-of-bound read in OnReturnCallIndirectExpr->GetReturnCallDropKeepCount
State: closed
Created by: Q1IQ
Created at: 2022-09-05 12:51:... | [
{
"content": "// Copyright 2019 Google LLC\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... | [
{
"sha": "3054d61f703d609995798f872fc86b462617c294",
"url": "https://github.com/webassembly/wabt/commit/3054d61f703d609995798f872fc86b462617c294"
},
{
"sha": "424f1fec10749568b15ca598b01e7259eec50af7",
"url": "https://github.com/WebAssembly/wabt/commit/424f1fec10749568b15ca598b01e7259eec50af7"
... |
openjpeg.cve-2017-14040 | uclouvain/openjpeg | 09e83407fa2b53c606d3179031b8d8b31272e20c | 2017-08-17T04:05:53 | openjpeg | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make cmake g++
RUN git clone https://github.com/uclouvain/openjpeg openjpeg
RUN git -C openjpeg checkout 09e83407fa2b53c606d3179031b8d8b31272e20c
WORKDIR $SRC/openjpeg
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
mkdir -p build
cd build
cmake ..
make clean -s -j$(nproc)
make -j$(nproc) -s | /src/openjpeg | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/uclouvain/openjpeg/issues/995
## Description:
Issue: uclouvain/openjpeg#995
Title: invalid memory write in tgatoimage (convert.c)
State: closed
Created by: asarubbo
Created at: 2017-08-17 08:59:55+00:00
Issue Body:... | [] | [
{
"sha": "2cd30c2b06ce332dede81cccad8b334cde997281",
"url": "https://github.com/uclouvain/openjpeg/commit/2cd30c2b06ce332dede81cccad8b334cde997281"
}
] |
libsass.cve-2018-19837 | sass/libsass | 19fd2bf2e31413b5935e7feb87fec630b486feba | 2018-07-02T18:09:38 | libsass | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone https://github.com/sass/libsass libsass
RUN git -C libsass checkout 19fd2bf2e31413b5935e7feb87fec630b486feba
WORKDIR $SRC/libsass
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
export BUILD='static'
make -j$(nproc) | /src/libsass | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/sass/libsass/issues/2659
## Description:
Issue: sass/libsass#2659
Title: AddressSanitizer: stack-overflow in Eval::operator() (eval.cpp:563)
State: closed
Created by: hongxuchen
Created at: 2018-06-02 07:24:05+00:00... | [
{
"content": "#include \"sass.h\"\n\nextern \"C\" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {\n char* sass_data = (char*) malloc(sizeof(char) * size + 1);\n if (sass_data == NULL) return 0;\n\n memcpy(sass_data, data, size);\n sass_data[size] = '\\0';\n\n struct Sass_Data_Context* ctx = ... | [
{
"sha": "210fdff7a65370c2ae24e022a2b35da8c423cc5f",
"url": "https://github.com/sass/libsass/commit/210fdff7a65370c2ae24e022a2b35da8c423cc5f"
},
{
"sha": "45f50873962b7d1c66bd115ba6e644bdaaf6cac1",
"url": "https://github.com/sass/libsass/commit/45f50873962b7d1c66bd115ba6e644bdaaf6cac1"
},
{
... |
faad2.cve-2018-20357 | knik0/faad2 | 334e7647a5f31903aca33dde39bb8683e9d8cccd | 2017-12-17T13:54:42 | 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 334e7647a5f31903aca33dde39bb8683e9d8cccd
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/28
## Description:
Issue: knik0/faad2#28
Title: Null pointer dereference vulnerability in sbr_process_channel(libfaad/sbr_dec.c:413)
State: closed
Created by: fantasy7082
Created at: 2018-12-17 06... | [] | [
{
"sha": "6b4a7cde30f2e2cb03e78ef476cc73179cfffda3",
"url": "https://github.com/knik0/faad2/commit/6b4a7cde30f2e2cb03e78ef476cc73179cfffda3"
}
] |
gpac.cve-2023-0866 | gpac/gpac | be9f8d395bbd196e3812e9cd80708f06bcc206f7 | 2023-02-13T08:42:23 | 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 be9f8d395bbd196e3812e9cd80708f06bcc206f7
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/7d3c5792-d20b-4cb6-9c6d-bb14f3430d7f
## Description:
Version
MP4Box - GPAC version 2.3-DEV-rev44-gbe9f8d395-master
(c) 2000-2023 Telecom Paris distributed under LGPL v2.1+ - http://gpac.io
Please cite our work in ... | [] | [
{
"sha": "7d3c5792",
"url": null
},
{
"sha": "b964fe4226f1424cf676d5822ef898b6b01f5937",
"url": "https://github.com/gpac/gpac/commit/b964fe4226f1424cf676d5822ef898b6b01f5937"
},
{
"sha": "be9f8d395bbd196e3812e9cd80708f06bcc206f7",
"url": "https://github.com/gpac/gpac/commit/be9f8d395... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.