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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
mruby.cve-2018-11743 | mruby/mruby | 1dddc2f712f774b22a8f65432299cebb3b26361b | 2018-05-30T03:05:05 | mruby | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool ruby bison
RUN git clone https://github.com/mruby/mruby mruby
RUN git -C mruby checkout 1dddc2f712f774b22a8f65432299cebb3b26361b
WORKDIR $SRC/mruby
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
export LD=clang
export LDFLAGS="$CFLAGS"
./minirake clean && ./minirake -j$(nproc) all | /src/mruby | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/mruby/mruby/issues/4027
## Description:
Issue: mruby/mruby#4027
Title: Use of uninitialized pointer in mrb_hash_keys
State: closed
Created by: clayton-shopify
Created at: 2018-05-28 21:58:48+00:00
Issue Body:
The f... | [] | [
{
"sha": "b64ce17852b180dfeea81cf458660be41a78974d",
"url": "https://github.com/mruby/mruby/commit/b64ce17852b180dfeea81cf458660be41a78974d"
},
{
"sha": "89f6aab25a3f9986d417f1d48aaac54873472def",
"url": "https://github.com/ksekimoto/mruby/commit/89f6aab25a3f9986d417f1d48aaac54873472def"
}
] |
imagemagick.cve-2019-13299 | imagemagick/imagemagick | 604588fc35c7585abb7a9e71f69bb82e4389fefc | 2019-06-21T16:30:31 | 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 604588fc35c7585abb7a9e71f69bb82e4389fefc
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/1610
## Description:
Issue: ImageMagick/ImageMagick#1610
Title: heap-buffer-overflow at MagickCore/pixel-accessor.h:116:10 in GetPixelChannel
State: closed
Created by: SuhwanSong
Creat... | [] | [
{
"sha": "8187d2d8fd010d2d6b1a3a8edd935beec404dddc",
"url": "https://github.com/imagemagick/imagemagick/commit/8187d2d8fd010d2d6b1a3a8edd935beec404dddc"
},
{
"sha": "d4fc44b58a14f76b1ac997517d742ee12c9dc5d3",
"url": "https://github.com/imagemagick/imagemagick/commit/d4fc44b58a14f76b1ac997517d742... |
exiv2.cve-2017-14858 | 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=1494782
## Description:
Bugzilla ID: 1494782
Title: It is a heap-buffer-overflow in Exiv2::l2Data (types.cpp:398)
Description
Liu Zhu 2017-09-23 02:22:50 UTC
Created attachment 1329796 ... | [] | [
{
"sha": "74cb5bab132ed76adf15df172c5e8b58cddaa96c",
"url": null
},
{
"sha": "6e3855aed7ba8bb4731fc4087ca7f9078b2f3d97",
"url": null
},
{
"sha": "8a8f60a4e7089fe7bb597770a2daab24a3941d3e",
"url": null
},
{
"sha": "daed0a758b62fbb40684596917f620d8073bd2a6",
"url": "https:/... |
njs.cve-2021-46462 | nginx/njs | 6a40a85ff239497c6458c7dbef18f6a2736fe992 | 2022-01-19T07:12:09 | 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 6a40a85ff239497c6458c7dbef18f6a2736fe992
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/449
## Description:
Issue: nginx/njs#449
Title: SEGV /njs/src/njs_object.c:2136:24 in njs_object_set_prototype
State: closed
Created by: anonym0us1337
Created at: 2021-12-24 06:28:54+00:00
Labels: b... | [] | [
{
"sha": "39e8fa1b7db1680654527f8fa0e9ee93b334ecba",
"url": "https://github.com/nginx/njs/commit/39e8fa1b7db1680654527f8fa0e9ee93b334ecba"
},
{
"sha": "2da5d8b246b806bee6f74b575217ec3b61a25548",
"url": "https://github.com/nginx/njs/commit/2da5d8b246b806bee6f74b575217ec3b61a25548"
}
] |
imagemagick.cve-2019-13303 | imagemagick/imagemagick | 6fe6a0e6c901b4c9a639c104cc3420239e387794 | 2019-06-18T12:49:26 | 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 6fe6a0e6c901b4c9a639c104cc3420239e387794
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/1603
## Description:
Issue: ImageMagick/ImageMagick#1603
Title: heap-buffer-overflow in MagickCore/composite.c:666:45 in CompositeImage
State: closed
Created by: SuhwanSong
Created at:... | [] | [
{
"sha": "d29148fae06c01ef215940e084cf41853c117bab",
"url": "https://github.com/ImageMagick/ImageMagick/commit/d29148fae06c01ef215940e084cf41853c117bab"
}
] |
libredwg.cve-2019-20011 | libredwg/libredwg | 261d13c6f91e9526fb4a4c26dd1586faf8f70f1e | 2019-11-07T10:33:45 | 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 261d13c6f91e9526fb4a4c26dd1586faf8f70f1e
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/2) ==================
## Source: GitHub Issue
## URL: https://github.com/LibreDWG/libredwg/issues/176
## Description:
Issue: LibreDWG/libredwg#176
Title: Several bugs found by fuzzing
State: closed
Created by: linhlhq
Created at: 2019-12-24 03:44:32+00:00
Labels: bug, fuzzing
Issue Body... | [
{
"content": "[libfuzzer]\ndetect_leaks=0\n",
"filename": "fuzz_dwg_decode.options"
}
] | [
{
"sha": "3f515d52954e2ec009a2508d3d5be04e3bcc094b",
"url": "https://github.com/LibreDWG/libredwg/commit/3f515d52954e2ec009a2508d3d5be04e3bcc094b"
},
{
"sha": "6c82625d94355a652c21666821f899246bfb76cf",
"url": "https://github.com/LibreDWG/libredwg/commit/6c82625d94355a652c21666821f899246bfb76cf"... |
libredwg.cve-2019-20013 | libredwg/libredwg | 5c4464ef38776addf64b2648d20d4eeb3c4a0082 | 2019-12-25T13:55:27 | 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 5c4464ef38776addf64b2648d20d4eeb3c4a0082
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/2) ==================
## Source: GitHub Issue
## URL: https://github.com/LibreDWG/libredwg/issues/176
## Description:
Issue: LibreDWG/libredwg#176
Title: Several bugs found by fuzzing
State: closed
Created by: linhlhq
Created at: 2019-12-24 03:44:32+00:00
Labels: bug, fuzzing
Issue Body... | [
{
"content": "[libfuzzer]\ndetect_leaks=0\n",
"filename": "fuzz_dwg_decode.options"
}
] | [
{
"sha": "3f515d52954e2ec009a2508d3d5be04e3bcc094b",
"url": "https://github.com/LibreDWG/libredwg/commit/3f515d52954e2ec009a2508d3d5be04e3bcc094b"
},
{
"sha": "6c82625d94355a652c21666821f899246bfb76cf",
"url": "https://github.com/LibreDWG/libredwg/commit/6c82625d94355a652c21666821f899246bfb76cf"... |
mruby.cve-2018-10199 | mruby/mruby | fabc460880fbabd18369a7ef8715538c83ebffc9 | 2018-04-13T16:18:49 | mruby | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool ruby bison
RUN git clone https://github.com/mruby/mruby mruby
RUN git -C mruby checkout fabc460880fbabd18369a7ef8715538c83ebffc9
WORKDIR $SRC/mruby
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
export LD=clang
export LDFLAGS="$CFLAGS"
./minirake clean && ./minirake -j$(nproc) all | /src/mruby | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/mruby/mruby/issues/4001
## Description:
Issue: mruby/mruby#4001
Title: Use after free in File#initilialize_copy
State: closed
Created by: clayton-shopify
Created at: 2018-04-16 15:50:03+00:00
Issue Body:
The follow... | [] | [
{
"sha": "b51b21fc63c9805862322551387d9036f2b63433",
"url": "https://github.com/mruby/mruby/commit/b51b21fc63c9805862322551387d9036f2b63433"
}
] |
gpac.cve-2021-32268 | gpac/gpac | 362fc486b5c0eea04f26793d5623f6a9272bd85a | 2020-09-07T02:12:09 | 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 362fc486b5c0eea04f26793d5623f6a9272bd85a
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/1587
## Description:
Issue: gpac/gpac#1587
Title: A heap-buffer-overflow in box_dump.c:350
State: closed
Created by: seviezhou
Created at: 2020-09-04 15:05:21+00:00
Issue Body:
## System info
Ubun... | [
{
"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": "388ecce75d05e11fc8496aa4857b91245007d26e",
"url": "https://github.com/gpac/gpac/commit/388ecce75d05e11fc8496aa4857b91245007d26e"
},
{
"sha": "5a884e376e1f67b3d40ec91c0b70ab49219fe3cd",
"url": "https://github.com/gpac/gpac/commit/5a884e376e1f67b3d40ec91c0b70ab49219fe3cd"
}
] |
php.cve-2022-31627 | php/php-src | 8c668ecf8fe6daa9144101cee099b9a155c54c15 | 2022-07-05T16:18:56 | php-src | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y autoconf automake libtool bison re2c pkg-config
RUN apt-get install -y autoconf automake libtool bison re2c pkg-config
RUN git clone https://github.com/php/php-src php-src
RUN git -C php-src checkout 8c668ecf8fe6daa9144101cee099b9a155c54c15
WORKDI... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
export CFLAGS="$CFLAGS -fno-sanitize=object-size"
export CXXFLAGS="$CXXFLAGS -fno-sanitize=object-size"
export CFLAGS="$CFLAGS -DPROFITABILITY_CHECKS=0"
./buildconf --force
./configure \
--disable-all \
--enable-debug-asserti... | /src/php-src | address | ================= Bug Report (1/1) ==================
## Source: PHP Bugs
## URL: https://bugs.php.net/bug.php?id=81723
## Description:
PHP Bug ID: 81723
Summary: Heap buffer overflow in finfo_buffer
Status: Closed
PHP Version: 8.1.7
Assigned: stas (profile)
CVE-ID: 2022-31627
Description:
Description:
------------
Th... | [
{
"content": "deb http://archive.ubuntu.com/ubuntu/ cosmic universe\n\n",
"filename": "cosmic.list"
}
] | [
{
"sha": "00018a7570001097db97979897977d8797979700",
"url": "https://github.com/php/php-src/commit/00018a7570001097db97979897977d8797979700"
},
{
"sha": "00000000004f011900007f000000000018003900",
"url": "https://github.com/php/php-src/commit/00000000004f011900007f000000000018003900"
},
{
... |
njs.cve-2019-13617 | nginx/njs | 7b540a9bf295ba8426cc6c8962e595c0cbc6a295 | 2019-06-25T06:43:56 | njs | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool mercurial libpcre3-dev libreadline-dev subversion
RUN git clone https://github.com/nginx/njs njs
RUN git -C njs checkout 7b540a9bf295ba8426cc6c8962e595c0cbc6a295
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
./configure
make njs -j$(nproc)
mkdir -p $SEED_CORPUS_PATH | /src/njs | address | ================= Bug Report (1/2) ==================
## Source: GitHub Issue
## URL: https://github.com/nginx/njs/issues/174
## Description:
Issue: nginx/njs#174
Title: heap-buffer-overflow in nxt_sprintf.c:429
State: closed
Created by: xcainiao
Created at: 2019-06-03 14:46:39+00:00
Labels: bug, fuzzer, libFuzzer
Iss... | [
{
"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": "0c9fced77823aa506239627a5473e8c4bb55ec96",
"url": "https://github.com/nginx/njs/commit/0c9fced77823aa506239627a5473e8c4bb55ec96"
},
{
"sha": "ee400ea880dc46bb02c4be2564b183c114d4cd42",
"url": "https://github.com/nginx/njs/commit/ee400ea880dc46bb02c4be2564b183c114d4cd42"
}
] |
assimp.cve-2022-38528 | assimp/assimp | 9519a62dd20799c5493c638d1ef5a6f484e5faf1 | 2022-09-08T13:13:43 | assimp | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y cmake ninja-build
RUN git clone https://github.com/assimp/assimp assimp
RUN git -C assimp checkout 9519a62dd20799c5493c638d1ef5a6f484e5faf1
WORKDIR $SRC/assimp
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
cmake CMakeLists.txt -G "Ninja" -DBUILD_SHARED_LIBS=OFF -DASSIMP_BUILD_ZLIB=ON \
-DASSIMP_BUILD_TESTS=OFF -DASSIMP_BUILD_ASSIMP_TOOLS=OFF \
-DASSIMP_BUILD_SAMPLES=OFF
cmake --bu... | /src/assimp | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/assimp/assimp/issues/4662
## Description:
Issue: assimp/assimp#4662
Title: Bug: SEGV on unknown address still exists in Assimp::XFileImporter::CreateMeshes
State: open
Created by: 0xdd96
Created at: 2022-07-26 13:16... | [] | [
{
"sha": "39ce3e1309b50681ea24b3109971582003fa83d5",
"url": "https://github.com/assimp/assimp/commit/39ce3e1309b50681ea24b3109971582003fa83d5"
},
{
"sha": "3c253ca3e5be69dc0eb7e9120278cd0a74deb9ac",
"url": "https://github.com/assimp/assimp/commit/3c253ca3e5be69dc0eb7e9120278cd0a74deb9ac"
}
] |
php.cve-2016-7130 | php/php-src | e018ff094f8505ea77f881ba11176e3ad0b4863e | 2016-08-17T00:55:39 | 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=72750
## Description:
PHP Bug ID: 72750
Summary: wddx_deserialize null dereference
Status: Closed
PHP Version: 5.6.24
Assigned: stas (profile)
CVE-ID: 2016-7130
Description:
Description:
------------
When ... | [] | [
{
"sha": "698a691724c0a949295991e5df091ce16f899e02",
"url": "https://github.com/php/php-src/commit/698a691724c0a949295991e5df091ce16f899e02"
},
{
"sha": "6930a1d12c47aa1d2675837852910d177b0ceb11",
"url": "https://github.com/php/php-src/commit/6930a1d12c47aa1d2675837852910d177b0ceb11"
}
] |
imagemagick.cve-2017-10995 | imagemagick/imagemagick | 9caa8b0c4269163def2ce0fa6ff1754ec0c234d2 | 2017-06-11T06:37:15 | 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 9caa8b0c4269163def2ce0fa6ff1754ec0c234d2
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/538
## Description:
Issue: ImageMagick/ImageMagick#538
Title: imagemagick identify&convert heap-buffer-overflow
State: closed
Created by: zyy89
Created at: 2017-07-04 16:32:12+00:00
L... | [
{
"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": "6a4f9c1feb7153807f22435ac6853956a1648707",
"url": "https://github.com/imagemagick/imagemagick/commit/6a4f9c1feb7153807f22435ac6853956a1648707"
},
{
"sha": "24430226caf7eb468b4180f2883b2563e8cc1b23",
"url": "https://github.com/imagemagick/imagemagick/commit/24430226caf7eb468b4180f2883b2... |
exiv2.cve-2019-17402 | exiv2/exiv2 | 70f9405fafbe19c7bab94b36a1267c4332dc8a8a | 2019-07-29T00:09:35 | 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 70f9405fafbe19c7bab94b36a1267c4332dc8a8a
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/1019
## Description:
Issue: Exiv2/exiv2#1019
Title: Overflow in exiv2
State: closed
Created by: c0d3xpl0it
Created at: 2019-10-06 09:21:25+00:00
Labels: bug
Issue Body:
We found vulnerability in ... | [] | [
{
"sha": "683451567284005cd24e1ccb0a76ca401000968b",
"url": "https://github.com/Exiv2/exiv2/commit/683451567284005cd24e1ccb0a76ca401000968b"
},
{
"sha": "b7890776c62398ca1005e8edc32786859d60fcf7",
"url": "https://github.com/Exiv2/exiv2/commit/b7890776c62398ca1005e8edc32786859d60fcf7"
},
{
... |
njs.cve-2019-13067 | nginx/njs | 7b540a9bf295ba8426cc6c8962e595c0cbc6a295 | 2019-06-25T06:43:56 | njs | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool mercurial libpcre3-dev libreadline-dev subversion
RUN git clone https://github.com/nginx/njs njs
RUN git -C njs checkout 7b540a9bf295ba8426cc6c8962e595c0cbc6a295
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
./configure
make njs -j$(nproc)
mkdir -p $SEED_CORPUS_PATH | /src/njs | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/nginx/njs/issues/183
## Description:
Issue: nginx/njs#183
Title: global-buffer-overflow in nxt_utf8_decode nxt/nxt_utf8.c:72
State: closed
Created by: wrauner
Created at: 2019-06-20 12:23:30+00:00
Labels: bug, fuzze... | [
{
"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": "f15fb784bbc537917cf59a5de922131fc5c18431",
"url": "https://github.com/nginx/njs/commit/f15fb784bbc537917cf59a5de922131fc5c18431"
},
{
"sha": "d14fed64975e3168346038a5ce5e11534ad84b57",
"url": "https://github.com/nginx/njs/commit/d14fed64975e3168346038a5ce5e11534ad84b57"
},
{
"s... |
libplist.cve-2017-6437 | libimobiledevice/libplist | 27ed36c03297713d2cfa79431cdc8105602e80c2 | 2014-10-13T19:59:39 | libplist | 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/libimobiledevice/libplist libplist
RUN git -C libplist checkout 27ed36c03297713d2cfa79431cdc8105602e80c2
WORKDIR $SRC/libplist
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./autogen.sh --without-cython --enable-debug --without-tests
make -j$(nproc) clean
make -j$(nproc) all | /src/libplist | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/libimobiledevice/libplist/issues/100
## Description:
Issue: libimobiledevice/libplist#100
Title: heap-buffer-overflow in base64encode
State: closed
Created by: zhunki
Created at: 2017-02-24 08:36:42+00:00
Issue Bod... | [] | [
{
"sha": "dccd9290745345896e3a4a73154576a599fd8b7b",
"url": "https://github.com/libimobiledevice/libplist/commit/dccd9290745345896e3a4a73154576a599fd8b7b"
}
] |
php.cve-2019-11034 | php/php-src | dc1cd3daf2521b352b0c9fa6ade7e49a8cc63130 | 2019-04-02T04:05:09 | 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 chrpath
RUN git clone https://github.com/php/php-src php-src
RUN g... | #!/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=77753
## Description:
PHP Bug ID: 77753
Summary: Heap-buffer-overflow in php_ifd_get32s
Status: Closed
PHP Version: 7.1.27
Assigned: stas (profile)
CVE-ID: 2019-11034
Description:
Description:
------------... | [
{
"content": "deb http://archive.ubuntu.com/ubuntu/ cosmic universe\n\n",
"filename": "cosmic.list"
},
{
"content": "[libfuzzer]\ndetect_leaks=0",
"filename": "runtime.options"
}
] | [
{
"sha": "511883584929c42af9d8122f0e79520c17bb771d",
"url": "https://github.com/php/php-src/commit/511883584929c42af9d8122f0e79520c17bb771d"
}
] |
matio.cve-2019-9032 | 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"
},
{
... |
imagemagick.cve-2017-11752 | 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/628
## Description:
Issue: ImageMagick/ImageMagick#628
Title: Memory-Leak in in AcquireMagickMemory MagickCore/memory.c:464
State: closed
Created by: zhouat
Created at: 2017-07-29 11:2... | [
{
"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": "21d19d0c64ff070dbf37279432837bf425c0d5dd",
"url": "https://github.com/ImageMagick/ImageMagick/commit/21d19d0c64ff070dbf37279432837bf425c0d5dd"
},
{
"sha": "9eccfd52199616da66c93b6d627d4d4126f5a5f0",
"url": "https://github.com/ImageMagick/ImageMagick/commit/9eccfd52199616da66c93b6d627d4... | |
gpac.cve-2023-4679 | gpac/gpac | 4607052c482a51dbdacfe1ade10645c181d07b07 | 2023-08-31T10:11:12 | 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 4607052c482a51dbdacfe1ade10645c181d07b07
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.com/bounties/6f721ee7-8785-4c26-801e-f40fed3faaac
## Description:
Description
Use After Free in MP4Box.
I'm not sure if this is a bug or an exploitable vulnerability. Since it was a double-free crash, I classified it as a UAF v... | [] | [
{
"sha": "6f721ee7",
"url": null
},
{
"sha": "b68b3f0bf5c366e003221d78fd663a1d5514a876",
"url": "https://github.com/gpac/gpac/commit/b68b3f0bf5c366e003221d78fd663a1d5514a876"
}
] |
imagemagick.cve-2017-11535 | 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/561
## Description:
Issue: ImageMagick/ImageMagick#561
Title: heap-overflow in GetPixelAlpha()
State: closed
Created by: lcatro
Created at: 2017-07-16 13:52:32+00:00
Labels: bug
Issue... | [
{
"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": "b8647f11ddfd6f85a6cc39654c7e78c2bc6412e4",
"url": "https://github.com/ImageMagick/ImageMagick/commit/b8647f11ddfd6f85a6cc39654c7e78c2bc6412e4"
},
{
"sha": "bba95cfcc19fa8a261e12692f31279148ad42441",
"url": "https://github.com/ImageMagick/ImageMagick/commit/bba95cfcc19fa8a261e12692f3127... |
php.cve-2016-4541 | 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=72061
## Description:
PHP Bug ID: 72061
Summary: Out-of-bounds reads in zif_grapheme_stripos with negative offset
Status: Closed
PHP Version: 5.5.34
Assigned: stas (profile)
CVE-ID: 2016-4540
Description:
... | [] | [
{
"sha": "fd9689745c44341b1bd6af4756f324be8abba2fb",
"url": "https://github.com/php/php-src/commit/fd9689745c44341b1bd6af4756f324be8abba2fb"
},
{
"sha": "c05240731",
"url": null
},
{
"sha": "c05320149",
"url": null
},
{
"sha": "c05390722",
"url": null
}
] |
gpac.cve-2023-4755 | gpac/gpac | 7e2e92feb1b30fac1d659f6620d743b5a188ffe0 | 2023-09-02T08:33: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 7e2e92feb1b30fac1d659f6620d743b5a188ffe0
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/463474b7-a4e8-42b6-8b30-e648a77ee6b3
## Description:
Description
heap-use-after-free in MP4Box.
Version
$ ./bin/gcc/MP4Box -version
MP4Box - GPAC version 2.3-DEV-revrelease
(c) 2000-2023 Telecom Paris distributed u... | [] | [
{
"sha": "463474b7",
"url": null
},
{
"sha": "895ac12da168435eb8db3f96978ffa4c69d66c3a",
"url": "https://github.com/gpac/gpac/commit/895ac12da168435eb8db3f96978ffa4c69d66c3a"
}
] |
faad2.cve-2018-20362 | 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/26
## Description:
Issue: knik0/faad2#26
Title: Null pointer dereference vulnerability in ifilter_bank (libfaad/filtbank.c:275)
State: closed
Created by: fantasy7082
Created at: 2018-12-17 06:28:4... | [] | [
{
"sha": "1f1cea70f8fbd3502675ba375a20d531e92fe9be",
"url": "https://github.com/hlef/faad2/commit/1f1cea70f8fbd3502675ba375a20d531e92fe9be"
},
{
"sha": "466b01d504d7e45f1e9169ac90b3e34ab94aed14",
"url": "https://github.com/knik0/faad2/commit/466b01d504d7e45f1e9169ac90b3e34ab94aed14"
},
{
... |
php.cve-2019-11035 | php/php-src | dc1cd3daf2521b352b0c9fa6ade7e49a8cc63130 | 2019-04-02T04:05:09 | 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 chrpath
RUN git clone https://github.com/php/php-src php-src
RUN g... | #!/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=77831
## Description:
PHP Bug ID: 77831
Summary: Heap-buffer-overflow in exif_iif_add_value in EXIF
Status: Closed
PHP Version: 7.1.27
Assigned: stas (profile)
CVE-ID: 2019-11035
Description:
Description:
... | [
{
"content": "deb http://archive.ubuntu.com/ubuntu/ cosmic universe\n\n",
"filename": "cosmic.list"
},
{
"content": "[libfuzzer]\ndetect_leaks=0",
"filename": "runtime.options"
}
] | [] |
php.cve-2016-7413 | php/php-src | 65c8caafa83ca78a8b2fa22257b4dea85b6114e5 | 2016-09-12T23:04:23 | 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=72860
## Description:
PHP Bug ID: 72860
Summary: wddx_deserialize use-after-free
Status: Closed
PHP Version: 5.6.25
Assigned: stas (profile)
CVE-ID: 2016-7413
Description:
Description:
------------
When WD... | [] | [
{
"sha": "b88393f08a558eec14964a55d3c680fe67407712",
"url": "https://github.com/php/php-src/commit/b88393f08a558eec14964a55d3c680fe67407712"
},
{
"sha": "ee552853ff4d72f626102025133e2cd1575043ee",
"url": "https://github.com/php/php-src/commit/ee552853ff4d72f626102025133e2cd1575043ee"
}
] |
libheif.cve-2023-49460 | strukturag/libheif | 82219b903001305fd916874a29dd372d92927d48 | 2023-11-21T03:34:52 | 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 82219b903001305fd916874a29dd372d92927d48
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/1046
## Description:
Issue: strukturag/libheif#1046
Title: AddressSanitizer: SEGV in `decode_uncompressed_image`
State: closed
Created by: fdu-sec
Created at: 2023-11-22 12:10:09+00:00
Iss... | [] | [
{
"sha": "64ece913266609789f5dc70fe7de9eb759badd7f",
"url": "https://github.com/strukturag/libheif/commit/64ece913266609789f5dc70fe7de9eb759badd7f"
},
{
"sha": "fd5b02aca3e29088bf0a1fc400bd661be4a6ed76",
"url": "https://github.com/strukturag/libheif/commit/fd5b02aca3e29088bf0a1fc400bd661be4a6ed7... |
imagemagick.cve-2017-12664 | imagemagick/imagemagick | 1dc0ac5016f1c4d50b100a086526d6a2453a5444 | 2017-07-17T12:32:16 | 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 1dc0ac5016f1c4d50b100a086526d6a2453a5444
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/574
## Description:
Issue: ImageMagick/ImageMagick#574
Title: memory leak in WritePALMImage
State: closed
Created by: jgj212
Created at: 2017-07-17 01:25:28+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": "0417cea1b6d72f90bd4f1f573f91e42a8ba66a89",
"url": "https://github.com/ImageMagick/ImageMagick/commit/0417cea1b6d72f90bd4f1f573f91e42a8ba66a89"
},
{
"sha": "db1ffb6cf44bcfe5c4d5fcf9d9109ded5617387f",
"url": "https://github.com/ImageMagick/ImageMagick/commit/db1ffb6cf44bcfe5c4d5fcf9d9109... | |
gpac.cve-2023-4682 | gpac/gpac | 112767e8b178fc82dec3cf82a1ca14d802cdb8ec | 2023-08-31T08:40:37 | 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 112767e8b178fc82dec3cf82a1ca14d802cdb8ec
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/15232a74-e3b8-43f0-ae8a-4e89d56c474c
## 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": "15232a74",
"url": null
},
{
"sha": "b1042c3eefca87c4bc32afb404ed6518d693e5be",
"url": "https://github.com/gpac/gpac/commit/b1042c3eefca87c4bc32afb404ed6518d693e5be"
}
] |
matio.cve-2019-9033 | 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"
},
{
... |
matio.cve-2019-20052 | 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/131
## Description:
Issue: tbeu/matio#131
Title: it is a memory leaks issue in Mat_VarCalloc (mat.c:807)
State: closed
Created by: gutiniao
Created at: 2019-11-12 05:36:29+00:00
Issue Body:
A craf... | [
{
"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": "a47b7cd3aca70e9a0bddf8146eb4ab0cbd19c2c3",
"url": "https://github.com/tbeu/matio/commit/a47b7cd3aca70e9a0bddf8146eb4ab0cbd19c2c3"
},
{
"sha": "12b211cda2ef5abec89304bd1ba3a79a82229feb",
"url": "https://github.com/tbeu/matio/commit/12b211cda2ef5abec89304bd1ba3a79a82229feb"
},
{
... |
imagemagick.cve-2019-13298 | imagemagick/imagemagick | 7689875ef64f34141e7292f6945efdf0530b4a5e | 2019-06-21T19:32:57 | 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 7689875ef64f34141e7292f6945efdf0530b4a5e
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/1611
## Description:
Issue: ImageMagick/ImageMagick#1611
Title: heap-buffer-overflow at MagickCore/pixel-accessor.h:804:56 in SetPixelViaPixelInfo
State: closed
Created by: SuhwanSong
... | [] | [
{
"sha": "d4fc44b58a14f76b1ac997517d742ee12c9dc5d3",
"url": "https://github.com/ImageMagick/ImageMagick/commit/d4fc44b58a14f76b1ac997517d742ee12c9dc5d3"
}
] |
njs.cve-2022-29779 | nginx/njs | 8b39afdad9a0761e0a5d4af1a762bd9a6daef572 | 2022-04-22T19:02:28 | 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 8b39afdad9a0761e0a5d4af1a762bd9a6daef572
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/485
## Description:
Issue: nginx/njs#485
Title: SEGV src/njs_value.c:240 in njs_value_own_enumerate
State: closed
Created by: xmzyshypnc
Created at: 2022-03-16 09:40:33+00:00
Labels: bug, fuzzer
Is... | [] | [
{
"sha": "2e00e95473861846aa8538be87db07699d9f676d",
"url": "https://github.com/nginx/njs/commit/2e00e95473861846aa8538be87db07699d9f676d"
},
{
"sha": "f65981b0b8fcf02d69a40bc934803c25c9f607ab",
"url": "https://github.com/nginx/njs/commit/f65981b0b8fcf02d69a40bc934803c25c9f607ab"
}
] |
qpdf.cve-2017-18184 | qpdf/qpdf | 021c229331444aae507186c7b4a54bb1692b5846 | 2017-08-25T21:26:53 | 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 021c229331444aae507186c7b4a54bb1692b5846
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/147
## Description:
Issue: qpdf/qpdf#147
Title: stack out of bounds read in function iterate_rc4
State: closed
Created by: hannob
Created at: 2017-08-23 09:37:44+00:00
Labels: bug, next
Issue Body:... | [
{
"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": "dea704f0ab7f625e1e7b3f9a1110b45b63157317",
"url": "https://github.com/qpdf/qpdf/commit/dea704f0ab7f625e1e7b3f9a1110b45b63157317"
}
] |
wabt.cve-2023-46331 | webassembly/wabt | 963f973469b45969ce198e0c86d3af316790a780 | 2023-05-12T16:56:46 | 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 963f973469b45969ce198e0c86d3af316790a780
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 . --parallel | /src/wabt | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/WebAssembly/wabt/issues/2310
## Description:
Issue: WebAssembly/wabt#2310
Title: Out-of-Bound Memory Read in DataSegment::IsValidRange()
State: closed
Created by: mobsceneZ
Created at: 2023-10-08 07:32:47+00:00
Labe... | [
{
"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": "0e78c24fd231d5ee67ccd271bfa317faa963281c",
"url": "https://github.com/webassembly/wabt/commit/0e78c24fd231d5ee67ccd271bfa317faa963281c"
},
{
"sha": "38524984d5a15c433fe111b1367d74c910dbb677",
"url": "https://github.com/kkpan11/wabt/commit/38524984d5a15c433fe111b1367d74c910dbb677"
},
... |
matio.cve-2019-9030 | 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"
},
{
... |
njs.cve-2022-29369 | nginx/njs | 7723f9dc520f08d3a75adf5dac6556503a00ec87 | 2022-02-22T13:38: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 7723f9dc520f08d3a75adf5dac6556503a00ec87
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/467
## Description:
Issue: nginx/njs#467
Title: SEGV njs_lvlhsh.c:231:17 in njs_lvlhsh_bucket_find
State: closed
Created by: Q1IQ
Created at: 2022-02-15 08:25:51+00:00
Labels: bug, fuzzer
Issue Bod... | [] | [
{
"sha": "222d6fdcf0c6485ec8e175f3a7b70d650c234b4e",
"url": "https://github.com/nginx/njs/commit/222d6fdcf0c6485ec8e175f3a7b70d650c234b4e"
},
{
"sha": "7bd570b39297d3d91902c93a624c89b08be7a6fe",
"url": "https://github.com/nginx/njs/commit/7bd570b39297d3d91902c93a624c89b08be7a6fe"
}
] |
imagemagick.cve-2017-18022 | imagemagick/imagemagick | 2884ed8a622c4b5678d1083fcaf0530ea3d58c7a | 2017-11-29T16:41:51 | 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 2884ed8a622c4b5678d1083fcaf0530ea3d58c7a
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/904
## Description:
Issue: ImageMagick/ImageMagick#904
Title: memory leaks
State: closed
Created by: littleputa
Created at: 2017-12-20 06:01:03+00:00
Labels: bug
Issue Body:
system:ub... | [
{
"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": "8cf0676455929a067257400e8020dea6ca94c1a4",
"url": "https://github.com/ImageMagick/ImageMagick/commit/8cf0676455929a067257400e8020dea6ca94c1a4"
},
{
"sha": "e7649e96a7730dd116afb629b372c5772be0b900",
"url": "https://github.com/ImageMagick/ImageMagick/commit/e7649e96a7730dd116afb629b372c... |
libarchive.cve-2024-57970 | libarchive/libarchive | b439d586f53911c84be5e380445a8a259e19114c | 2024-10-13T03:09:33 | libarchive | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf libtool pkg-config libbz2-dev liblzo2-dev liblzma-dev liblz4-dev libz-dev libssl-dev libacl1-dev libattr1-dev lrzip liblzo2-dev liblz4-tool lzop zstd lcab genisoimage jlha-utils rar default-jdk sharutils
RUN git clone https://github.... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
cd $SRC/libarchive
mkdir -p build2
cd build2
cmake -DDONT_FAIL_ON_CRC_ERROR=ON -DENABLE_WERROR=OFF ../
make -j$(nproc)
mkdir -p ./uudecoded | /src/libarchive | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/libarchive/libarchive/issues/2415
## Description:
Issue: libarchive/libarchive#2415
Title: bsdtar AddressSanitizer: heap-buffer-overflow
State: closed
Created by: gbdngb12
Created at: 2024-11-24 08:54:48+00:00
Issu... | [
{
"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": "e37d3781862573b79a76fec9dc374417e50a33c4",
"url": "https://github.com/libarchive/libarchive/commit/e37d3781862573b79a76fec9dc374417e50a33c4"
},
{
"sha": "2d8a5760c5ec553283a95a1aaca746f6eb472d0f",
"url": "https://github.com/libarchive/libarchive/commit/2d8a5760c5ec553283a95a1aaca746f6e... |
exiv2.cve-2017-17724 | 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/2) ==================
## Source: Red Hat Bugzilla
## URL: https://bugzilla.redhat.com/show_bug.cgi?id=1524107
## Description:
Bugzilla ID: 1524107
Title: exiv2 library: heap-based buffer over-read in Exiv2::IptcData::printStructure (iptc.cpp)
Description
Wei You 2017-12-10 06:21:33 UTC
... | [] | [
{
"sha": "25071d680bd707e1338ab4c9573c9864dcf02e20",
"url": "https://github.com/Exiv2/exiv2/commit/25071d680bd707e1338ab4c9573c9864dcf02e20"
},
{
"sha": "a82c68e90c1737a0de37193b3210e4162264eb83",
"url": "https://github.com/Exiv2/exiv2/commit/a82c68e90c1737a0de37193b3210e4162264eb83"
},
{
... |
libredwg.cve-2020-21833 | 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-574493364
## Description:
Issue: LibreDWG/libredwg#188
Title: Several bugs found by fuzzing
Referenced comment by linhlhq on 2020-01-15 04:42:48+00:00:
**10.heap-buffer-ove... | [
{
"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"... |
njs.cve-2020-24347 | nginx/njs | c3da13fb18f0d8ec809b346096feab572e634486 | 2020-08-11T09:31:07 | njs | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool mercurial libpcre3-dev subversion
RUN git clone https://github.com/nginx/njs njs
RUN git -C njs checkout c3da13fb18f0d8ec809b346096feab572e634486
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
./configure
make njs_fuzzer -j$(nproc)
mkdir -p $SEED_CORPUS_PATH | /src/njs | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/nginx/njs/issues/323
## Description:
Issue: nginx/njs#323
Title: Segfault in njs_lvlhsh_bucket_find
State: closed
Created by: Changochen
Created at: 2020-06-27 19:58:35+00:00
Labels: bug, fuzzer, fluff
Issue Body:
... | [] | [
{
"sha": "32a70c899c1f136fbc3f97fcc050d59e0bd8c6a5",
"url": "https://github.com/nginx/njs/commit/32a70c899c1f136fbc3f97fcc050d59e0bd8c6a5"
},
{
"sha": "9ab425eac2b6c7eb3a932c8e6934e9992435e328",
"url": "https://github.com/nginx/njs/commit/9ab425eac2b6c7eb3a932c8e6934e9992435e328"
}
] |
php.cve-2020-7064 | php/php-src | f5377d26dae3a2168b19f751535d0c4ef1d0aa50 | 2020-03-17T05:04:41 | php-src | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y autoconf automake libtool bison re2c pkg-config
RUN apt-get install -y autoconf automake libtool bison re2c pkg-config
RUN git clone https://github.com/php/php-src php-src
RUN git -C php-src checkout f5377d26dae3a2168b19f751535d0c4ef1d0aa50
WORKDI... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
autoreconf -vfi
./configure
make -j$(nproc)
export ONIG_CFLAGS="-I$PWD/oniguruma/src"
export ONIG_LIBS="-L$PWD/oniguruma/src/.libs -l:libonig.a"
export CFLAGS="$CFLAGS -fno-sanitize=object-size"
export CXXFLAGS="$CXXFLAGS -fno-sanitize=objec... | /src/php-src | memory | ================= Bug Report (1/1) ==================
## Source: PHP Bugs
## URL: https://bugs.php.net/bug.php?id=79282
## Description:
PHP Bug ID: 79282
Summary: Use-of-uninitialized-value in exif
Status: Closed
PHP Version: master-Git-2020-02-19 (Git)
Assigned: stas (profile)
CVE-ID: 2020-7064
Description:
Descripti... | [
{
"content": "deb http://archive.ubuntu.com/ubuntu/ cosmic universe\n\n",
"filename": "cosmic.list"
}
] | [] |
libjpeg-turbo.cve-2021-29390 | libjpeg-turbo/libjpeg-turbo | 4e52b66f342a803d3b8099b79607e3158d3a241c | 2020-11-24T21:56:19 | 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 4e52b66f342a803d3b8099b79607e3158d3a241c
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: Red Hat Bugzilla
## URL: https://bugzilla.redhat.com/show_bug.cgi?id=1943797
## Description:
Bugzilla ID: 1943797
Title: libhpeg-turbo version 2.0.90 is vulnerable to a heap-buffer-overflow vulnerability in decompress_smooth_data in jdcoefct.c.
Descripti... | [
{
"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": "4e52b66f342a803d3b8099b79607e3158d3a241c",
"url": null
}
] |
php.cve-2016-4073 | 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=71906
## Description:
PHP Bug ID: 71906
Summary: AddressSanitizer: negative-size-param (-1) in mbfl_strcut
Status: Closed
PHP Version: 5.5.33
Assigned: stas (profile)
CVE-ID: 2016-4073
Description:
Descrip... | [] | [
{
"sha": "64f42c73efc58e88671ad76b6b6bc8e2b62713e1",
"url": "https://github.com/php/php-src/commit/64f42c73efc58e88671ad76b6b6bc8e2b62713e1"
},
{
"sha": "c05240731",
"url": null
}
] |
libredwg.cve-2019-9779 | libredwg/libredwg | 3406d1e5b611cdb898e14d5a47e30fdc4d59c9a5 | 2018-12-05T17:15:15 | 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 3406d1e5b611cdb898e14d5a47e30fdc4d59c9a5
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/99
## Description:
Issue: LibreDWG/libredwg#99
Title: fuzzing results LibreDWG
State: closed
Created by: YourButterfly
Created at: 2019-03-12 10:51:26+00:00
Labels: bug
Issue Body:
# libred... | [
{
"content": "[libfuzzer]\ndetect_leaks=0\n",
"filename": "fuzz_dwg_decode.options"
}
] | [
{
"sha": "c948548e175a9e5e4ed45623013ed20df62a920a",
"url": "https://github.com/libredwg/libredwg/commit/c948548e175a9e5e4ed45623013ed20df62a920a"
},
{
"sha": "0c6a267ca01b811e837d5cec17a30061b4081dd2",
"url": "https://github.com/libredwg/libredwg/commit/0c6a267ca01b811e837d5cec17a30061b4081dd2"... |
php.cve-2018-7584 | php/php-src | 1f4b057b631f9c9672cfd180090d8f52197bf806 | 2018-02-23T18:43:10 | 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=75981
## Description:
PHP Bug ID: 75981
Summary: stack-buffer-overflow while parsing HTTP response
Status: Closed
PHP Version: 5.6.33
Assigned: stas (profile)
CVE-ID: 2018-7584
Description:
Description:
--... | [] | [
{
"sha": "523f230c831d7b33353203fa34aee4e92ac12bba",
"url": "https://github.com/php/php-src/commit/523f230c831d7b33353203fa34aee4e92ac12bba"
},
{
"sha": "36239fee3638a8f4cfe3ca3aba597cb1699abd90",
"url": "https://github.com/php/php-src/commit/36239fee3638a8f4cfe3ca3aba597cb1699abd90"
}
] |
exiv2.cve-2020-18899 | exiv2/exiv2 | 62826516778b96da5ddb38f5ec1499dc76994a6f | 2018-12-20T04:09:32 | 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 62826516778b96da5ddb38f5ec1499dc76994a6f
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/742
## Description:
Issue: Exiv2/exiv2#742
Title: [bug report] Program crash due to uncontrolled memory allocation on function DataBuf data(subBox.length-sizeof(box))
State: closed
Created by: wcv... | [] | [
{
"sha": "e93c3728252cd4b673ad5462c6d750380d35b299",
"url": "https://github.com/Exiv2/exiv2/commit/e93c3728252cd4b673ad5462c6d750380d35b299"
},
{
"sha": "c0bedb928a572ebf8b1f4c603a05d8a5f85cc43b",
"url": "https://github.com/Exiv2/exiv2/commit/c0bedb928a572ebf8b1f4c603a05d8a5f85cc43b"
},
{
... |
mruby.cve-2022-1201 | mruby/mruby | d1f1b4ea38cd5a2a9d0b2aa3547d4f2828180299 | 2022-04-01T01:02: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 d1f1b4ea38cd5a2a9d0b2aa3547d4f2828180299
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/6f930add-c9d8-4870-ae56-d4bd8354703b
## Description:
Description
NULL Pointer Dereference in mrb_vm_exec with super
Proof of Concept
o13 = Comparable.initialize(){||0x7f.instance_eval() do super rescue caller (0..1... | [] | [
{
"sha": "6f930add",
"url": null
},
{
"sha": "00acae117da1b45b318dc36531a7b0021b8097ae",
"url": "https://github.com/mruby/mruby/commit/00acae117da1b45b318dc36531a7b0021b8097ae"
}
] |
php.cve-2018-10549 | php/php-src | fe3d53f4437718fad63850695970dddd63144af5 | 2018-04-24T16:23:14 | 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=76130
## Description:
PHP Bug ID: 76130
Summary: Heap Buffer Overflow (READ: 1786) in exif_iif_add_value
Status: Closed
PHP Version: 5.6 +
Assigned: stas (profile)
CVE-ID: 2018-10549
Description:
Descripti... | [] | [
{
"sha": "b4e4788c4461449b4587e19ef1f474ce938e4980",
"url": "https://github.com/php/php-src/commit/b4e4788c4461449b4587e19ef1f474ce938e4980"
}
] |
minizip.cve-2023-48107 | zlib-ng/minizip-ng | 4f670cc7d7ad3a7a27ac3ed5e6c5ddf20956654b | 2023-10-26T12:06:19 | minizip-ng | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make cmake pkg-config libssl-dev:i386
RUN git clone https://github.com/zlib-ng/minizip-ng minizip-ng
RUN git -C minizip-ng checkout 4f670cc7d7ad3a7a27ac3ed5e6c5ddf20956654b
WORKDIR $SRC/minizip-ng
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
cmake . -DCMAKE_C_FLAGS="$CFLAGS" -DCMAKE_CXX_FLAGS="$CXXFLAGS" -DMZ_BUILD_FUZZ_TESTS=ON
make clean -j$(nproc)
make -j$(nproc) | /src/minizip-ng | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/zlib-ng/minizip-ng/issues/739
## Description:
Issue: zlib-ng/minizip-ng#739
Title: Heap-buffer-overflow in mz_os.c:71 mz_path_has_slash
State: closed
Created by: Akane0721
Created at: 2023-11-08 12:19:50+00:00
Label... | [] | [
{
"sha": "f37d805631e0a15bea1f15b6e1edfb3246a2e0fc",
"url": "https://github.com/zlib-ng/minizip-ng/commit/f37d805631e0a15bea1f15b6e1edfb3246a2e0fc"
},
{
"sha": "576262a7c293cbb21845b25bd97a13cb33d9dd27",
"url": "https://github.com/zlib-ng/minizip-ng/commit/576262a7c293cbb21845b25bd97a13cb33d9dd2... |
php.cve-2017-6441 | php/php-src | e000b401acacd5c0e8d90ec36c2ef1c585d149a2 | 2017-02-14T12:33:55 | 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=74146
## Description:
PHP Bug ID: 74146
Summary: Null pointer dereference in _zval_get_long_func_ex()
Status: Closed
PHP Version: 7.1.2
Assigned: pollita (profile)
Description:
Description:
------------
Af... | [] | [] |
libredwg.cve-2020-21814 | libredwg/libredwg | 7b9cb829f93d1c1f67584345ed65ea830de8bdda | 2020-01-09T06:35:01 | 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 7b9cb829f93d1c1f67584345ed65ea830de8bdda
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/182#issuecomment-572891083
## Description:
Issue: LibreDWG/libredwg#182
Title: Several bugs found by fuzzing
Referenced comment by linhlhq on 2020-01-10 06:18:13+00:00:
**8.heap-buffer-over... | [
{
"content": "[libfuzzer]\ndetect_leaks=0\n",
"filename": "fuzz_dwg_decode.options"
}
] | [
{
"sha": "b7fa220b62c5ce9f95d7a45558bc55b8df2b41ad",
"url": "https://github.com/LibreDWG/libredwg/commit/b7fa220b62c5ce9f95d7a45558bc55b8df2b41ad"
},
{
"sha": "7e4c59b63d9c5b4b513cba1d0f33612042524563",
"url": "https://github.com/LibreDWG/libredwg/commit/7e4c59b63d9c5b4b513cba1d0f33612042524563"... |
faad2.cve-2018-20198 | 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/23
## Description:
Issue: knik0/faad2#23
Title: Null pointer dereference vulnerability in ifilter_bank(libfaad/filtbank.c:246)
State: closed
Created by: fantasy7082
Created at: 2018-12-17 06:17:36... | [] | [
{
"sha": "466b01d504d7e45f1e9169ac90b3e34ab94aed14",
"url": "https://github.com/knik0/faad2/commit/466b01d504d7e45f1e9169ac90b3e34ab94aed14"
},
{
"sha": "6b4a7cde30f2e2cb03e78ef476cc73179cfffda3",
"url": "https://github.com/knik0/faad2/commit/6b4a7cde30f2e2cb03e78ef476cc73179cfffda3"
},
{
... |
gpac.cve-2023-48014 | gpac/gpac | cd8a95c1efb8f5bfc950b86c2ef77b4c76f6b893 | 2023-10-12T09:17:31 | 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 cd8a95c1efb8f5bfc950b86c2ef77b4c76f6b893
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/2613
## Description:
Issue: gpac/gpac#2613
Title: stack-buffer-overflow in /gpac/src/media_tools/av_parsers.c:7735:42 in hevc_parse_vps_extension
State: closed
Created by: gandalf4a
Created at: 2023... | [] | [
{
"sha": "66abf0887c89c29a484d9e65e70882794e9e3a1b",
"url": "https://github.com/1480c1/gpac/commit/66abf0887c89c29a484d9e65e70882794e9e3a1b"
},
{
"sha": "53333ca7bff59dd9a3d1b2821e7c5f3a9aac76b9",
"url": "https://github.com/gpac/gpac/commit/53333ca7bff59dd9a3d1b2821e7c5f3a9aac76b9"
}
] |
yara.cve-2016-10211 | virustotal/yara | eb491e03851a11bc811173f5e13c89cefa7257ac | 2017-01-04T09:18:03 | yara | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y automake autoconf make libtool pkg-config bison flex
RUN git clone https://github.com/virustotal/yara yara
RUN git -C yara checkout eb491e03851a11bc811173f5e13c89cefa7257ac
WORKDIR $SRC/yara
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./bootstrap.sh
./configure --enable-macho --enable-debug --enable-dex --enable-dotnet --without-crypto
make clean -j$(nproc)
make -j$(nproc) all
make install -j$(nproc) | /src/yara | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/VirusTotal/yara/issues/575
## Description:
Issue: VirusTotal/yara#575
Title: Use After Free in yr_parser_lookup_loop_variable()
State: closed
Created by: fumfel
Created at: 2016-12-06 09:15:26+00:00
Issue Body:
**U... | [] | [
{
"sha": "890c3f850293176c0e996a602ffa88b315f4e98f",
"url": "https://github.com/virustotal/yara/commit/890c3f850293176c0e996a602ffa88b315f4e98f"
},
{
"sha": "779b9a77aa4377152a5cba031255029afb0c19a5",
"url": "https://github.com/virustotal/yara/commit/779b9a77aa4377152a5cba031255029afb0c19a5"
}... |
libdwarf.cve-2022-32200 | davea42/libdwarf-code | 8e202226e604864b792ade45de8595c8944c0269 | 2022-05-29T10:55:43 | libdwarf-code | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone https://github.com/davea42/libdwarf-code libdwarf-code
RUN git -C libdwarf-code checkout 8e202226e604864b792ade45de8595c8944c0269
WORKDIR $SRC/libdwarf-code
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
export CFLAGS="${CFLAGS} -g -Werror"
export CXXFLAGS="${CXXFLAGS} -g -Werror"
mkdir -p build
cd build
cmake ../
make -j$(nproc)
mkdir -p $SRC/corp | /src/libdwarf-code | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/davea42/libdwarf-code/issues/116
## Description:
Issue: davea42/libdwarf-code#116
Title: heap overflow in _dwarf_check_string_valid in dwarf_util.c
State: closed
Created by: sleicasper
Created at: 2022-05-26 10:00:0... | [
{
"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": "8151575a6ace77d005ca5bb5d71c1bfdba3f7069",
"url": "https://github.com/davea42/libdwarf-code/commit/8151575a6ace77d005ca5bb5d71c1bfdba3f7069"
}
] |
mruby.cve-2022-1427 | mruby/mruby | bdc244e9b035c608e3aeb1cb3440c47c2a5d61e6 | 2022-04-21T00:47:15 | 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 bdc244e9b035c608e3aeb1cb3440c47c2a5d61e6
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/23b6f0a9-64f5-421e-a55f-b5b7a671f301
## Description:
Out-of-bounds Read in mrb_obj_is_kind_of in mruby/mruby
Affected commit
791635a8d1ad9aad98aae0a36a91e092e4d71944
Proof of Concept
Math.initialize() do $4
prep... | [] | [
{
"sha": "23b6f0a9",
"url": null
},
{
"sha": "a4d97934d51cb88954cc49161dc1d151f64afb6b",
"url": "https://github.com/mruby/mruby/commit/a4d97934d51cb88954cc49161dc1d151f64afb6b"
},
{
"sha": "791635a8d1ad9aad98aae0a36a91e092e4d71944",
"url": "https://github.com/mruby/mruby/commit/79163... |
imagemagick.cve-2019-13308 | imagemagick/imagemagick | b88e300799058d7a5f09efef89519591d9f3ada2 | 2019-06-16T21:13:43 | 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 b88e300799058d7a5f09efef89519591d9f3ada2
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/1595
## Description:
Issue: ImageMagick/ImageMagick#1595
Title: heap-buffer-overflow in MagickCore/fourier.c:299:18 in ComplexImage
State: closed
Created by: SuhwanSong
Created at: 201... | [] | [
{
"sha": "61135001a625364e29bdce83832f043eebde7b5a",
"url": "https://github.com/ImageMagick/ImageMagick/commit/61135001a625364e29bdce83832f043eebde7b5a"
},
{
"sha": "19651f3db63fa1511ed83a348c4c82fa553f8d01",
"url": "https://github.com/ImageMagick/ImageMagick6/commit/19651f3db63fa1511ed83a348c4c... |
njs.cve-2020-24346 | nginx/njs | c3da13fb18f0d8ec809b346096feab572e634486 | 2020-08-11T09:31:07 | njs | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool mercurial libpcre3-dev subversion
RUN git clone https://github.com/nginx/njs njs
RUN git -C njs checkout c3da13fb18f0d8ec809b346096feab572e634486
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
./configure
make njs_fuzzer -j$(nproc)
mkdir -p $SEED_CORPUS_PATH | /src/njs | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/nginx/njs/issues/325
## Description:
Issue: nginx/njs#325
Title: heap-use-after-free in njs_json_parse_iterator_call
State: closed
Created by: Changochen
Created at: 2020-06-28 18:40:42+00:00
Labels: bug, fuzzer, fl... | [] | [
{
"sha": "32a70c899c1f136fbc3f97fcc050d59e0bd8c6a5",
"url": "https://github.com/nginx/njs/commit/32a70c899c1f136fbc3f97fcc050d59e0bd8c6a5"
},
{
"sha": "9ab425eac2b6c7eb3a932c8e6934e9992435e328",
"url": "https://github.com/nginx/njs/commit/9ab425eac2b6c7eb3a932c8e6934e9992435e328"
}
] |
njs.cve-2022-25139 | nginx/njs | 39e8fa1b7db1680654527f8fa0e9ee93b334ecba | 2022-01-19T08:03: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 39e8fa1b7db1680654527f8fa0e9ee93b334ecba
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/451
## Description:
Issue: nginx/njs#451
Title: Heap UAF in njs_await_fulfilled
State: closed
Created by: anonym0us1337
Created at: 2021-12-24 06:48:19+00:00
Labels: bug, fuzzer
Issue Body:
## Env
... | [] | [
{
"sha": "6a07c2156a07ef307b6dcf3c2ca8571a5f1af7a6",
"url": "https://github.com/nginx/njs/commit/6a07c2156a07ef307b6dcf3c2ca8571a5f1af7a6"
},
{
"sha": "2da5d8b246b806bee6f74b575217ec3b61a25548",
"url": "https://github.com/nginx/njs/commit/2da5d8b246b806bee6f74b575217ec3b61a25548"
},
{
"s... |
jq.cve-2023-50246 | jqlang/jq | c9a51565214eece8f1053089739aea73145bfd6b | 2023-12-13T13:17:17 | jq | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make flex bison libtool automake autoconf
RUN git clone https://github.com/jqlang/jq jq
RUN git -C jq checkout c9a51565214eece8f1053089739aea73145bfd6b
WORKDIR $SRC/jq
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
autoreconf -fi
./configure --with-oniguruma=builtin
make -j$(nproc)
mkdir -p $SRC/seeds | /src/jq | address | ================= Bug Report (1/2) ==================
## Source: GitHub Advisory
## URL: https://github.com/jqlang/jq/security/advisories/GHSA-686w-5m7m-54vc
## Description:
Advisory ID: GHSA-686w-5m7m-54vc
Title: heap-buffer-overflow exists in the function decToString in decNumber.c
Description:
System info
Ubuntu x8... | [
{
"content": "\"acos\"\n\"acosh\"\n\"add\"\n\"all\"\n\"any\"\n\"arrays\"\n\"ascii_downcase\"\n\"ascii_upcase\"\n\"asin\"\n\"asinh\"\n\"atan\"\n\"atan2\"\n\"atanh\"\n\"booleans\"\n\"bsearch\"\n\"builtins\"\n\"capture\"\n\"cbrt\"\n\"ceil\"\n\"combinations\"\n\"contains\"\n\"copysign\"\n\"cos\"\n\"cosh\"\n\"debug\... | [
{
"sha": "71c2ab509a8628dbbad4bc7b3f98a64aa90d3297",
"url": "https://github.com/jqlang/jq/commit/71c2ab509a8628dbbad4bc7b3f98a64aa90d3297"
}
] |
php.cve-2020-7059 | php/php-src | 525e494fe5b65f05d62fe5a7bacd1bd8cd72ed1e | 2020-01-22T01:45:58 | php-src | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y autoconf automake libtool bison re2c pkg-config
RUN apt-get install -y autoconf automake libtool bison re2c pkg-config
RUN git clone https://github.com/php/php-src php-src
RUN git -C php-src checkout 525e494fe5b65f05d62fe5a7bacd1bd8cd72ed1e
WORKDI... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
autoreconf -vfi
./configure
make -j$(nproc)
export ONIG_CFLAGS="-I$PWD/oniguruma/src"
export ONIG_LIBS="-L$PWD/oniguruma/src/.libs -l:libonig.a"
export CFLAGS="$CFLAGS -fno-sanitize=object-size"
export CXXFLAGS="$CXXFLAGS -fno-sanitize=objec... | /src/php-src | address | ================= Bug Report (1/1) ==================
## Source: PHP Bugs
## URL: https://bugs.php.net/bug.php?id=79099
## Description:
PHP Bug ID: 79099
Summary: OOB read in php_strip_tags_ex
Status: Closed
PHP Version: 7.2.26
Assigned: stas (profile)
CVE-ID: 2020-7059
Description:
Description:
------------
sorry. I ... | [
{
"content": "deb http://archive.ubuntu.com/ubuntu/ cosmic universe\n\n",
"filename": "cosmic.list"
}
] | [] |
libsndfile.cve-2018-19432 | libsndfile/libsndfile | 1d928bffdb65e827c3e7d17ece0e123b4a70ec6c | 2017-04-02T03:52:51 | libsndfile | c++ | FROM hwiwonlee/secb.base:latest
RUN git clone https://github.com/libsndfile/libsndfile libsndfile
RUN git -C libsndfile checkout 1d928bffdb65e827c3e7d17ece0e123b4a70ec6c
WORKDIR $SRC/libsndfile
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/libsndfile | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/erikd/libsndfile/issues/427
## Description:
Issue: erikd/libsndfile#427
Title: out of bounds read in sf_write_int
State: closed
Created by: YourButterfly
Created at: 2018-11-22 03:19:43+00:00
Issue Body:
## version... | [] | [
{
"sha": "6f32662",
"url": "https://github.com/libsndfile/libsndfile/commit/6f32662"
},
{
"sha": "aaea680337267bfb6d2544da878890ee7f1c5077",
"url": "https://github.com/libsndfile/libsndfile/commit/aaea680337267bfb6d2544da878890ee7f1c5077"
},
{
"sha": "aaea680",
"url": "https://github... |
njs.cve-2020-24348 | nginx/njs | c3da13fb18f0d8ec809b346096feab572e634486 | 2020-08-11T09:31:07 | njs | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool mercurial libpcre3-dev subversion
RUN git clone https://github.com/nginx/njs njs
RUN git -C njs checkout c3da13fb18f0d8ec809b346096feab572e634486
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
./configure
make njs_fuzzer -j$(nproc)
mkdir -p $SEED_CORPUS_PATH | /src/njs | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/nginx/njs/issues/322
## Description:
Issue: nginx/njs#322
Title: Segfault in njs_json_stringify_iterator
State: closed
Created by: Changochen
Created at: 2020-06-27 19:55:59+00:00
Labels: bug, fuzzer, fluff
Issue ... | [] | [
{
"sha": "32a70c899c1f136fbc3f97fcc050d59e0bd8c6a5",
"url": "https://github.com/nginx/njs/commit/32a70c899c1f136fbc3f97fcc050d59e0bd8c6a5"
},
{
"sha": "63aa001ebd7a386939851cf8b2c0332d718f5c23",
"url": "https://github.com/nginx/njs/commit/63aa001ebd7a386939851cf8b2c0332d718f5c23"
}
] |
libsndfile.cve-2021-3246 | libsndfile/libsndfile | 68958f9c9199dad97dcd10700df3746b2cd9b8a3 | 2020-09-19T01:48:47 | libsndfile | c++ | FROM hwiwonlee/secb.base:latest
RUN git clone https://github.com/libsndfile/libsndfile libsndfile
RUN git -C libsndfile checkout 68958f9c9199dad97dcd10700df3746b2cd9b8a3
WORKDIR $SRC/libsndfile
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/libsndfile | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/libsndfile/libsndfile/issues/687
## Description:
Issue: libsndfile/libsndfile#687
Title: heap-buffer-overflow in in msadpcm_decode_block
State: closed
Created by: andreafioraldi
Created at: 2021-01-15 10:43:55+00:00... | [] | [
{
"sha": "bb175a626586b0cc7afab78ef5fcc2cc98afa861",
"url": "https://github.com/libsndfile/libsndfile/commit/bb175a626586b0cc7afab78ef5fcc2cc98afa861"
},
{
"sha": "251a435566bd798a45629425f3a61df8d61e3ba1",
"url": "https://github.com/libsndfile/libsndfile/commit/251a435566bd798a45629425f3a61df8d... |
matio.cve-2019-20020 | 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/128
## Description:
Issue: tbeu/matio#128
Title: There is a stack-based buffer overflow in the ReadNextStructField function of mat5.c(at 1393)
State: closed
Created by: gutiniao
Created at: 2019-11... | [
{
"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": "7b4699854cc65874e13a8e6944cd8e62fa981068",
"url": "https://github.com/tbeu/matio/commit/7b4699854cc65874e13a8e6944cd8e62fa981068"
},
{
"sha": "a47b7cd3aca70e9a0bddf8146eb4ab0cbd19c2c3",
"url": "https://github.com/tbeu/matio/commit/a47b7cd3aca70e9a0bddf8146eb4ab0cbd19c2c3"
},
{
... |
gpac.cve-2022-27146 | gpac/gpac | 62bbb9f3977e358631ef395625471bbcf284785e | 2022-02-22T07:38: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 62bbb9f3977e358631ef395625471bbcf284785e
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/2120
## Description:
Issue: gpac/gpac#2120
Title: There is a heap buffer overflow detected by AddressSanitizer
State: closed
Created by: AAArdu
Created at: 2022-02-16 11:57:40+00:00
Issue Body:
## ... | [] | [
{
"sha": "f0a41d178a2dc5ac185506d9fa0b0a58356b16f7",
"url": "https://github.com/gpac/gpac/commit/f0a41d178a2dc5ac185506d9fa0b0a58356b16f7"
}
] |
libredwg.cve-2020-21834 | 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-574492468
## Description:
Issue: LibreDWG/libredwg#188
Title: Several bugs found by fuzzing
Referenced comment by linhlhq on 2020-01-15 04:38:33+00:00:
**2.NULL pointer der... | [
{
"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"... |
gpac.cve-2021-32440 | gpac/gpac | 185532656c97da3d7ed50a55871f5df42e0b89a9 | 2021-04-30T03:57:32 | 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 185532656c97da3d7ed50a55871f5df42e0b89a9
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/1772
## Description:
Issue: gpac/gpac#1772
Title: SEGV in gpac MP4Box function Media_RewriteODFrame
State: closed
Created by: JsHuang
Created at: 2021-04-30 08:25:12+00:00
Issue Body:
A SEGV issue ... | [] | [
{
"sha": "f0ba83717b6e4d7a15a1676d1fe06152e199b011",
"url": "https://github.com/gpac/gpac/commit/f0ba83717b6e4d7a15a1676d1fe06152e199b011"
}
] |
matio.cve-2019-9034 | 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"
},
{
... |
libzip.cve-2019-17582 | nih-at/libzip | f0b8ddaabe53b2ea34ea115dfba7879b9e7a29f0 | 2017-06-29T04:24:59 | libzip | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y cmake pkg-config zlib1g-dev
RUN git clone https://github.com/nih-at/libzip libzip
RUN git -C libzip checkout f0b8ddaabe53b2ea34ea115dfba7879b9e7a29f0
WORKDIR $SRC/libzip
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 -DENABLE_GNUTLS=OFF -DENABLE_MBEDTLS=OFF -DENABLE_OPENSSL=OFF -DBUILD_TOOLS=OFF ..
make -j$(nproc) | /src/libzip | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/nih-at/libzip/issues/5
## Description:
Issue: nih-at/libzip#5
Title: use-after-free in _zip_buffer_free (zip_buffer.c)
State: closed
Created by: asarubbo
Created at: 2017-08-24 10:44:17+00:00
Issue Body:
On 1.2.0:
... | [] | [
{
"sha": "2217022b7d1142738656d891e00b3d2d9179b796",
"url": "https://github.com/nih-at/libzip/commit/2217022b7d1142738656d891e00b3d2d9179b796"
}
] |
imagemagick.cve-2018-11624 | imagemagick/imagemagick | 2d9deb32e44a60599fb37c530590afb1503feb0c | 2018-05-28T19:54:03 | 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 2d9deb32e44a60599fb37c530590afb1503feb0c
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/1149
## Description:
Issue: ImageMagick/ImageMagick#1149
Title: heap-use-after-free
State: closed
Created by: zer0min9
Created at: 2018-05-29 08:23:54+00:00
Issue Body:
### Prerequisi... | [] | [
{
"sha": "172d82afe89d3499ef0cab06dc58d380cc1ab946",
"url": "https://github.com/ImageMagick/ImageMagick6/commit/172d82afe89d3499ef0cab06dc58d380cc1ab946"
}
] |
gpac.cve-2023-48013 | gpac/gpac | c70f49dda4946d6db6aa55588f6a756b76bd84ea | 2023-10-12T09:08:14 | 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 c70f49dda4946d6db6aa55588f6a756b76bd84ea
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/2612
## Description:
Issue: gpac/gpac#2612
Title: double-free in gf_filterpacket_del /home/user/fuzzing_gpac/gpac/src/filter_core/filter.c:38:17
State: closed
Created by: gandalf4a
Created at: 2023-... | [] | [
{
"sha": "cd8a95c1efb8f5bfc950b86c2ef77b4c76f6b893",
"url": "https://github.com/1480c1/gpac/commit/cd8a95c1efb8f5bfc950b86c2ef77b4c76f6b893"
},
{
"sha": "53333ca7bff59dd9a3d1b2821e7c5f3a9aac76b9",
"url": "https://github.com/gpac/gpac/commit/53333ca7bff59dd9a3d1b2821e7c5f3a9aac76b9"
}
] |
php.cve-2016-5096 | php/php-src | 95ed19ae28009aa7b3ed42d5760478de82640560 | 2016-05-02T09:52:58 | 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=72114
## Description:
PHP Bug ID: 72114
Summary: Integer underflow / arbitrary null write in fread/gzread
Status: Closed
PHP Version: 5.5.35
Assigned: stas (profile)
CVE-ID: 2016-5096
Description:
Descript... | [] | [
{
"sha": "abd159cce48f3e34f08e4751c568e09677d5ec9c",
"url": "https://github.com/php/php-src/commit/abd159cce48f3e34f08e4751c568e09677d5ec9c"
},
{
"sha": "c05240731",
"url": null
}
] |
libsndfile.cve-2024-50612 | libsndfile/libsndfile | 72f6af15e8f85157bd622ed45b979025828b7001 | 2023-08-13T03:53:51 | libsndfile | c++ | FROM hwiwonlee/secb.base:latest
RUN git clone https://github.com/libsndfile/libsndfile libsndfile
RUN git -C libsndfile checkout 72f6af15e8f85157bd622ed45b979025828b7001
WORKDIR $SRC/libsndfile
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/libsndfile | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/libsndfile/libsndfile/issues/1035
## Description:
Issue: libsndfile/libsndfile#1035
Title: Segmentation fault error in ogg_vorbis.c:417 vorbis_analysis_wrote()
State: closed
Created by: 4n0nym4u5
Created at: 2024-08... | [] | [
{
"sha": "58a44b2feaebf749cc199712b9da8b0a72529304",
"url": "https://github.com/libsndfile/libsndfile/commit/58a44b2feaebf749cc199712b9da8b0a72529304"
},
{
"sha": "cbada87c9425ff09ce9f7616c3a774b7f2e3be61",
"url": "https://github.com/libsndfile/libsndfile/commit/cbada87c9425ff09ce9f7616c3a774b7f... |
mruby.cve-2022-0570 | mruby/mruby | 0ed3fcfa26de93c20c8cb4789d16fceab6e38b40 | 2022-02-11T00:21:01 | 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 0ed3fcfa26de93c20c8cb4789d16fceab6e38b40
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/65a7632e-f95b-4836-b1a7-9cb95e5124f1
## Description:
Description
Heap Overflow occurs in mrb_f_send().
commit : d912b864df3199f2108601a0451532c587a5e830
Proof of Concept
$ echo -ne "c2VuZCJzZW5kIiwic2VuZCIsInNlbmQi... | [] | [
{
"sha": "65a7632e",
"url": null
},
{
"sha": "38b164ace7d6ae1c367883a3d67d7f559783faad",
"url": "https://github.com/mruby/mruby/commit/38b164ace7d6ae1c367883a3d67d7f559783faad"
},
{
"sha": "d912b864df3199f2108601a0451532c587a5e830",
"url": "https://github.com/mruby/mruby/commit/d912b... |
faad2.cve-2018-20358 | 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/31
## Description:
Issue: knik0/faad2#31
Title: Invalid memory address dereference in lt_prediction(in libfaad/lt_predict.c:108)
State: closed
Created by: fantasy7082
Created at: 2018-12-17 06:51:... | [] | [
{
"sha": "466b01d504d7e45f1e9169ac90b3e34ab94aed14",
"url": "https://github.com/knik0/faad2/commit/466b01d504d7e45f1e9169ac90b3e34ab94aed14"
}
] |
exiv2.cve-2018-14046 | 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/378
## Description:
Issue: Exiv2/exiv2#378
Title: AddressSanitizer: heap-buffer-overflow /src/exiv2/src/webpimage.cpp:563 Exiv2::WebPImage::decodeChunks(unsigned long)
State: closed
Created by: co... | [] | [
{
"sha": "49bfe84b4b7277cc425572fb68db23c8820181c1",
"url": "https://github.com/D4N/exiv2/commit/49bfe84b4b7277cc425572fb68db23c8820181c1"
},
{
"sha": "f522cbf46021f3785d741cd3a048627b7e142478",
"url": "https://github.com/D4N/exiv2/commit/f522cbf46021f3785d741cd3a048627b7e142478"
},
{
"s... |
imagemagick.cve-2017-11750 | 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 | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/ImageMagick/ImageMagick/issues/632
## Description:
Issue: ImageMagick/ImageMagick#632
Title: Null pointer Dereference in DestroyJNG()
State: closed
Created by: k0keoyo
Created at: 2017-07-30 07:34:09+00:00
Labels: 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... | [] |
php.cve-2016-7418 | php/php-src | f5a9592ad8d2b60cabbaff00662477528ecefb48 | 2016-09-12T23:04:23 | 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=73065
## Description:
PHP Bug ID: 73065
Summary: Out-Of-Bounds Read in php_wddx_push_element of wddx.c
Status: Closed
PHP Version: 5.6.25
Assigned: stas (profile)
CVE-ID: 2016-7418
Description:
Description... | [] | [
{
"sha": "c4cca4c20e75359c9a13a1f9a36cb7b4e9601d29",
"url": "https://github.com/php/php-src/commit/c4cca4c20e75359c9a13a1f9a36cb7b4e9601d29"
},
{
"sha": "bbaf784f8d213e201baf67e861f20b38c6e87d3b",
"url": "https://github.com/php/php-src/commit/bbaf784f8d213e201baf67e861f20b38c6e87d3b"
}
] |
gpac.cve-2023-46927 | gpac/gpac | c1d962c0550aaa8fc3600ffe3aaaa5fc8bbad98b | 2023-10-23T07:09:06 | 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 c1d962c0550aaa8fc3600ffe3aaaa5fc8bbad98b
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/2657
## Description:
Issue: gpac/gpac#2657
Title: heap-buffer-overflow in gf_isom_use_compact_size gpac/src/isomedia/isom_write.c:3403:3 in gpac/gpac
State: closed
Created by: Frank-Z7
Created at: 2... | [] | [
{
"sha": "a7b467b151d9b54badbc4dd71e7a366b7c391817",
"url": "https://github.com/1480c1/gpac/commit/a7b467b151d9b54badbc4dd71e7a366b7c391817"
}
] |
php.cve-2019-9025 | php/php-src | 12583615da266b59f3cd28e9f81d6898645e30f8 | 2019-01-08T07:16:55 | 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=77367
## Description:
PHP Bug ID: 77367
Summary: Negative size parameter in mb_split
Status: Closed
PHP Version: 7.3.0
Assigned: stas (profile)
CVE-ID: 2019-9025
Description:
Description:
------------
mb_s... | [] | [
{
"sha": "ee30a1fa4c05a5e3d53898296ed9bdb6a1d63239",
"url": "https://github.com/php/php-src/commit/ee30a1fa4c05a5e3d53898296ed9bdb6a1d63239"
}
] |
php.cve-2017-12933 | php/php-src | fb59213fc461f079bc218abf44cb5e2b4db2182c | 2016-05-25T04:31:05 | 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=74111
## Description:
PHP Bug ID: 74111
Summary: Heap buffer overread (READ: 1) finish_nested_data from unserialize
Status: Closed
PHP Version: 7.1.2RC1
Assigned: stas (profile)
CVE-ID: 2017-12933
Descript... | [] | [] |
memcached.cve-2021-37519 | memcached/memcached | c472369fed5981ba8c004d426cee62d5165c47ca | 2020-11-20T17:40:12 | memcached | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool pkgconf libevent-dev
RUN git clone https://github.com/memcached/memcached memcached
RUN git -C memcached checkout c472369fed5981ba8c004d426cee62d5165c47ca
WORKDIR $SRC/memcached
COPY build.sh $SRC/ | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./autogen.sh
./configure --enable-proxy
make -j$(nproc)
cd $SRC/memcached | /src/memcached | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/memcached/memcached/issues/805
## Description:
Issue: memcached/memcached#805
Title: Heap buffer overflow
State: closed
Created by: C0NSTANTINE110
Created at: 2021-07-19 06:49:27+00:00
Labels: help wanted
Issue Bod... | [] | [
{
"sha": "264722ae4e248b453be00e97197dadc685b60fd0",
"url": "https://github.com/memcached/memcached/commit/264722ae4e248b453be00e97197dadc685b60fd0"
},
{
"sha": "ddee3e27a031be22f5f28c160be18fd3cb9bc63d",
"url": "https://github.com/memcached/memcached/commit/ddee3e27a031be22f5f28c160be18fd3cb9bc... |
faad2.cve-2018-20359 | 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/29
## Description:
Issue: knik0/faad2#29
Title: Invalid memory address dereference in sbrDecodeSingleFramePS(in libfaad/sbr_dec.c:601)
State: closed
Created by: fantasy7082
Created at: 2018-12-17... | [] | [
{
"sha": "6b4a7cde30f2e2cb03e78ef476cc73179cfffda3",
"url": "https://github.com/knik0/faad2/commit/6b4a7cde30f2e2cb03e78ef476cc73179cfffda3"
},
{
"sha": "678aaac12a93ea496bb037730a1c13db73e70924",
"url": "https://github.com/knik0/faad2/commit/678aaac12a93ea496bb037730a1c13db73e70924"
},
{
... |
gpac.cve-2021-32438 | gpac/gpac | 289ffce3e0d224d314f5f92a744d5fe35999f20b | 2021-04-30T03:47: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 289ffce3e0d224d314f5f92a744d5fe35999f20b
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/1769
## Description:
Issue: gpac/gpac#1769
Title: Null pointer dereference in gpac MP4Box gf_media_export_filters
State: closed
Created by: JsHuang
Created at: 2021-04-30 08:03:06+00:00
Issue Body:... | [] | [
{
"sha": "00194f5fe462123f70b0bae7987317b52898b868",
"url": "https://github.com/gpac/gpac/commit/00194f5fe462123f70b0bae7987317b52898b868"
}
] |
gpac.cve-2023-48011 | gpac/gpac | 91e787d6ce65df73f84b3cea1b77b7e9a6117533 | 2023-10-12T08:07:55 | 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 91e787d6ce65df73f84b3cea1b77b7e9a6117533
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/2611
## Description:
Issue: gpac/gpac#2611
Title: heap-use-after-free in ./gpac/src/isomedia/movie_fragments.c:936:37 in flush_ref_samples
State: closed
Created by: gandalf4a
Created at: 2023-10-08 ... | [] | [
{
"sha": "c70f49dda4946d6db6aa55588f6a756b76bd84ea",
"url": "https://github.com/1480c1/gpac/commit/c70f49dda4946d6db6aa55588f6a756b76bd84ea"
},
{
"sha": "53333ca7bff59dd9a3d1b2821e7c5f3a9aac76b9",
"url": "https://github.com/gpac/gpac/commit/53333ca7bff59dd9a3d1b2821e7c5f3a9aac76b9"
}
] |
libiec61850.cve-2021-45769 | mz-automation/libiec61850 | fcefc746fea286aeaa40d2f62240216da81c85e5 | 2021-04-12T10:28:24 | libiec61850 | c++ | FROM hwiwonlee/secb.base:latest
RUN git clone https://github.com/mz-automation/libiec61850 libiec61850
RUN git -C libiec61850 checkout fcefc746fea286aeaa40d2f62240216da81c85e5
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/368
## Description:
Issue: mz-automation/libiec61850#368
Title: NULL Pointer Dereference in AcseConnection_parseMessage
State: closed
Created by: AiDaiP
Created at: 2021-12-23 00:53:... | [
{
"content": "[libfuzzer]\ndetect_leaks=0\n",
"filename": "fuzz_decode.options"
}
] | [
{
"sha": "32087c47dea6a551610bed3dec7cb94d7d89e5ac",
"url": "https://github.com/mz-automation/libiec61850/commit/32087c47dea6a551610bed3dec7cb94d7d89e5ac"
}
] |
oniguruma.cve-2017-9224 | kkos/oniguruma | 166a6c3999bf06b4de0ab4ce6b088a468cc4029f | 2017-05-22T04:09:39 | 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 166a6c3999bf06b4de0ab4ce6b088a468cc4029f
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/57
## Description:
Issue: kkos/oniguruma#57
Title: Buffer Overflow in match_at()
State: closed
Created by: lxxxxfdh
Created at: 2017-05-22 07:36:55+00:00
Issue Body:
The buffer-overflow is fou... | [
{
"content": "/oniguruma\n/fuzzer.options.*\n",
"filename": ".gitignore"
},
{
"content": "",
"filename": "fuzzer.options"
}
] | [
{
"sha": "690313a061f7a4fa614ec5cc8368b4f2284e059b",
"url": "https://github.com/kkos/oniguruma/commit/690313a061f7a4fa614ec5cc8368b4f2284e059b"
}
] |
php.cve-2016-4542 | 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=72094
## Description:
PHP Bug ID: 72094
Summary: Out of bounds heap read access in exif header processing
Status: Closed
PHP Version: 5.5.34
Assigned: stas (profile)
CVE-ID: 2016-4542
Description:
Descript... | [] | [
{
"sha": "082aecfc3a753ad03be82cf14f03ac065723ec92",
"url": "https://github.com/php/php-src/commit/082aecfc3a753ad03be82cf14f03ac065723ec92"
},
{
"sha": "c05240731",
"url": null
},
{
"sha": "c05320149",
"url": null
},
{
"sha": "c05390722",
"url": null
}
] |
libiec61850.cve-2019-16510 | mz-automation/libiec61850 | 9881d248ec85e3be61cd29d048e3553be6974b4b | 2019-03-18T11:47:51 | libiec61850 | c++ | FROM hwiwonlee/secb.base:latest
RUN git clone https://github.com/mz-automation/libiec61850 libiec61850
RUN git -C libiec61850 checkout 9881d248ec85e3be61cd29d048e3553be6974b4b
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/164
## Description:
Issue: mz-automation/libiec61850#164
Title: Heap-use-after-free in server_example_goose
State: closed
Created by: c0d3xpl0it
Created at: 2019-09-09 18:14:27+00:00... | [
{
"content": "[libfuzzer]\ndetect_leaks=0\n",
"filename": "fuzz_decode.options"
}
] | [] |
exiv2.cve-2017-17725 | 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/2) ==================
## Source: Red Hat Bugzilla
## URL: https://bugzilla.redhat.com/show_bug.cgi?id=1525055
## Description:
Bugzilla ID: 1525055
Title: exiv2 library: heap-buffer-overflow in Exiv2::getULong (types.cpp)
Description
Wei You 2017-12-12 14:36:13 UTC
Created attachment 136... | [] | [
{
"sha": "22527f0927b687804f83f1cc1ec36e2f042c9f83",
"url": "https://github.com/Exiv2/exiv2/commit/22527f0927b687804f83f1cc1ec36e2f042c9f83"
},
{
"sha": "b9b0fd1899db2e571548d04944f22a389919a8ff",
"url": "https://github.com/a17r/exiv2/commit/b9b0fd1899db2e571548d04944f22a389919a8ff"
},
{
... |
libgd.cve-2016-9933 | libgd/libgd | 73f4e0339abda6514600c0c6a633ad8c49005437 | 2016-06-03T19:11:23 | libgd | c++ | FROM hwiwonlee/secb.base:latest
RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config libz-dev
RUN apt-get install -y make autoconf automake libtool pkg-config libz-dev
RUN git clone https://github.com/libgd/libgd libgd
RUN git -C libgd checkout 73f4e0339abda6514600c0c6a633ad8c49005437
WORK... | #!/bin/bash -eu
# Minimized build script with only core build commands
set -eu
./bootstrap.sh
./configure --prefix="$WORK" --disable-shared
make -j$(nproc) install | /src/libgd | address | ================= Bug Report (1/2) ==================
## Source: PHP Bugs
## URL: https://bugs.php.net/bug.php?id=72696
## Description:
Description:
------------
Description:
------------
Invalid color causes stack exhaustion by recursive call to function gdImageFillToBorder when the image used is truecolor. This was t... | [
{
"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": "77f619d48259383628c3ec4654b1ad578e9eb40e",
"url": "https://github.com/libgd/libgd/commit/77f619d48259383628c3ec4654b1ad578e9eb40e"
},
{
"sha": "863d37ea66d5c960db08d6f4a2cbd2518f0f80d1",
"url": "https://github.com/php/php-src/commit/863d37ea66d5c960db08d6f4a2cbd2518f0f80d1"
},
{
... |
libredwg.cve-2021-28237 | libredwg/libredwg | 49aeec4ea55f7b60247af5ccbe84ed5bbf798da9 | 2021-02-26T02:49:25 | 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 49aeec4ea55f7b60247af5ccbe84ed5bbf798da9
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 --disable-bindings
make -j$(nproc) | /src/libredwg | address | ================= Bug Report (1/1) ==================
## Source: GitHub Issue
## URL: https://github.com/LibreDWG/libredwg/issues/325
## Description:
Issue: LibreDWG/libredwg#325
Title: Heap-buffer-overflow in decode_preR13 line 470
State: closed
Created by: zodf0055980
Created at: 2021-03-04 04:20:26+00:00
Labels: fuz... | [
{
"content": "[libfuzzer]\ndetect_leaks=0\n",
"filename": "llvmfuzz.options"
}
] | [
{
"sha": "ea0b9522f63d049ded2c3cff8d9a8c360119951c",
"url": "https://github.com/libredwg/libredwg/commit/ea0b9522f63d049ded2c3cff8d9a8c360119951c"
}
] |
faad2.cve-2018-20197 | 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/20
## Description:
Issue: knik0/faad2#20
Title: stack-buffer-underflow in function calculate_gain(libfaad/sbr_hfadj.c:1311)
State: closed
Created by: fantasy7082
Created at: 2018-12-17 04:11:39+00... | [] | [
{
"sha": "6b4a7cde30f2e2cb03e78ef476cc73179cfffda3",
"url": "https://github.com/knik0/faad2/commit/6b4a7cde30f2e2cb03e78ef476cc73179cfffda3"
}
] |
mruby.cve-2022-0631 | mruby/mruby | 1e314242e42932ec7146eaef87605e9ae5e91ba3 | 2022-02-16T22:07:27 | 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 1e314242e42932ec7146eaef87605e9ae5e91ba3
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/9bdc49ca-6697-4adc-a785-081e1961bf40
## Description:
Description
Heap Overflow occurs in mrb_f_send().
commit : 38b164ace7d6ae1c367883a3d67d7f559783faad
Proof of Concept
$ echo -ne "c2VuZCJzZW5kIiwic2VuZCIsInNlbmQi... | [] | [
{
"sha": "9bdc49ca",
"url": null
},
{
"sha": "47068ae07a5fa3aa9a1879cdfe98a9ce0f339299",
"url": "https://github.com/mruby/mruby/commit/47068ae07a5fa3aa9a1879cdfe98a9ce0f339299"
},
{
"sha": "38b164ace7d6ae1c367883a3d67d7f559783faad",
"url": "https://github.com/mruby/mruby/commit/38b16... |
mruby.cve-2022-1934 | mruby/mruby | af5acf3566d5732871b1dcb007aee4f474369d93 | 2022-05-29T11:16:47 | 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 af5acf3566d5732871b1dcb007aee4f474369d93
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/99e6df06-b9f7-4c53-a722-6bb89fbfb51f
## Description:
Description
Use-After-Free in function hash_new_from_values at vm.c:1167
mruby version
git log
commit ac79849fde3381e001c3274fbcdda20a5c9cb22b (HEAD -> master, o... | [] | [
{
"sha": "99e6df06",
"url": null
},
{
"sha": "aa7f98dedb68d735a1665d3a289036c88b0c47ce",
"url": "https://github.com/mruby/mruby/commit/aa7f98dedb68d735a1665d3a289036c88b0c47ce"
},
{
"sha": "ac79849fde3381e001c3274fbcdda20a5c9cb22b",
"url": "https://github.com/mruby/mruby/commit/ac798... |
mruby.cve-2022-0326 | mruby/mruby | adb16fc6dfc27a39b783782e3a12d877e71c78ac | 2022-01-20T19:51:07 | 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 adb16fc6dfc27a39b783782e3a12d877e71c78ac
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/795dcbd9-1695-44bb-8c59-ad327c97c976
## 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 31fa3304049fc406a201a72... | [] | [
{
"sha": "795dcbd9",
"url": null
},
{
"sha": "b611c43a5de061ec21b343967e1b64c45c373d7e",
"url": "https://github.com/mruby/mruby/commit/b611c43a5de061ec21b343967e1b64c45c373d7e"
}
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.