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
openjpeg.cve-2016-9113
uclouvain/openjpeg
1f1e968269bbd7eaade7955892a6d8c281b91df2
2016-09-28T13:18:16
openjpeg
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make cmake g++ RUN git clone https://github.com/uclouvain/openjpeg openjpeg RUN git -C openjpeg checkout 1f1e968269bbd7eaade7955892a6d8c281b91df2 WORKDIR $SRC/openjpeg COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p build cd build cmake .. make clean -s -j$(nproc) make -j$(nproc) -s
/src/openjpeg
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/uclouvain/openjpeg/issues/856 ## Description: Issue: uclouvain/openjpeg#856 Title: NULL point dereference in function imagetobmp of convertbmp.c State: open Created by: YangY-Xiao Created at: 2016-10-29 03:21:27+00:...
[]
[]
libgit2.cve-2016-8568
libgit2/libgit2
8e268168ecfdcc8efe36b58b514d1b93ea3f47f8
2016-10-02T06:20:35
libgit2
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool cmake RUN git clone https://github.com/libgit2/libgit2 libgit2 RUN git -C libgit2 checkout 8e268168ecfdcc8efe36b58b514d1b93ea3f47f8 WORKDIR $SRC/libgit2 COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p build cd build cmake .. -DCMAKE_INSTALL_PREFIX="$WORK" \ -DBUILD_SHARED_LIBS=OFF \ -DBUILD_CLAR=OFF \ -DUSE_HTTPS=OFF \ -DUSE_SSH=OFF \ -DUSE_BUNDLED_ZLIB=ON \ make -j$(nproc) make install -j$(nproc)
/src/libgit2
address
================= Bug Report (1/2) ================== ## Source: GitHub Issue ## URL: https://github.com/libgit2/libgit2/issues/3936 ## Description: Issue: libgit2/libgit2#3936 Title: Read out-of-bounds in git_oid_nfmt State: closed Created by: gaa-cifasis Created at: 2016-09-25 20:41:14+00:00 Issue Body: Hi, We foun...
[ { "content": "#include <git2.h>\n#include <git2/sys/transport.h>\n\n#include <cstring>\n#include <cstdlib>\n#include <sys/stat.h>\n\n#include <string>\n\nstruct fuzz_buffer {\n const uint8_t *data;\n size_t size;\n};\n\nclass fuzzer_stream {\npublic:\n git_smart_subtransport_stream base;\n fuzzer_st...
[ { "sha": "327b2768749122dbe850988d6fc544054d55a2ae", "url": "https://github.com/libgit2/libgit2/commit/327b2768749122dbe850988d6fc544054d55a2ae" }, { "sha": "4974e3a59648095ffa6fce6c5b651a820c0c34b9", "url": "https://github.com/libgit2/libgit2/commit/4974e3a59648095ffa6fce6c5b651a820c0c34b9" }...
imagemagick.cve-2022-0284
imagemagick/imagemagick
40fd5dbf305e4d7b8ee268bb6f715e27843a0d2f
2022-01-19T09:34:34
imagemagick
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake groff libtool pkg-config cmake nasm autopoint po4a libc6:i386 libc6-dev:i386 RUN apt-get install -y make autoconf automake groff libtool pkg-config cmake nasm autopoint po4a libc6:i386 libc6-dev:i386 RUN git clone https://gi...
#!/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/2) ================== ## Source: GitHub Issue ## URL: https://github.com/ImageMagick/ImageMagick/issues/4729 ## Description: Issue: ImageMagick/ImageMagick#4729 Title: Heap Buffer Overflow State: closed Created by: R0fM1a Created at: 2022-01-19 07:07:49+00:00 Issue Body: ### ImageMagic...
[]
[ { "sha": "e50f19fd73c792ebe912df8ab83aa51a243a3da7", "url": "https://github.com/ImageMagick/ImageMagick/commit/e50f19fd73c792ebe912df8ab83aa51a243a3da7" }, { "sha": "f54aa4e7ba8a8fb82d200844dc59804f5f6c8cbf", "url": "https://github.com/imagemagick/imagemagick/commit/f54aa4e7ba8a8fb82d200844dc598...
gpac.cve-2022-47086
gpac/gpac
65430e30593bb04579445e77df0a1207adfad357
2022-12-19T09:13:04
gpac
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev RUN git clone https://github.com/gpac/gpac gpac RUN git -C gpac checkout 65430e30593bb04579445e77df0a1207adfad357 WORKDIR $SRC/gpac COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu ./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}" make -j$(nproc)
/src/gpac
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/gpac/gpac/issues/2337 ## Description: Issue: gpac/gpac#2337 Title: missing check in gf_sm_load_init_swf, causing Segmentation fault State: closed Created by: xidoo123 Created at: 2022-12-09 20:12:45+00:00 Issue Bod...
[]
[ { "sha": "15e3aece44f24a1c4e8cc0622c59008b1b9ab683", "url": "https://github.com/gpac/gpac/commit/15e3aece44f24a1c4e8cc0622c59008b1b9ab683" }, { "sha": "eec9e058a9486fe4e99c33021481d9e1826ca9db", "url": "https://github.com/gpac/gpac/commit/eec9e058a9486fe4e99c33021481d9e1826ca9db" } ]
gpac.cve-2022-47661
gpac/gpac
65430e30593bb04579445e77df0a1207adfad357
2022-12-19T09:13:04
gpac
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev RUN git clone https://github.com/gpac/gpac gpac RUN git -C gpac checkout 65430e30593bb04579445e77df0a1207adfad357 WORKDIR $SRC/gpac COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu ./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}" make -j$(nproc)
/src/gpac
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/gpac/gpac/issues/2358 ## Description: Issue: gpac/gpac#2358 Title: heap-buffer-overflow media_tools/av_parsers.c:4988 in gf_media_nalu_add_emulation_bytes State: closed Created by: xidoo123 Created at: 2022-12-18 10...
[]
[ { "sha": "aa8fbec874b5e040854effff5309aa445c234618", "url": "https://github.com/gpac/gpac/commit/aa8fbec874b5e040854effff5309aa445c234618" } ]
libiec61850.cve-2018-19185
mz-automation/libiec61850
6ba363bd4a4803dfb194733a9729ad421d6b49f0
2018-09-04T08:01:19
libiec61850
c++
FROM hwiwonlee/secb.base:latest RUN git clone https://github.com/mz-automation/libiec61850 libiec61850 RUN git -C libiec61850 checkout 6ba363bd4a4803dfb194733a9729ad421d6b49f0 WORKDIR $SRC/libiec61850 COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p build && cd build cmake ../ make -j$(nproc)
/src/libiec61850
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/mz-automation/libiec61850/issues/87 ## Description: Issue: mz-automation/libiec61850#87 Title: Another heap buffer overflow in function BerEncoder_encodeOctetString State: closed Created by: fouzhe Created at: 2018-...
[ { "content": "[libfuzzer]\ndetect_leaks=0\n", "filename": "fuzz_decode.options" } ]
[ { "sha": "8d728b3ab4b109deef2d889fb9fed93f57d962f2", "url": "https://github.com/mz-automation/libiec61850/commit/8d728b3ab4b109deef2d889fb9fed93f57d962f2" } ]
freerdp.cve-2023-39352
freerdp/freerdp
16047bd16f159ee4aea581854170e83c36862793
2023-08-28T07:33:09
freerdp
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y build-essential git-core cmake ninja-build pkg-config zlib1g-dev ccache libx11-dev libxext-dev libxinerama-dev libxcursor-dev libxkbfile-dev libxv-dev libxi-dev libxdamage-dev libxrender-dev libxrandr-dev libssl-dev libasound2-dev libcups2-dev lib...
#!/bin/bash -eu # Minimized build script with only core build commands set -eu -DCMAKE_C_FLAGS="${CFLAGS}" -DCMAKE_CXX_FLAGS="${CXXFLAGS}" -DCMAKE_EXE_LINKER_FLAGS="${LDFLAGS}" -DCMAKE_MODULE_LINKER_FLAGS="${LDFLAGS}" -DCMAKE_SHARED_LINKER_FLAGS="${LDFLAGS}" cmake "${cmake_args[@]}" -S . -B build -G...
/src/freerdp
address
================= Bug Report (1/1) ================== ## Source: GitHub Advisory ## URL: https://github.com/FreeRDP/FreeRDP/security/advisories/GHSA-whwr-qcf2-2mvj ## Description: Advisory ID: GHSA-whwr-qcf2-2mvj Title: Invalid offset validation leading to Out Of Bound Write Description: Summary Invalid offset validat...
[]
[ { "sha": "63a2f65618748c12f79ff7450d46c6e194f2db76", "url": "https://github.com/FreeRDP/FreeRDP/commit/63a2f65618748c12f79ff7450d46c6e194f2db76" } ]
imagemagick.cve-2019-13304
imagemagick/imagemagick
29efd648f38b73a64d73f14cd2019d869a585888
2019-06-21T19:27:29
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 29efd648f38b73a64d73f14cd2019d869a585888 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/1614 ## Description: Issue: ImageMagick/ImageMagick#1614 Title: stack-buffer-overflow at coders/pnm.c:1762 in WritePNMImage State: closed Created by: SuhwanSong Created at: 2019-06-21 ...
[]
[ { "sha": "7689875ef64f34141e7292f6945efdf0530b4a5e", "url": "https://github.com/ImageMagick/ImageMagick/commit/7689875ef64f34141e7292f6945efdf0530b4a5e" }, { "sha": "bfa3b9610c83227894c92b0d312ad327fceb6241", "url": "https://github.com/ImageMagick/ImageMagick6/commit/bfa3b9610c83227894c92b0d312a...
json-c.cve-2021-32292
json-c/json-c
9021cdcdd01fc9dbcbe1f06391848c2ac915212f
2020-07-26T10:13:45
json-c
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make cmake RUN git clone https://github.com/json-c/json-c json-c RUN git -C json-c checkout 9021cdcdd01fc9dbcbe1f06391848c2ac915212f WORKDIR $SRC/json-c COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p json-c-build cmake -DBUILD_SHARED_LIBS=OFF .. make -j$(nproc)
/src/json-c
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/json-c/json-c/issues/654 ## Description: Issue: json-c/json-c#654 Title: A stack-buffer-overflow in json_parse.c:89:44 State: closed Created by: seviezhou Created at: 2020-08-05 02:18:37+00:00 Issue Body: ## System...
[ { "content": "#include <stdint.h>\n\n#include <json.h>\n\nextern \"C\" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {\n const char *data1 = reinterpret_cast<const char *>(data);\n json_tokener *tok = json_tokener_new();\n json_object *obj = json_tokener_parse_ex(tok, data1, size);\n\n json_o...
[ { "sha": "56a89f902f360c91a80ac0c7419d2ba1aa8e8634", "url": "https://github.com/json-c/json-c/commit/56a89f902f360c91a80ac0c7419d2ba1aa8e8634" }, { "sha": "4e9e44e5258dee7654f74948b0dd5da39c28beec", "url": "https://github.com/json-c/json-c/commit/4e9e44e5258dee7654f74948b0dd5da39c28beec" }, ...
gpac.cve-2023-4758
gpac/gpac
cc95b16a6b6f85d4effc34ecd3f3ad84c808cc55
2023-08-31T04:13:02
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 cc95b16a6b6f85d4effc34ecd3f3ad84c808cc55 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/2f496261-1090-45ac-bc89-cc93c82090d6 ## 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": "2f496261", "url": null }, { "sha": "193633b1648582444fc99776cd741d7ba0125e86", "url": "https://github.com/gpac/gpac/commit/193633b1648582444fc99776cd741d7ba0125e86" }, { "sha": "941a0891b989f5ad86b739cfb12c84b7e62e8ee4", "url": "https://github.com/gpac/gpac/commit/941a0891b...
libplist.cve-2017-5545
libimobiledevice/libplist
7a28a14cf6ed547dfd2e52a4db17f47242bfdef9
2017-01-15T19:00:27
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 7a28a14cf6ed547dfd2e52a4db17f47242bfdef9 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/87 ## Description: Issue: libimobiledevice/libplist#87 Title: AddressSanitizer: heap-buffer-overflow on address 0xb5e007d7 at pc 0x804a78c bp 0xbf815888 sp 0xbf81587c State: closed C...
[]
[ { "sha": "7391a506352c009fe044dead7baad9e22dd279ee", "url": "https://github.com/libimobiledevice/libplist/commit/7391a506352c009fe044dead7baad9e22dd279ee" } ]
imagemagick.cve-2020-25663
imagemagick/imagemagick
2ac4147513fbf2ebdcad0efc707eea0cfc700401
2019-07-20T15:22: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 2ac4147513fbf2ebdcad0efc707eea0cfc700401 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/3) ================== ## Source: GitHub Issue ## URL: https://github.com/ImageMagick/ImageMagick/issues/1723 ## Description: Issue: ImageMagick/ImageMagick#1723 Title: heap-use-after-free at MagickCore/pixel-accessor.h in GetPixelRed State: closed Created by: SuhwanSong Created at: 2019-...
[]
[ { "sha": "a47e7a994766b92b10d4a87df8c1c890c8b170f3", "url": "https://github.com/ImageMagick/ImageMagick/commit/a47e7a994766b92b10d4a87df8c1c890c8b170f3" } ]
upx.cve-2020-27802
upx/upx
69ca635c4c0ba474e9ca583dbb42e3d028c4533a
2022-10-28T03:38:03
upx
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool cmake RUN git clone https://github.com/upx/upx upx RUN git -C upx checkout 69ca635c4c0ba474e9ca583dbb42e3d028c4533a WORKDIR $SRC/upx COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu sed -i 's/ \&\& __clang_major__ < 15//m' /src/upx/src/util/util.cpp mkdir -p build/debug cd build/debug cmake ../.. cmake --build . --target $fuzz_basename -v
/src/upx
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/upx/upx/issues/393 ## Description: Issue: upx/upx#393 Title: Floating point exception in PackLinuxElf32::elf_lookup State: closed Created by: giantbranch Created at: 2020-07-23 09:02:02+00:00 Issue Body: Author: gi...
[]
[ { "sha": "8d1d605b3d8c49bdfe9376454f0196738bed8166", "url": "https://github.com/upx/upx/commit/8d1d605b3d8c49bdfe9376454f0196738bed8166" }, { "sha": "9dfc8f573c44c5ba3993a53f926655091d799206", "url": "https://github.com/upx/upx/commit/9dfc8f573c44c5ba3993a53f926655091d799206" }, { "sha":...
libredwg.cve-2019-20014
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"...
libgd.cve-2021-38115
libgd/libgd
2e40f55bfb460fc9d8cbcd290a0c9eb908d5af7e
2021-03-06T13:16:01
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 2e40f55bfb460fc9d8cbcd290a0c9eb908d5af7e 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/1) ================== ## Source: GitHub Issue ## URL: https://github.com/libgd/libgd/issues/697 ## Description: Issue: libgd/libgd#697 Title: Read out of bound in TGA files State: closed Created by: meweez Created at: 2021-04-30 18:12:52+00:00 Issue Body: hello, [this issue](https://git...
[ { "content": "// Copyright 2020 Google Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required b...
[ { "sha": "8b111b2b4a4842179be66db68d84dda91a246032", "url": "https://github.com/libgd/libgd/commit/8b111b2b4a4842179be66db68d84dda91a246032" }, { "sha": "167ea1f4f0003f3e9f7ca1e586189e99cf33d47f", "url": "https://github.com/libgd/libgd/commit/167ea1f4f0003f3e9f7ca1e586189e99cf33d47f" }, { ...
libheif.cve-2023-49463
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/1042 ## Description: Issue: strukturag/libheif#1042 Title: SEGV libheif/libheif/exif.cc:88 in find_exif_tag State: closed Created by: fdu-sec Created at: 2023-11-22 09:11:42+00:00 Issue Bo...
[]
[ { "sha": "ca8b64a0007cb8e895e45301ed361624fac0b017", "url": "https://github.com/bradh/libheif/commit/ca8b64a0007cb8e895e45301ed361624fac0b017" }, { "sha": "26ec3953d46bb5756b97955661565bcbc6647abf", "url": "https://github.com/strukturag/libheif/commit/26ec3953d46bb5756b97955661565bcbc6647abf" ...
libplist.cve-2017-6435
libimobiledevice/libplist
3a5520ccce42ac145794f2195cc60e8ae855a8cb
2017-02-06T21:19:44
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 3a5520ccce42ac145794f2195cc60e8ae855a8cb 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/93 ## Description: Issue: libimobiledevice/libplist#93 Title: memory corruption bug State: closed Created by: zhunki Created at: 2017-02-07 06:56:22+00:00 Issue Body: Hi, I found a ...
[]
[ { "sha": "fbd8494d5e4e46bf2e90cb6116903e404374fb56", "url": "https://github.com/libimobiledevice/libplist/commit/fbd8494d5e4e46bf2e90cb6116903e404374fb56" } ]
xs.cve-2022-29368
moddable-opensource/moddable
249ec437002eaffea0b19134d60776d2c4564471
2022-04-11T16:40:27
moddable
c++
FROM hwiwonlee/secb.base:latest RUN apt update && apt install -yqq npm libjpeg-dev zlib1g-dev libyaml-dev RUN git clone https://github.com/moddable-opensource/moddable moddable RUN git -C moddable checkout 249ec437002eaffea0b19134d60776d2c4564471 WORKDIR $SRC/moddable COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu export MODDABLE=$PWD make -f xst.mk clean -j$(nproc)
/src/moddable
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/Moddable-OpenSource/moddable/issues/896 ## Description: Issue: Moddable-OpenSource/moddable#896 Title: Out-of-bounds Read in fxUint8Getter State: closed Created by: Q1IQ Created at: 2022-04-08 06:18:36+00:00 Labels:...
[]
[ { "sha": "135aa9a4a6a9b49b60aa730ebc3bcc6247d75c45", "url": "https://github.com/Moddable-OpenSource/moddable/commit/135aa9a4a6a9b49b60aa730ebc3bcc6247d75c45" }, { "sha": "e26597b9bf71e4d79f01cb329bd04f1562d32ddc", "url": "https://github.com/moddable-opensource/moddable/commit/e26597b9bf71e4d79f0...
libredwg.cve-2020-21818
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-572891053 ## Description: Issue: LibreDWG/libredwg#182 Title: Several bugs found by fuzzing Referenced comment by linhlhq on 2020-01-10 06:18:05+00:00: **7.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"...
openjpeg.cve-2017-14039
uclouvain/openjpeg
dcac91b8c72f743bda7dbfa9032356bc8110098a
2017-08-16T10:09:10
openjpeg
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make cmake g++ RUN git clone https://github.com/uclouvain/openjpeg openjpeg RUN git -C openjpeg checkout dcac91b8c72f743bda7dbfa9032356bc8110098a WORKDIR $SRC/openjpeg COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p build cd build cmake .. make clean -s -j$(nproc) make -j$(nproc) -s
/src/openjpeg
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/uclouvain/openjpeg/issues/992 ## Description: Issue: uclouvain/openjpeg#992 Title: heap-based buffer overflow in opj_t2_encode_packet (t2.c) State: closed Created by: asarubbo Created at: 2017-08-16 14:35:03+00:00 ...
[]
[ { "sha": "c535531f03369623b9b833ef41952c62257b507e", "url": "https://github.com/uclouvain/openjpeg/commit/c535531f03369623b9b833ef41952c62257b507e" } ]
libraw.cve-2023-1729
libraw/libraw
62f0423663f2fdfd46eedecd4690e39fa899d0a6
2023-12-14T03:02:40
libraw
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config zlib1g-dev RUN git clone https://github.com/libraw/libraw libraw RUN git -C libraw checkout 62f0423663f2fdfd46eedecd4690e39fa899d0a6 WORKDIR $SRC/libraw COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu autoreconf --install ./configure --disable-examples make -j$(nproc)
/src/libraw
address
================= Bug Report (1/2) ================== ## Source: GitHub Issue ## URL: https://github.com/LibRaw/LibRaw/issues/557 ## Description: Issue: LibRaw/LibRaw#557 Title: There exists heap-buffer-overflow when using function raw2image_ex(int) State: closed Created by: DaisyPo Created at: 2023-01-14 02:34:12+00:0...
[ { "content": "/* Copyright 2020 Google Inc.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or...
[ { "sha": "9ab70f6dca19229cb5caad7cc31af4e7501bac93", "url": "https://github.com/LibRaw/LibRaw/commit/9ab70f6dca19229cb5caad7cc31af4e7501bac93" } ]
php.cve-2019-11039
php/php-src
c34895e837b50213c2bb201c612904342d2bd216
2019-05-27T20:48:48
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 \ --without-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=78069 ## Description: PHP Bug ID: 78069 Summary: Out-of-bounds read in iconv.c:_php_iconv_mime_decode() due to integer overflow Status: Closed PHP Version: 7.1.29 Assigned: stas (profile) CVE-ID: 2019-11039...
[ { "content": "deb http://archive.ubuntu.com/ubuntu/ cosmic universe\n\n", "filename": "cosmic.list" }, { "content": "[libfuzzer]\ndetect_leaks=0", "filename": "runtime.options" } ]
[ { "sha": "53754c743b2020304a70616100000d0d0d0d0d0d", "url": "https://github.com/php/php-src/commit/53754c743b2020304a70616100000d0d0d0d0d0d" }, { "sha": "0d0d0d0d0d0d0d6563743a203d3f6973754c743b", "url": "https://github.com/php/php-src/commit/0d0d0d0d0d0d0d6563743a203d3f6973754c743b" }, { ...
libredwg.cve-2022-45332
libredwg/libredwg
93c25124c191987af168ace9fe4b5623061874bd
2022-09-05T03:19:03
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 93c25124c191987af168ace9fe4b5623061874bd 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 --enable-release make -j$(nproc)
/src/libredwg
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/LibreDWG/libredwg/issues/524 ## Description: Issue: LibreDWG/libredwg#524 Title: heap-buffer-overflow exists in the function decode_preR13_section_hdr in decode_r11.c State: closed Created by: iorra-cifer Created at...
[ { "content": "[libfuzzer]\ndetect_leaks=0\n", "filename": "llvmfuzz.options" } ]
[ { "sha": "93c25124c191987af168ace9fe4b5623061874bd", "url": "https://github.com/LibreDWG/libredwg/commit/93c25124c191987af168ace9fe4b5623061874bd" }, { "sha": "69b4132a0591b81fddd30588a67c79fc01e69c52", "url": "https://github.com/LibreDWG/libredwg/commit/69b4132a0591b81fddd30588a67c79fc01e69c52"...
gpac.cve-2022-36190
gpac/gpac
65430e30593bb04579445e77df0a1207adfad357
2022-12-19T09:13:04
gpac
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev RUN git clone https://github.com/gpac/gpac gpac RUN git -C gpac checkout 65430e30593bb04579445e77df0a1207adfad357 WORKDIR $SRC/gpac COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu ./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}" make -j$(nproc)
/src/gpac
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/gpac/gpac/issues/2220 ## Description: Issue: gpac/gpac#2220 Title: Heap Use After Free in function gf_isom_dovi_config_get State: closed Created by: Janette88 Created at: 2022-07-06 03:36:02+00:00 Issue Body: Than...
[]
[ { "sha": "fef6242c69be4f7ba22b32578e4b62648a3d4ed3", "url": "https://github.com/gpac/gpac/commit/fef6242c69be4f7ba22b32578e4b62648a3d4ed3" }, { "sha": "eec9e058a9486fe4e99c33021481d9e1826ca9db", "url": "https://github.com/gpac/gpac/commit/eec9e058a9486fe4e99c33021481d9e1826ca9db" } ]
liblouis.cve-2023-26768
liblouis/liblouis
f628d16ab5fb82160e92b07fe4d9ed96fbab325e
2022-12-05T09:04:29
liblouis
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config zlib1g-dev libpci-dev RUN git clone https://github.com/liblouis/liblouis liblouis RUN git -C liblouis checkout f628d16ab5fb82160e92b07fe4d9ed96fbab325e WORKDIR $SRC/liblouis 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/liblouis
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/liblouis/liblouis/issues/1301 ## Description: Issue: liblouis/liblouis#1301 Title: global-buffer-overflow in lou_logFile() when long filename is given State: closed Created by: Marsman1996 Created at: 2023-02-09 03:...
[]
[ { "sha": "517f6f1f35fc5c57ac2f045caa168191bdeaadde", "url": "https://github.com/liblouis/liblouis/commit/517f6f1f35fc5c57ac2f045caa168191bdeaadde" }, { "sha": "018edce262d65d99bf80ce7af5a82c0b32a898e9", "url": "https://github.com/liblouis/liblouis/commit/018edce262d65d99bf80ce7af5a82c0b32a898e9"...
gpac.cve-2019-20632
gpac/gpac
4b9c25bf88498cb8adac0ee675819eb0da1dc863
2019-06-27T05:08:02
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 4b9c25bf88498cb8adac0ee675819eb0da1dc863 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/1271 ## Description: Issue: gpac/gpac#1271 Title: SEGV on unknown addres on gf_odf_delete_descriptor State: closed Created by: strongcourage Created at: 2019-07-06 00:25:31+00:00 Issue Body: Hi, Ou...
[ { "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": "1ab4860609f2e7a35634930571e7d0531297e090", "url": "https://github.com/gpac/gpac/commit/1ab4860609f2e7a35634930571e7d0531297e090" } ]
php.cve-2016-4538
php/php-src
fc1df8e7a6886e29a6ed5bef3f674ac61164e847
2014-08-27T08:31:35
php-src
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool bison re2c make ca-certificates curl xz-utils dpkg-dev file libc-dev pkg-config libcurl4-openssl-dev libedit-dev libsqlite3-dev libssl-dev zlib1g-dev RUN git clone https://github.com/php/php-src php-src RUN git -C ph...
#!/bin/bash -eu # Minimized build script with only core build commands set -eu ./buildconf --force ./configure \ --enable-option-checking=fatal \ --disable-libxml \ --disable-dom \ --disable-simplexml \ --disable-xml \ --disable-xmlreader \ --disable-xmlwriter \ ...
/src/php-src
address
================= Bug Report (1/1) ================== ## Source: PHP Bugs ## URL: https://bugs.php.net/bug.php?id=72093 ## Description: PHP Bug ID: 72093 Summary: bcpowmod accepts negative scale and corrupts _one_ definition Status: Closed PHP Version: 5.5.34 Assigned: stas (profile) CVE-ID: 2016-4537 Description: Des...
[]
[ { "sha": "d650063a0457aec56364e4005a636dc6c401f9cd", "url": "https://github.com/php/php-src/commit/d650063a0457aec56364e4005a636dc6c401f9cd" }, { "sha": "c05240731", "url": null }, { "sha": "c05320149", "url": null }, { "sha": "c05390722", "url": null } ]
libredwg.cve-2021-39530
libredwg/libredwg
aee0ea1f52ef9603b981362c83b3fec324ebb199
2020-07-30T12:58:51
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 aee0ea1f52ef9603b981362c83b3fec324ebb199 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/258 ## Description: Issue: LibreDWG/libredwg#258 Title: Heap overflow due to incomplete fix for issues #255 State: closed Created by: seviezhou Created at: 2020-08-02 02:25:59+00:00 Labels: ...
[ { "content": "[libfuzzer]\ndetect_leaks=0\n", "filename": "fuzz_dwg_decode.options" } ]
[ { "sha": "39ef9439f35111170258cf57cc0c58eabc4748c7", "url": "https://github.com/LibreDWG/libredwg/commit/39ef9439f35111170258cf57cc0c58eabc4748c7" }, { "sha": "dac8fcc4be1007ccf4412ae5e90303e335fdb412", "url": "https://github.com/LibreDWG/libredwg/commit/dac8fcc4be1007ccf4412ae5e90303e335fdb412"...
imagemagick.cve-2019-13305
imagemagick/imagemagick
e92040ea6ee2a844ebfd2344174076795a4787bd
2019-06-21T19:17:04
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 e92040ea6ee2a844ebfd2344174076795a4787bd 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/1613 ## Description: Issue: ImageMagick/ImageMagick#1613 Title: stack-buffer-overflow at coders/pnm.c:1906 in WritePNMImage State: closed Created by: SuhwanSong Created at: 2019-06-2...
[]
[ { "sha": "29efd648f38b73a64d73f14cd2019d869a585888", "url": "https://github.com/ImageMagick/ImageMagick/commit/29efd648f38b73a64d73f14cd2019d869a585888" }, { "sha": "5c7fbf9a14fb83c9685ad69d48899f490a37609d", "url": "https://github.com/ImageMagick/ImageMagick6/commit/5c7fbf9a14fb83c9685ad69d4889...
libredwg.cve-2021-39527
libredwg/libredwg
aee0ea1f52ef9603b981362c83b3fec324ebb199
2020-07-30T12:58:51
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 aee0ea1f52ef9603b981362c83b3fec324ebb199 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/252 ## Description: Issue: LibreDWG/libredwg#252 Title: A heap buffer overflow in appinfo_private at decode.c:2993 State: closed Created by: seviezhou Created at: 2020-07-31 08:58:03+00:00 L...
[ { "content": "[libfuzzer]\ndetect_leaks=0\n", "filename": "fuzz_dwg_decode.options" } ]
[ { "sha": "aee0ea1f52ef9603b981362c83b3fec324ebb199", "url": "https://github.com/LibreDWG/libredwg/commit/aee0ea1f52ef9603b981362c83b3fec324ebb199" }, { "sha": "966beb52036960d2634c0b7429b875c819172b9d", "url": "https://github.com/LibreDWG/libredwg/commit/966beb52036960d2634c0b7429b875c819172b9d"...
imagemagick.cve-2017-11533
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/562 ## Description: Issue: ImageMagick/ImageMagick#562 Title: heap-overflow in WriteUILImage() State: closed Created by: lcatro Created at: 2017-07-16 13:53:44+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": "f0c29cc251578fe0ad8ec7b72f2487a77a1696b8", "url": "https://github.com/ImageMagick/ImageMagick/commit/f0c29cc251578fe0ad8ec7b72f2487a77a1696b8" }, { "sha": "ed1fd69231ab21dc540167c63bc3b0fa3282ec59", "url": "https://github.com/ImageMagick/ImageMagick/commit/ed1fd69231ab21dc540167c63bc3b...
libredwg.cve-2022-33034
libredwg/libredwg
f2dea296a0a3bb16afdae8d2ca16749a617a4383
2022-05-16T00:52: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 f2dea296a0a3bb16afdae8d2ca16749a617a4383 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 --enable-release make -j$(nproc)
/src/libredwg
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/LibreDWG/libredwg/issues/494 ## Description: Issue: LibreDWG/libredwg#494 Title: stack-buffer-overflow exists in the function copy_bytes in decode_r2007.c State: closed Created by: cxlzff Created at: 2022-06-08 01:5...
[ { "content": "[libfuzzer]\ndetect_leaks=0\n", "filename": "llvmfuzz.options" } ]
[]
libredwg.cve-2020-21842
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-574493684 ## Description: Issue: LibreDWG/libredwg#188 Title: Several bugs found by fuzzing Referenced comment by linhlhq on 2020-01-15 04:44:30+00:00: **14.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"...
libsass.cve-2018-11696
sass/libsass
1e52b74306b7d73a617396c912ca436dc55fd4d8
2018-04-25T00:47:16
libsass
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool RUN git clone https://github.com/sass/libsass libsass RUN git -C libsass checkout 1e52b74306b7d73a617396c912ca436dc55fd4d8 WORKDIR $SRC/libsass COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu export BUILD='static' make -j$(nproc)
/src/libsass
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/sass/libsass/issues/2665 ## Description: Issue: sass/libsass#2665 Title: AddressSanitizer: null pointer dereference (SEGV) in Sass::Inspect::operator (libsass/src/inspect.cpp:1060:9) State: closed Created by: glen-m...
[ { "content": "#include \"sass.h\"\n\nextern \"C\" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {\n char* sass_data = (char*) malloc(sizeof(char) * size + 1);\n if (sass_data == NULL) return 0;\n\n memcpy(sass_data, data, size);\n sass_data[size] = '\\0';\n\n struct Sass_Data_Context* ctx = ...
[ { "sha": "aa6d5c635ea8faf44d542a23aaf85d27e5777d48", "url": "https://github.com/sass/sassc/commit/aa6d5c635ea8faf44d542a23aaf85d27e5777d48" }, { "sha": "60f839158eff1f1bb84cb44f0f0c4bce3ed86a6d", "url": "https://github.com/sass/libsass/commit/60f839158eff1f1bb84cb44f0f0c4bce3ed86a6d" }, { ...
libiec61850.cve-2023-27772
mz-automation/libiec61850
76fd58e9be880cb9306b5f497dd4614e7353156e
2023-02-22T10:44:06
libiec61850
c++
FROM hwiwonlee/secb.base:latest RUN git clone https://github.com/mz-automation/libiec61850 libiec61850 RUN git -C libiec61850 checkout 76fd58e9be880cb9306b5f497dd4614e7353156e 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/442 ## Description: Issue: mz-automation/libiec61850#442 Title: SEGV in function ControlObjectClient_setOrigin() State: closed Created by: LancyRiver Created at: 2023-02-23 15:10:23+...
[ { "content": "[libfuzzer]\ndetect_leaks=0\n", "filename": "fuzz_decode.options" } ]
[ { "sha": "79a8eaf26070e02044afc4b2ffbfe777dfdf3e0b", "url": "https://github.com/mz-automation/libiec61850/commit/79a8eaf26070e02044afc4b2ffbfe777dfdf3e0b" } ]
gpac.cve-2023-0358
gpac/gpac
7e2cb01002056bde1b66062f83010f0d30a79bdb
2023-01-17T16:02:40
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 7e2cb01002056bde1b66062f83010f0d30a79bdb 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/93e128ed-253f-4c42-81ff-fbac7fd8f355 ## Description: Description heap-use-after-free in gf_odf_vvc_cfg_read_bs at odf/descriptors.c:1403 Version Author: Lim Wei Cheng <aaron.lim446@gmail.com> ./MP4Box -version MP4...
[]
[ { "sha": "93e128ed", "url": null }, { "sha": "9971fb125cf91cefd081a080c417b90bbe4a467b", "url": "https://github.com/gpac/gpac/commit/9971fb125cf91cefd081a080c417b90bbe4a467b" } ]
gpac.cve-2019-20631
gpac/gpac
4b9c25bf88498cb8adac0ee675819eb0da1dc863
2019-06-27T05:08:02
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 4b9c25bf88498cb8adac0ee675819eb0da1dc863 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/1270 ## Description: Issue: gpac/gpac#1270 Title: SEGV on unknown address on gf_list_count State: closed Created by: strongcourage Created at: 2019-07-06 00:11:01+00:00 Issue Body: Hi, Our fuzzer f...
[ { "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": "1ab4860609f2e7a35634930571e7d0531297e090", "url": "https://github.com/gpac/gpac/commit/1ab4860609f2e7a35634930571e7d0531297e090" } ]
opencv.cve-2017-1000450
opencv/opencv
e8357c0544c82beda237defc0abc90ee28992ee7
2017-07-19T10:38:08
opencv
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y build-essential cmake pkg-config RUN git clone https://github.com/opencv/opencv opencv RUN git -C opencv checkout e8357c0544c82beda237defc0abc90ee28992ee7 WORKDIR $SRC/opencv COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p opencv/build cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=$WORK \ -DBUILD_SHARED_LIBS=OFF -DOPENCV_GENERATE_PKGCONFIG=ON \ -DOPENCV_GENERATE_PKGCONFIG=ON -DOPENCV_FORCE_3RDPARTY_BUILD=ON .. make -j$(nproc) make inst...
/src/opencv
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/opencv/opencv/issues/9723 ## Description: Issue: opencv/opencv#9723 Title: Out of bounds write causes Segmentation Fault State: closed Created by: blendin Created at: 2017-09-26 22:19:03+00:00 Labels: bug, category:...
[ { "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": "b959684848be21a6380d5e0d1474ccd49654c4e2", "url": "https://github.com/opencv/opencv/commit/b959684848be21a6380d5e0d1474ccd49654c4e2" }, { "sha": "c58152d94ba878b2d7d76bcac59146312199b9eb", "url": "https://github.com/opencv/opencv/commit/c58152d94ba878b2d7d76bcac59146312199b9eb" } ]
libredwg.cve-2020-21816
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-572890865 ## Description: Issue: LibreDWG/libredwg#182 Title: Several bugs found by fuzzing Referenced comment by linhlhq on 2020-01-10 06:17:18+00:00: **2.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"...
php.cve-2019-9021
php/php-src
05fb10165081cb4fb55a9943b44cab62c627db7a
2019-01-09T02:57:53
php-src
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool bison re2c make ca-certificates curl xz-utils dpkg-dev file libc-dev pkg-config libcurl4-openssl-dev libedit-dev libsqlite3-dev libssl-dev zlib1g-dev RUN git clone https://github.com/php/php-src php-src RUN git -C ph...
#!/bin/bash -eu # Minimized build script with only core build commands set -eu ./buildconf --force ./configure \ --enable-option-checking=fatal \ --disable-libxml \ --disable-dom \ --disable-simplexml \ --disable-xml \ --disable-xmlreader \ --disable-xmlwriter \ ...
/src/php-src
address
================= Bug Report (1/1) ================== ## Source: PHP Bugs ## URL: https://bugs.php.net/bug.php?id=77247 ## Description: PHP Bug ID: 77247 Summary: heap buffer overflow in phar_detect_phar_fname_ext Status: Closed PHP Version: 5.6.39 Assigned: stas (profile) CVE-ID: 2019-9021 Description: Description: -...
[]
[ { "sha": "fd7a753db928db9c8b65d0fc37df08b40d846a4c", "url": "https://github.com/php/php-src/commit/fd7a753db928db9c8b65d0fc37df08b40d846a4c" } ]
wabt.cve-2023-27117
webassembly/wabt
c32fa597218dbe2c25b43a9837a8475b493ddb71
2022-05-04T09:41:06
wabt
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y cmake libtool make python RUN git clone https://github.com/webassembly/wabt wabt RUN git -C wabt checkout c32fa597218dbe2c25b43a9837a8475b493ddb71 WORKDIR $SRC/wabt COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p build cd build cmake .. cmake --build .
/src/wabt
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/WebAssembly/wabt/issues/1989 ## Description: Issue: WebAssembly/wabt#1989 Title: heap overflow in wabt::Node::operator=(wabt::Node&&) State: open Created by: Q1IQ Created at: 2022-09-05 13:30:58+00:00 Labels: saniti...
[ { "content": "// Copyright 2019 Google LLC\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by...
[ { "sha": "3054d61f703d609995798f872fc86b462617c294", "url": "https://github.com/webassembly/wabt/commit/3054d61f703d609995798f872fc86b462617c294" } ]
gpac.cve-2023-46929
gpac/gpac
3809955065afa3da1ad580012ec43deadbb0f2c8
2023-10-26T04:21:33
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 3809955065afa3da1ad580012ec43deadbb0f2c8 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/2662 ## Description: Issue: gpac/gpac#2662 Title: SEGV in MP4Box in gf_avc_change_vui /afltest/gpac/src/media_tools/av_parsers.c:6872:55 State: closed Created by: Frank-Z7 Created at: 2023-10-24 08:...
[]
[ { "sha": "4248def5d24325aeb0e35cacde3d56c9411816a6", "url": "https://github.com/1480c1/gpac/commit/4248def5d24325aeb0e35cacde3d56c9411816a6" } ]
libsass.cve-2018-11697
sass/libsass
1e52b74306b7d73a617396c912ca436dc55fd4d8
2018-04-25T00:47:16
libsass
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool RUN git clone https://github.com/sass/libsass libsass RUN git -C libsass checkout 1e52b74306b7d73a617396c912ca436dc55fd4d8 WORKDIR $SRC/libsass COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu export BUILD='static' make -j$(nproc)
/src/libsass
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/sass/libsass/issues/2656 ## Description: Issue: sass/libsass#2656 Title: AddressSanitizer: heap-buffer-overflow (OOB read) in Sass::Prelexer::exactly (libsass/src/lexer.hpp:93:14) State: closed Created by: glen-mac ...
[ { "content": "#include \"sass.h\"\n\nextern \"C\" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {\n char* sass_data = (char*) malloc(sizeof(char) * size + 1);\n if (sass_data == NULL) return 0;\n\n memcpy(sass_data, data, size);\n sass_data[size] = '\\0';\n\n struct Sass_Data_Context* ctx = ...
[ { "sha": "aa6d5c635ea8faf44d542a23aaf85d27e5777d48", "url": "https://github.com/sass/sassc/commit/aa6d5c635ea8faf44d542a23aaf85d27e5777d48" }, { "sha": "60f839158eff1f1bb84cb44f0f0c4bce3ed86a6d", "url": "https://github.com/sass/libsass/commit/60f839158eff1f1bb84cb44f0f0c4bce3ed86a6d" }, { ...
gpac.cve-2020-11558
gpac/gpac
fb8d9dc0607a84d385e94566783e147e0153d6d1
2020-03-26T12:53: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 fb8d9dc0607a84d385e94566783e147e0153d6d1 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/1440 ## Description: Issue: gpac/gpac#1440 Title: 3 UAF bugs in box_funcs.c State: closed Created by: strongcourage Created at: 2020-03-24 17:16:05+00:00 Issue Body: Thanks for reporting your issue...
[ { "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": "6063b1a011c3f80cee25daade18154e15e4c058c", "url": "https://github.com/gpac/gpac/commit/6063b1a011c3f80cee25daade18154e15e4c058c" }, { "sha": "74e5eb4fbf987228f2ed68eaaea70f0631bf7b70", "url": "https://github.com/gpac/gpac/commit/74e5eb4fbf987228f2ed68eaaea70f0631bf7b70" }, { "s...
libredwg.cve-2020-21817
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#issue-547887727 ## Description: Issue: LibreDWG/libredwg#182 Title: Several bugs found by fuzzing State: closed Created by: linhlhq Created at: 2020-01-10 06:17:10+00:00 Labels: bug, fuz...
[ { "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"...
libplist.cve-2017-6438
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/98 ## Description: Issue: libimobiledevice/libplist#98 Title: heap-buffer-overflow in parse_unicode_node State: closed Created by: zhunki Created at: 2017-02-24 08:24:43+00:00 Issue...
[]
[ { "sha": "dccd9290745345896e3a4a73154576a599fd8b7b", "url": "https://github.com/libimobiledevice/libplist/commit/dccd9290745345896e3a4a73154576a599fd8b7b" } ]
exiv2.cve-2018-10999
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/306 ## Description: Issue: Exiv2/exiv2#306 Title: heap-buffer-overflow on Exiv2::Internal::PngChunk::parseTXTChunk State: closed Created by: legend-issue Created at: 2018-05-10 09:43:16+00:00 Iss...
[]
[ { "sha": "838dee762254bb6258f371aec9bc269edf1081ae", "url": "https://github.com/Exiv2/exiv2/commit/838dee762254bb6258f371aec9bc269edf1081ae" } ]
gpac.cve-2020-22352
gpac/gpac
6b4ab401297be43b57f9eddd675971a8a5feab44
2019-06-27T05:20:45
gpac
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev RUN git clone https://github.com/gpac/gpac gpac RUN git -C gpac checkout 6b4ab401297be43b57f9eddd675971a8a5feab44 WORKDIR $SRC/gpac COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu ./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}" make -j$(nproc)
/src/gpac
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/gpac/gpac/issues/1423 ## Description: Issue: gpac/gpac#1423 Title: AddressSanitizer: NULL pointer dereference in media_tools/dash_segmenter.c:5264 in gf_dash_segmenter_probe_input State: closed Created by: dr3dd589 ...
[ { "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": "e90526f3d2ec0dee4cddc5244eb115668f10341f", "url": "https://github.com/gpac/gpac/commit/e90526f3d2ec0dee4cddc5244eb115668f10341f" }, { "sha": "eec9e058a9486fe4e99c33021481d9e1826ca9db", "url": "https://github.com/gpac/gpac/commit/eec9e058a9486fe4e99c33021481d9e1826ca9db" } ]
libsndfile.cve-2018-13139
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/397 ## Description: Issue: erikd/libsndfile#397 Title: stack-buffer-overflow in psf_memset in libsndfile-master/src/common.c:1229 State: closed Created by: 92wyunchao Created at: 2018-07-03 0...
[]
[ { "sha": "df18323c622b54221ee7ace74b177cdcccc152d7", "url": "https://github.com/libsndfile/libsndfile/commit/df18323c622b54221ee7ace74b177cdcccc152d7" }, { "sha": "aaea680337267bfb6d2544da878890ee7f1c5077", "url": "https://github.com/libsndfile/libsndfile/commit/aaea680337267bfb6d2544da878890ee7...
mruby.cve-2022-1286
mruby/mruby
c30e6ebe1200962d37751255ca489defd96819d6
2022-04-09T03:16:12
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 c30e6ebe1200962d37751255ca489defd96819d6 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/f918376e-b488-4113-963d-ffe8716e4189 ## Description: Affected commit: 3cf291f72224715942beaf8553e42ba8891ab3c6 Proof of Concept v10 = 0 v15 = "" v16 = [] srand(1337) v20 = protected_methods.fill(){|| v20 = Array.i...
[]
[ { "sha": "b1d0296a937fe278239bdfac840a3fd0e93b3ee9", "url": "https://github.com/mruby/mruby/commit/b1d0296a937fe278239bdfac840a3fd0e93b3ee9" } ]
libredwg.cve-2023-25222
libredwg/libredwg
24cea42a1a2e96d2a6028a4d9f9ea1e7574af77f
2022-02-06T13:02: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 24cea42a1a2e96d2a6028a4d9f9ea1e7574af77f 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 --enable-release make -j$(nproc)
/src/libredwg
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/LibreDWG/libredwg/issues/615 ## Description: Issue: LibreDWG/libredwg#615 Title: heap-buffer-overflow in function bit_read_RC at bits.c:320 State: closed Created by: JieyongMa Created at: 2023-01-30 08:00:12+00:00 L...
[ { "content": "[libfuzzer]\ndetect_leaks=0\n", "filename": "llvmfuzz.options" } ]
[ { "sha": "3c90dc6641e11e486666940d7f354d2df54503d6", "url": "https://github.com/libredwg/libredwg/commit/3c90dc6641e11e486666940d7f354d2df54503d6" }, { "sha": "ae09b9b7b51bda4a719279a6ade6dadeaf5ef39f", "url": "https://github.com/LibreDWG/libredwg/commit/ae09b9b7b51bda4a719279a6ade6dadeaf5ef39f"...
qpdf.cve-2024-24246
qpdf/qpdf
3b97c9bd266b7c32ea36d3536e22dab77412886d
2024-02-24T09:38:04
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 3b97c9bd266b7c32ea36d3536e22dab77412886d 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=1 -DENABLE_SHARED=0 -DCMAKE_POSITION_INDEPENDENT_CODE=1 make -j$(nproc)
/src/qpdf
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/qpdf/qpdf/issues/1123 ## Description: Issue: qpdf/qpdf#1123 Title: qpdf11.9.0 found a heap-buffer-overflow crash State: closed Created by: Crspidey Created at: 2024-01-15 02:29:15+00:00 Labels: bug, next Issue Bod...
[]
[ { "sha": "fa125da5d70621daf7141c6279877c97708c8c1f", "url": "https://github.com/qpdf/qpdf/commit/fa125da5d70621daf7141c6279877c97708c8c1f" }, { "sha": "664cfd11a0c13de292e64a1ffb8b064941573168", "url": "https://github.com/jberkenbilt/qpdf/commit/664cfd11a0c13de292e64a1ffb8b064941573168" }, {...
gpac.cve-2021-32437
gpac/gpac
00194f5fe462123f70b0bae7987317b52898b868
2021-04-30T03:50:38
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 00194f5fe462123f70b0bae7987317b52898b868 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/1770 ## Description: Issue: gpac/gpac#1770 Title: Null pointer dereference in function gf_hinter_finalize isom_hinter.c:1236 State: closed Created by: JsHuang Created at: 2021-04-30 08:10:59+00:00 ...
[]
[ { "sha": "1653f31cf874eb6df964bea88d58d8e9b98b485e", "url": "https://github.com/gpac/gpac/commit/1653f31cf874eb6df964bea88d58d8e9b98b485e" } ]
upx.cve-2020-27799
upx/upx
69ca635c4c0ba474e9ca583dbb42e3d028c4533a
2022-10-28T03:38:03
upx
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool cmake RUN git clone https://github.com/upx/upx upx RUN git -C upx checkout 69ca635c4c0ba474e9ca583dbb42e3d028c4533a WORKDIR $SRC/upx COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu sed -i 's/ \&\& __clang_major__ < 15//m' /src/upx/src/util/util.cpp mkdir -p build/debug cd build/debug cmake ../.. cmake --build . --target $fuzz_basename -v
/src/upx
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/upx/upx/issues/391 ## Description: Issue: upx/upx#391 Title: Heap buffer overflow in acc_ua_get_be32() State: closed Created by: giantbranch Created at: 2020-07-23 08:13:04+00:00 Issue Body: Author: giantbranch of ...
[]
[ { "sha": "8764fdc24c31c21dc43b2a2f99eb8c48a34e5e9c", "url": "https://github.com/upx/upx/commit/8764fdc24c31c21dc43b2a2f99eb8c48a34e5e9c" }, { "sha": "4e2fdb464a885c694408552c31739cb04b77bdcf", "url": "https://github.com/upx/upx/commit/4e2fdb464a885c694408552c31739cb04b77bdcf" } ]
wasm3.cve-2022-28990
wasm3/wasm3
6b8bcb1e07bf26ebef09a7211b0a37a446eafd52
2021-06-02T05:40:14
wasm3
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make RUN git clone https://github.com/wasm3/wasm3 wasm3 RUN git -C wasm3 checkout 6b8bcb1e07bf26ebef09a7211b0a37a446eafd52 WORKDIR $SRC/wasm3 COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p build && cd build cmake -DBUILD_WASI=none .. make -j$(nproc)
/src/wasm3
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/wasm3/wasm3/issues/323 ## Description: Issue: wasm3/wasm3#323 Title: Heap Overflow in WASI read/write API State: closed Created by: ha1vk Created at: 2022-04-07 17:45:08+00:00 Issue Body: the WASI API which uses io...
[]
[ { "sha": "b8921b341d0d4a18f72f4d42caa9be839021c0b4", "url": "https://github.com/wasm3/wasm3/commit/b8921b341d0d4a18f72f4d42caa9be839021c0b4" } ]
libsass.cve-2022-26592
sass/libsass
f6afdbb9288d20d1257122e71d88e53348a53af3
2021-05-20T19:33:02
libsass
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool RUN git clone https://github.com/sass/libsass libsass RUN git -C libsass checkout f6afdbb9288d20d1257122e71d88e53348a53af3 WORKDIR $SRC/libsass COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu export BUILD='static' make -j$(nproc)
/src/libsass
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/sass/libsass/issues/3174 ## Description: Issue: sass/libsass#3174 Title: AddressSanitizer: stack-overflow on address 0x7ffff3e46ff8 (pc 0x7f13120dddd5 bp 0x615000000be8 sp 0x7ffff3e47000 T0) State: closed Created b...
[ { "content": "#include \"sass.h\"\n\nextern \"C\" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {\n char* sass_data = (char*) malloc(sizeof(char) * size + 1);\n if (sass_data == NULL) return 0;\n\n memcpy(sass_data, data, size);\n sass_data[size] = '\\0';\n\n struct Sass_Data_Context* ctx = ...
[ { "sha": "5bb0ea0c4b2ebebe542933f788ffacba459a717a", "url": "https://github.com/sass/libsass/commit/5bb0ea0c4b2ebebe542933f788ffacba459a717a" }, { "sha": "2102188d21d2b7577c2b3edb12832e90786a2831", "url": "https://github.com/sass/libsass/commit/2102188d21d2b7577c2b3edb12832e90786a2831" } ]
gpac.cve-2024-0321
gpac/gpac
d2de8b5ea35e714d9a1a1dfada5313701070998f
2023-10-17T08:51: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 d2de8b5ea35e714d9a1a1dfada5313701070998f 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/4c027b94-8e9c-4c31-a169-893b25047769 ## Description: Description stack-buffer-overflow in gf_text_get_utf8_line at filters/load_text.c:381. #Version git log commit 7edc40feef23efd8c9948292d269eae76fa475af (HEAD -> ...
[]
[ { "sha": "4c027b94", "url": null }, { "sha": "d0ced41651b279bb054eb6390751e2d4eb84819a", "url": "https://github.com/gpac/gpac/commit/d0ced41651b279bb054eb6390751e2d4eb84819a" }, { "sha": "7edc40feef23efd8c9948292d269eae76fa475af", "url": "https://github.com/gpac/gpac/commit/7edc40fee...
libarchive.cve-2017-14503
libarchive/libarchive
98a695399e8e7420635a5448aecde8b0a82fb83a
2017-07-09T21:38:04
libarchive
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config libbz2-dev liblzo2-dev liblzma-dev liblz4-dev libz-dev libxml2-dev libssl-dev libacl1-dev libattr1-dev RUN git clone https://github.com/libarchive/libarchive libarchive RUN git -C libarchive checkout 98a69...
#!/bin/bash -eu # Minimized build script with only core build commands set -eu ./configure make -j$(nproc) all
/src/libarchive
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/libarchive/libarchive/issues/948 ## Description: Issue: libarchive/libarchive#948 Title: out-of-bounds read in lha_read_data_none() State: closed Created by: carnil Created at: 2017-09-16 18:50:05+00:00 Issue Body:...
[ { "content": "// Copyright 2016 Google Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required b...
[ { "sha": "5562545b5562f6d12a4ef991fae158bf4ccf92b6", "url": "https://github.com/libarchive/libarchive/commit/5562545b5562f6d12a4ef991fae158bf4ccf92b6" }, { "sha": "2c8c83b9731ff822fad6cc8c670ea5519c366a14", "url": "https://github.com/libarchive/libarchive/commit/2c8c83b9731ff822fad6cc8c670ea5519...
imagemagick.cve-2019-16709
imagemagick/imagemagick
224159dfcc0ae3da9a247921e3c8bfb44d39965e
2019-03-24T14:36:20
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 224159dfcc0ae3da9a247921e3c8bfb44d39965e 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/1531 ## Description: Issue: ImageMagick/ImageMagick#1531 Title: memory leaks in XCreateImage State: closed Created by: butterflyhack Created at: 2019-03-27 08:51:13+00:00 Labels: bug ...
[]
[ { "sha": "f391a5f4554fe47eb56d6277ac32d1f698572f0e", "url": "https://github.com/ImageMagick/ImageMagick/commit/f391a5f4554fe47eb56d6277ac32d1f698572f0e" }, { "sha": "13801f5d0bd7a6fdb119682d34946636afdb2629", "url": "https://github.com/ImageMagick/ImageMagick6/commit/13801f5d0bd7a6fdb119682d3494...
gpac.cve-2023-0760
gpac/gpac
8db20cb634a546c536c31caac94e1f74b778b463
2023-02-07T11:27:19
gpac
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev RUN git clone https://github.com/gpac/gpac gpac RUN git -C gpac checkout 8db20cb634a546c536c31caac94e1f74b778b463 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/d06223df-a473-4c82-96d0-23726b844b21 ## Description: Description Heap Buffer Overflow in function gf_isom_box_size at src/isomedia/box_funcs.c:1997 gpac version git log commit bbca869177585aaca8eb66d8541079e6f36479...
[]
[ { "sha": "ea7395f39f601a7750d48d606e9d10ea0b7beefe", "url": "https://github.com/gpac/gpac/commit/ea7395f39f601a7750d48d606e9d10ea0b7beefe" }, { "sha": "d06223df", "url": null }, { "sha": "bbca869177585aaca8eb66d8541079e6f364798e", "url": "https://github.com/gpac/gpac/commit/bbca86917...
yaml-cpp.cve-2018-20574
jbeder/yaml-cpp
562aefc114938e388457e6a531ed7b54d9dc1b62
2018-03-05T22:56:23
yaml-cpp
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make cmake RUN apt-get install -y make cmake RUN git clone https://github.com/jbeder/yaml-cpp yaml-cpp RUN git -C yaml-cpp checkout 562aefc114938e388457e6a531ed7b54d9dc1b62 WORKDIR $SRC/yaml-cpp COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p build cd build cmake -DCMAKE_BUILD_TYPE=Release .. make -j4
/src/yaml-cpp
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/jbeder/yaml-cpp/issues/654 ## Description: Issue: jbeder/yaml-cpp#654 Title: Stack Overflow in SingleDocParser::HandleFlowMap() State: closed Created by: E4ck Created at: 2018-12-28 07:51:02+00:00 Issue Body: Stack...
[]
[ { "sha": "562aefc114938e388457e6a531ed7b54d9dc1b62", "url": "https://github.com/jbeder/yaml-cpp/commit/562aefc114938e388457e6a531ed7b54d9dc1b62" }, { "sha": "d8934a4358100028dcae487360c19bd59b685a04", "url": "https://github.com/jbeder/yaml-cpp/commit/d8934a4358100028dcae487360c19bd59b685a04" }...
njs.cve-2022-43285
nginx/njs
d493f891f8f80a5474932ab14f6e397ef5463092
2022-05-24T11:07:58
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 d493f891f8f80a5474932ab14f6e397ef5463092 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/533 ## Description: Issue: nginx/njs#533 Title: SEGV in njs_promise_reaction_job State: closed Created by: Asuk4 Created at: 2022-06-03 10:51:52+00:00 Labels: bug, fuzzer Issue Body: #### Environme...
[]
[ { "sha": "d09868bc71f9a990445959329ad8c1b10d3898f5", "url": "https://github.com/nginx/njs/commit/d09868bc71f9a990445959329ad8c1b10d3898f5" }, { "sha": "e55edc62c7b01dd40440efa8e418799376ec6fe5", "url": "https://github.com/nginx/njs/commit/e55edc62c7b01dd40440efa8e418799376ec6fe5" } ]
libxls.cve-2023-38856
libxls/libxls
448240067919707eb95fb009f76f3fdb439b1427
2021-01-03T22:31:47
libxls
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf autoconf-archive automake gettext libtool RUN git clone https://github.com/libxls/libxls libxls RUN git -C libxls checkout 448240067919707eb95fb009f76f3fdb439b1427 WORKDIR $SRC/libxls COPY build.sh $SRC/
# Minimized build script with only core build commands set -eu ./bootstrap ./configure --enable-static make clean -j$(nproc) make -j$(nproc) make fuzz_xls -j$(nproc)
/src/libxls
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/libxls/libxls/issues/124 ## Description: Issue: libxls/libxls#124 Title: There are multiple heap-buffer-overflow vulnerability found in libxls State: closed Created by: mondaylord Created at: 2023-07-13 06:31:34+00:...
[]
[ { "sha": "8b025da4c5073b3038257e1c5d2dd3c704bb1e00", "url": "https://github.com/gaborcsardi/libxls/commit/8b025da4c5073b3038257e1c5d2dd3c704bb1e00" }, { "sha": "c009fa87fc775f8cc63e85d2018223143cb200e6", "url": "https://github.com/libxls/libxls/commit/c009fa87fc775f8cc63e85d2018223143cb200e6" ...
njs.cve-2022-31307
nginx/njs
982100ba56798dfc487ec9d792ce91916e14c5cc
2022-04-26T18:07:06
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 982100ba56798dfc487ec9d792ce91916e14c5cc 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/482 ## Description: Issue: nginx/njs#482 Title: SEGV njs_string.c:2535:18 in njs_string_offset State: closed Created by: Q1IQ Created at: 2022-03-02 11:46:11+00:00 Labels: bug, fuzzer Issue Body: #...
[]
[ { "sha": "eafe4c7a326b163612f10861392622b5da5b1792", "url": "https://github.com/nginx/njs/commit/eafe4c7a326b163612f10861392622b5da5b1792" }, { "sha": "f65981b0b8fcf02d69a40bc934803c25c9f607ab", "url": "https://github.com/nginx/njs/commit/f65981b0b8fcf02d69a40bc934803c25c9f607ab" } ]
njs.cve-2019-12208
nginx/njs
615a52fb5736f6320f49b92ddf23849703b64ef6
2019-04-16T09:30:11
njs
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool mercurial libpcre3-dev libreadline-dev RUN git clone https://github.com/nginx/njs njs RUN git -C njs checkout 615a52fb5736f6320f49b92ddf23849703b64ef6 WORKDIR $SRC/njs COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu ./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/163 ## Description: Issue: nginx/njs#163 Title: heap-buffer-overflow in njs_function_native_call njs/njs_function.c:623 State: closed Created by: wrauner Created at: 2019-05-20 08:30:18+00:00 Labels...
[ { "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": "1f4c515f74a71df9d0a40bb786cce7467f0a904e", "url": "https://github.com/nginx/njs/commit/1f4c515f74a71df9d0a40bb786cce7467f0a904e" }, { "sha": "6fb662600f028c2207ba7925523037f92cf1807a", "url": "https://github.com/nginx/njs/commit/6fb662600f028c2207ba7925523037f92cf1807a" } ]
cyclonedds.cve-2020-18735
eclipse-cyclonedds/cyclonedds
1c7f9035469e53a7bade1353669c1637436fb410
2019-02-19T03:27:17
cyclonedds
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt install -y autoconf automake libssl-dev libcunit1 libcunit1-dev bison libbison-dev RUN git clone https://github.com/eclipse-cyclonedds/cyclonedds cyclonedds RUN git -C cyclonedds checkout 1c7f9035469e53a7bade1353669c1637436fb410 WORKDIR $SRC/cyclonedds COPY buil...
#!/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/cyclonedds
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/eclipse-cyclonedds/cyclonedds/issues/501 ## Description: Issue: eclipse-cyclonedds/cyclonedds#501 Title: Heap-buffer-overflow was found at ./src/core/ddsc/src/dds_stream.c:310:9 State: closed Created by: luckyzfl Cr...
[]
[ { "sha": "3067a69c92715a19861f13302639d5a9a8943f38", "url": "https://github.com/eclipse-cyclonedds/cyclonedds/commit/3067a69c92715a19861f13302639d5a9a8943f38" }, { "sha": "23fe452", "url": "https://github.com/eclipse-cyclonedds/cyclonedds/commit/23fe452" } ]
mruby.cve-2022-0623
mruby/mruby
ecb28f4bf463483cf914c799d086b0cfff997aee
2022-02-14T02:34:28
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 ecb28f4bf463483cf914c799d086b0cfff997aee 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/5b908ac7-d8f1-4fcd-9355-85df565f7580 ## Description: Description commit 4e8ab145da52c3cfb0bd4b823df8041dcc52f454 Author: Yukihiro "Matz" Matsumoto matz@ruby.or.jp Date: Tue Feb 8 13:03:51 2022 +0900 Proof of Concep...
[]
[ { "sha": "5b908ac7", "url": null }, { "sha": "ff3a5ebed6ffbe3e70481531cfb969b497aa73ad", "url": "https://github.com/mruby/mruby/commit/ff3a5ebed6ffbe3e70481531cfb969b497aa73ad" }, { "sha": "4e8ab145da52c3cfb0bd4b823df8041dcc52f454", "url": "https://github.com/mruby/mruby/commit/4e8ab...
yara.cve-2017-5923
virustotal/yara
5a8f180d372eace8293c8a3bb60e133bbf502458
2017-01-17T11:23:09
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 5a8f180d372eace8293c8a3bb60e133bbf502458 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/597 ## Description: Issue: VirusTotal/yara#597 Title: Heap out of bounds read in yara_yyparse() State: closed Created by: fumfel Created at: 2017-01-23 11:29:59+00:00 Issue Body: **Heap out o...
[]
[ { "sha": "ab906da53ff2a68c6fd6d1fa73f2b7c7bf0bc636", "url": "https://github.com/virustotal/yara/commit/ab906da53ff2a68c6fd6d1fa73f2b7c7bf0bc636" }, { "sha": "5a8f180d372eace8293c8a3bb60e133bbf502458", "url": "https://github.com/virustotal/yara/commit/5a8f180d372eace8293c8a3bb60e133bbf502458" }...
gpac.cve-2018-21016
gpac/gpac
440d475f133038824dab08292b2e592ecd0e10b4
2017-04-26T06:33:17
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 440d475f133038824dab08292b2e592ecd0e10b4 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/1180 ## Description: Issue: gpac/gpac#1180 Title: AddressSanitizer: heap-buffer-overflow in audio_sample_entry_AddBox() at box_code_base.c:3934 State: closed Created by: Marsman1996 Created at: 2018...
[ { "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": "ea13945f3c2dc2c21e30e2731bf2782384307a13", "url": "https://github.com/gpac/gpac/commit/ea13945f3c2dc2c21e30e2731bf2782384307a13" } ]
imagemagick.cve-2018-5248
imagemagick/imagemagick
c9d4c4ecd1f7fb5168e512a0ba183b4bf8b47ce3
2017-12-27T09:12:40
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 c9d4c4ecd1f7fb5168e512a0ba183b4bf8b47ce3 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/927 ## Description: Issue: ImageMagick/ImageMagick#927 Title: heap-buffer-overflow in sixel_decode State: closed Created by: littleputa Created at: 2018-01-04 01:25:57+00:00 Labels: bu...
[ { "content": "#include <cstdint>\n\n#include <Magick++/Blob.h>\n#include <Magick++/Image.h>\n\nextern \"C\" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {\n uint16_t Width;\n uint16_t Height;\n if (Size < (sizeof(Width) + sizeof(Height))) {\n return 0;\n }\n Width = *reinterpret_cast<con...
[ { "sha": "c76434c16b5ac8861ee0c5d5c3ab8974fae3d624", "url": "https://github.com/ImageMagick/ImageMagick/commit/c76434c16b5ac8861ee0c5d5c3ab8974fae3d624" }, { "sha": "0272305f91763b5ce119a2c7a0e0084d8241a58d", "url": "https://github.com/ImageMagick/ImageMagick/commit/0272305f91763b5ce119a2c7a0e00...
yara.cve-2016-10210
virustotal/yara
d68cd32fabb0b7703ada455dfa5b38ef03132907
2017-01-17T10:06:09
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 d68cd32fabb0b7703ada455dfa5b38ef03132907 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/576 ## Description: Issue: VirusTotal/yara#576 Title: Null Pointer Dereference in yy_get_next_buffer() State: closed Created by: fumfel Created at: 2016-12-06 09:18:57+00:00 Issue Body: **Nul...
[]
[ { "sha": "3119b232c9c453c98d8fa8b6ae4e37ba18117cd4", "url": "https://github.com/VirusTotal/yara/commit/3119b232c9c453c98d8fa8b6ae4e37ba18117cd4" }, { "sha": "779b9a77aa4377152a5cba031255029afb0c19a5", "url": "https://github.com/virustotal/yara/commit/779b9a77aa4377152a5cba031255029afb0c19a5" }...
opencv.cve-2017-12862
opencv/opencv
e8357c0544c82beda237defc0abc90ee28992ee7
2017-07-19T10:38:08
opencv
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y build-essential cmake pkg-config RUN git clone https://github.com/opencv/opencv opencv RUN git -C opencv checkout e8357c0544c82beda237defc0abc90ee28992ee7 WORKDIR $SRC/opencv COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p opencv/build cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=$WORK \ -DBUILD_SHARED_LIBS=OFF -DOPENCV_GENERATE_PKGCONFIG=ON \ -DOPENCV_GENERATE_PKGCONFIG=ON -DOPENCV_FORCE_3RDPARTY_BUILD=ON .. make -j$(nproc) make inst...
/src/opencv
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/opencv/opencv/issues/9370 ## Description: Issue: opencv/opencv#9370 Title: AutoBuffer_heap_overflow in grfmt_pxm.cpp State: closed Created by: scdeny Created at: 2017-08-15 06:14:56+00:00 Labels: bug, category: imgc...
[ { "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": "0d854db361106dfcb055231fd0112c5b85ef2287", "url": "https://github.com/opencv/opencv/commit/0d854db361106dfcb055231fd0112c5b85ef2287" } ]
frr.cve-2022-26126
frrouting/frr
f72b987de1d4897919902b96559c8fd4da58b366
2021-10-05T14:30:45
frr
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y git autoconf automake libtool make libreadline-dev texinfo libjson-c-dev pkg-config bison flex python3-pip libc-ares-dev python3-dev python3-sphinx build-essential libsystemd-dev libsnmp-dev libcap-dev libelf-dev libpcre3-dev libpcre2-dev RUN git ...
#!/bin/bash -eu # Minimized build script with only core build commands set -eu cd $SRC/libyang mkdir -p build; cd build cmake -DBUILD_SHARED_LIBS=OFF -DENABLE_LYD_PRIV=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr \ -D CMAKE_BUILD_TYPE:String="Release" .. make -j$(nproc) make install -j$(nproc) export ASAN_OPTIONS=detect_lea...
/src/frr
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/FRRouting/frr/issues/10505 ## Description: Issue: FRRouting/frr#10505 Title: isisd: misusing strdup leads to stack overflow State: closed Created by: whichbug Created at: 2022-02-05 05:11:16+00:00 Labels: triage Is...
[]
[ { "sha": "eef8006341e85d80d0a3c21a642ced3b73a42375", "url": "https://github.com/frrouting/frr/commit/eef8006341e85d80d0a3c21a642ced3b73a42375" }, { "sha": "a7109ead9660d079854d3f4e7eafdaf59159b9ce", "url": "https://github.com/whichbug/frr/commit/a7109ead9660d079854d3f4e7eafdaf59159b9ce" }, {...
php.cve-2017-11144
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=74651 ## Description: PHP Bug ID: 74651 Summary: negative-size-param (-1) in memcpy in zif_openssl_seal() Status: Closed PHP Version: 7.0.21 Assigned: stas (profile) CVE-ID: 2017-11144 Description: Descrip...
[]
[ { "sha": "73cabfedf519298e1a11192699f44d53c529315e", "url": null }, { "sha": "89637c6b41b510c20d262c17483f582f115c66d6", "url": null }, { "sha": "91826a311dd37f4c4e5d605fa7af331e80ddd4c3", "url": null }, { "sha": "9bb6f82958537b9ab5ec8fe44c762f448d4a59d8", "url": "https:/...
gpac.cve-2023-41000
gpac/gpac
b34e3851670f4398a4e2efcb86b30a8b07743212
2023-04-24T07:57:53
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 b34e3851670f4398a4e2efcb86b30a8b07743212 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/2550 ## Description: Issue: gpac/gpac#2550 Title: Null Pointer Dereference in function BS_ReadByte State: closed Created by: xiaoxiaoafeifei Created at: 2023-08-08 07:09:38+00:00 Issue Body: - [Y ]...
[]
[ { "sha": "69389d485a9793dbe873f0ea2c93e02efaa9aa3d", "url": "https://github.com/gpac/gpac/commit/69389d485a9793dbe873f0ea2c93e02efaa9aa3d" }, { "sha": "b4d8f1db695ed5d11720498d0e1dbdb36eaf06af", "url": "https://github.com/gpac/gpac/commit/b4d8f1db695ed5d11720498d0e1dbdb36eaf06af" }, { "s...
njs.cve-2022-29379
nginx/njs
222d6fdcf0c6485ec8e175f3a7b70d650c234b4e
2022-03-28T11:22:17
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 222d6fdcf0c6485ec8e175f3a7b70d650c234b4e 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/2) ================== ## Source: GitHub Issue ## URL: https://github.com/nginx/njs/issues/493 ## Description: Issue: nginx/njs#493 Title: [Fixed] njs 0.7.3 was discovered to contain a stack-buffer-overflow bug in njs_default_module_loader State: closed Created by: salmonx Created at: 202...
[]
[ { "sha": "ab1702c7af9959366a5ddc4a75b4357d4e9ebdc1", "url": "https://github.com/nginx/njs/commit/ab1702c7af9959366a5ddc4a75b4357d4e9ebdc1" }, { "sha": "2ff8b264830da18528d6655b0e0654414cae9272", "url": "https://github.com/nginx/njs/commit/2ff8b264830da18528d6655b0e0654414cae9272" }, { "s...
gpac.cve-2023-2839
gpac/gpac
c88df2e202efad214c25b4e586f243b2038779ba
2023-05-22T10:40:44
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 c88df2e202efad214c25b4e586f243b2038779ba 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/42dce889-f63d-4ea9-970f-1f20fc573d5f ## Description: Environment Distributor ID: Debian Description: Debian GNU/Linux bookworm/sid Release: n/a Codename: bookworm Version I checked against the latest releas...
[]
[ { "sha": "42dce889", "url": null }, { "sha": "047f96fb39e6bf70cb9f344093f5886e51dce0ac", "url": "https://github.com/gpac/gpac/commit/047f96fb39e6bf70cb9f344093f5886e51dce0ac" }, { "sha": "a6ae93532ea5615c876c81a6580badbfa01d4383", "url": "https://github.com/gpac/gpac/commit/a6ae93532...
imagemagick.cve-2017-17884
imagemagick/imagemagick
ddbf0ed10323d0fb329189041190630a8f7af5a7
2017-12-25T07:15:39
imagemagick
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool RUN git clone https://github.com/imagemagick/imagemagick imagemagick RUN git -C imagemagick checkout ddbf0ed10323d0fb329189041190630a8f7af5a7 WORKDIR $SRC/imagemagick COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu ./configure --prefix="$WORK" --disable-shared --disable-docs make "-j$(nproc)" make install -j$(nproc)
/src/imagemagick
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/ImageMagick/ImageMagick/issues/902 ## Description: Issue: ImageMagick/ImageMagick#902 Title: memory leaks in WriteOnePNGImage State: closed Created by: henices Created at: 2017-12-19 07:22:34+00:00 Labels: bug Issu...
[ { "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": "4d6accd355119d54429a86a1859b8329f0130f30", "url": "https://github.com/ImageMagick/ImageMagick/commit/4d6accd355119d54429a86a1859b8329f0130f30" }, { "sha": "82f20a898107a9c1ef6ad2024c4b191719b294ea", "url": "https://github.com/ImageMagick/ImageMagick/commit/82f20a898107a9c1ef6ad2024c4b1...
gpac.cve-2021-36414
gpac/gpac
d8538e8ae946b32d99c6b2c57cbb327146e9cd9d
2020-09-10T11:38:49
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 d8538e8ae946b32d99c6b2c57cbb327146e9cd9d 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/1840 ## Description: Issue: gpac/gpac#1840 Title: heap buffer overflow issue with gpac MP4Box State: closed Created by: dhbbb Created at: 2021-07-05 12:32:43+00:00 Issue Body: Hello, A heap-buffer...
[ { "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": "6007c7145eb0fcd29fe05b6e5983a065b42c6b21", "url": "https://github.com/gpac/gpac/commit/6007c7145eb0fcd29fe05b6e5983a065b42c6b21" } ]
libredwg.cve-2020-21840
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-574493513 ## Description: Issue: LibreDWG/libredwg#188 Title: Several bugs found by fuzzing Referenced comment by linhlhq on 2020-01-15 04:43:38+00:00: **12. heap-buffer-ov...
[ { "content": "[libfuzzer]\ndetect_leaks=0\n", "filename": "fuzz_dwg_decode.options" } ]
[ { "sha": "6757b07c65742277ae2ff5c9fe32157195726258", "url": "https://github.com/LibreDWG/libredwg/commit/6757b07c65742277ae2ff5c9fe32157195726258" }, { "sha": "d447393a30df70531215e17baa609be5609c8614", "url": "https://github.com/LibreDWG/libredwg/commit/d447393a30df70531215e17baa609be5609c8614"...
w3m.cve-2016-9630
tats/w3m
8d2c4e9ec6ca3fb268dfe1e4eca72c45daeee2c7
2016-10-31T06:34:44
w3m
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y libgc-dev RUN git clone https://github.com/tats/w3m w3m RUN git -C w3m checkout 8d2c4e9ec6ca3fb268dfe1e4eca72c45daeee2c7 WORKDIR $SRC/w3m COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu ./configure make myctype.o -j$(nproc) make Str.o -j$(nproc) make libwc -j$(nproc)
/src/w3m
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/tats/w3m/issues/41 ## Description: Issue: tats/w3m#41 Title: global-buffer-overflow in parseURL() State: closed Created by: kcwu Created at: 2016-11-17 05:21:37+00:00 Issue Body: input ``` 00000000: 3c41 2068 7265 ...
[]
[ { "sha": "ba9d78faeba9024c3e8840579c3b0e959ae2cb0f", "url": "https://github.com/tats/w3m/commit/ba9d78faeba9024c3e8840579c3b0e959ae2cb0f" }, { "sha": "62de166f5531faae1e4ac36de32e27d566d4beb9", "url": "https://github.com/tats/w3m/commit/62de166f5531faae1e4ac36de32e27d566d4beb9" } ]
php.cve-2024-11233
php/php-src
a001ad33f07d9dcfb604436db3bf532e4b52e7d3
2024-11-18T09:56:00
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 a001ad33f07d9dcfb604436db3bf532e4b52e7d3 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: GitHub Advisory ## URL: https://github.com/php/php-src/security/advisories/GHSA-r977-prxv-hc43 ## Description: Advisory ID: GHSA-r977-prxv-hc43 Title: Single byte overread with convert.quoted-printable-decode filter Description: Summary A memory-related ...
[]
[ { "sha": "712b3d4fbdcb978a011679cd1c90ada321af14cf", "url": "https://github.com/php/php-src/commit/712b3d4fbdcb978a011679cd1c90ada321af14cf" } ]
gpac.cve-2020-22675
gpac/gpac
6b4ab401297be43b57f9eddd675971a8a5feab44
2019-06-27T05:20:45
gpac
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev RUN git clone https://github.com/gpac/gpac gpac RUN git -C gpac checkout 6b4ab401297be43b57f9eddd675971a8a5feab44 WORKDIR $SRC/gpac COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu ./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}" make -j$(nproc)
/src/gpac
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/gpac/gpac/issues/1344 ## Description: Issue: gpac/gpac#1344 Title: There is a heap-buffer-overflow in the GetGhostNum function of stbl_read.c:369 State: closed Created by: gutiniao Created at: 2019-11-13 05:18:43+00...
[ { "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": "5aa8c4bbd970a3a77517b00528a596063efca1a9", "url": "https://github.com/gpac/gpac/commit/5aa8c4bbd970a3a77517b00528a596063efca1a9" }, { "sha": "eec9e058a9486fe4e99c33021481d9e1826ca9db", "url": "https://github.com/gpac/gpac/commit/eec9e058a9486fe4e99c33021481d9e1826ca9db" } ]
libgd.cve-2016-7568
libgd/libgd
0423df113159fb6fd0db3b4b31ad13392d4d6421
2016-09-15T16:36:49
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 0423df113159fb6fd0db3b4b31ad13392d4d6421 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=73003 ## Description: Description: ------------ PHP VERSION ----------------------- ./sapi/cli/php --version PHP 7.2.0-dev (cli) (built: Sep 2 2016 18:11:16) ( NTS ) Copyright (c) 1997-2016 The PHP Group Z...
[ { "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": "40bec0f38f50e8510f5bb71a82f516d46facde03", "url": "https://github.com/libgd/libgd/commit/40bec0f38f50e8510f5bb71a82f516d46facde03" }, { "sha": "c18263e0e0769faee96a5d0ee04b750c442783c6", "url": "https://github.com/php/php-src/commit/c18263e0e0769faee96a5d0ee04b750c442783c6" }, { ...
imagemagick.cve-2017-12642
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/552 ## Description: Issue: ImageMagick/ImageMagick#552 Title: memory leak in ReadMPCImage State: closed Created by: jgj212 Created at: 2017-07-09 01:39:20+00:00 Labels: bug Issue Bod...
[ { "content": "#include <cstdint>\n\n#include <Magick++/Blob.h>\n#include <Magick++/Image.h>\n\nextern \"C\" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {\n uint16_t Width;\n uint16_t Height;\n if (Size < (sizeof(Width) + sizeof(Height))) {\n return 0;\n }\n Width = *reinterpret_cast<con...
[ { "sha": "dc447a2c3cf8a4de8023b0d12c0768d5222e2cb2", "url": "https://github.com/ImageMagick/ImageMagick/commit/dc447a2c3cf8a4de8023b0d12c0768d5222e2cb2" }, { "sha": "562d584a31fe5883cd0a93741026263fd0e8a232", "url": "https://github.com/ImageMagick/ImageMagick/commit/562d584a31fe5883cd0a937410262...
php.cve-2016-10161
php/php-src
b28b8b2fee6dfa6fcd13305c581bb835689ac3be
2016-12-30T17:57:24
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=73825 ## Description: PHP Bug ID: 73825 Summary: Heap out of bounds read on unserialize in finish_nested_data() Status: Closed PHP Version: 5.6.29 Assigned: stas (profile) CVE-ID: 2016-10161 Description: D...
[]
[ { "sha": "16b3003ffc6393e250f069aa28a78dc5a2c064b2", "url": "https://github.com/php/php-src/commit/16b3003ffc6393e250f069aa28a78dc5a2c064b2" } ]
libgd.cve-2016-5116
libgd/libgd
b083ec17ad9cba4ad9fe7fac1c6a168d90dd1a31
2016-05-14T00:01:44
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 b083ec17ad9cba4ad9fe7fac1c6a168d90dd1a31 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/1) ================== ## Source: GitHub Issue ## URL: https://github.com/libgd/libgd/issues/211 ## Description: Issue: libgd/libgd#211 Title: gdCtxPrintf vsnprintf return value not checked - leaks stack memory State: closed Created by: fmunozs Created at: 2016-05-13 05:35:49+00:00 Labels...
[ { "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": "4dc1a2d7931017d3625f2d7cff70a17ce58b53b4", "url": "https://github.com/libgd/libgd/commit/4dc1a2d7931017d3625f2d7cff70a17ce58b53b4" } ]
matio.cve-2019-9036
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" }, { ...
openjpeg.cve-2024-56827
uclouvain/openjpeg
4ec0aca4d733a852186bbce82e58043095a372d4
2024-11-13T09:37:30
openjpeg
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make cmake g++ RUN git clone https://github.com/uclouvain/openjpeg openjpeg RUN git -C openjpeg checkout 4ec0aca4d733a852186bbce82e58043095a372d4 WORKDIR $SRC/openjpeg COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p build cd build cmake -DCMAKE_BUILD_TYPE=Release .. make clean -s -j$(nproc) make -j$(nproc) -s
/src/openjpeg
address
================= Bug Report (1/2) ================== ## Source: Red Hat Bugzilla ## URL: https://bugzilla.redhat.com/show_bug.cgi?id=2335174 ## Description: Bugzilla ID: 2335174 Title: CVE-2024-56827 openjpeg: heap buffer overflow in lib/openjp2/j2k.c Description OSIDB Bzimport 2025-01-01 17:04:49 UTC This bug is tri...
[]
[ { "sha": "e492644fbded4c820ca55b5e50e598d346e850e8", "url": "https://github.com/uclouvain/openjpeg/commit/e492644fbded4c820ca55b5e50e598d346e850e8" }, { "sha": "490fef8403240c91833978d494d39e537409b92e", "url": "https://github.com/uclouvain/openjpeg/commit/490fef8403240c91833978d494d39e537409b92...
matio.cve-2019-9031
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" }, { ...
libredwg.cve-2023-36274
libredwg/libredwg
24cea42a1a2e96d2a6028a4d9f9ea1e7574af77f
2022-02-06T13:02: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 24cea42a1a2e96d2a6028a4d9f9ea1e7574af77f 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 --enable-release make -j$(nproc)
/src/libredwg
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/LibreDWG/libredwg/issues/677#BUG2 ## Description: Issue: LibreDWG/libredwg#677 Title: [FUZZ] two bugs in dwg2dxf State: closed Created by: kdsjZh Created at: 2023-03-30 04:10:56+00:00 Labels: fuzzing Issue Body: H...
[ { "content": "[libfuzzer]\ndetect_leaks=0\n", "filename": "llvmfuzz.options" } ]
[ { "sha": "77a85621de6e2c7ea44bc48c02e52dac97778ecb", "url": "https://github.com/libredwg/libredwg/commit/77a85621de6e2c7ea44bc48c02e52dac97778ecb" }, { "sha": "9df4ec3c524795a401acf371c8a953f5b1a6fadf", "url": "https://github.com/libredwg/libredwg/commit/9df4ec3c524795a401acf371c8a953f5b1a6fadf"...
libiec61850.cve-2018-18834
mz-automation/libiec61850
6ba363bd4a4803dfb194733a9729ad421d6b49f0
2018-09-04T08:01:19
libiec61850
c++
FROM hwiwonlee/secb.base:latest RUN git clone https://github.com/mz-automation/libiec61850 libiec61850 RUN git -C libiec61850 checkout 6ba363bd4a4803dfb194733a9729ad421d6b49f0 WORKDIR $SRC/libiec61850 COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p build && cd build cmake ../ make -j$(nproc)
/src/libiec61850
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/mz-automation/libiec61850/issues/81 ## Description: Issue: mz-automation/libiec61850#81 Title: Heap buffer overflow in function BerEncoder_encodeOctetString State: closed Created by: fouzhe Created at: 2018-10-29 15...
[ { "content": "[libfuzzer]\ndetect_leaks=0\n", "filename": "fuzz_decode.options" } ]
[ { "sha": "8d728b3ab4b109deef2d889fb9fed93f57d962f2", "url": "https://github.com/mz-automation/libiec61850/commit/8d728b3ab4b109deef2d889fb9fed93f57d962f2" } ]
gpac.cve-2020-22679
gpac/gpac
6b4ab401297be43b57f9eddd675971a8a5feab44
2019-06-27T05:20:45
gpac
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev RUN git clone https://github.com/gpac/gpac gpac RUN git -C gpac checkout 6b4ab401297be43b57f9eddd675971a8a5feab44 WORKDIR $SRC/gpac COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu ./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}" make -j$(nproc)
/src/gpac
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/gpac/gpac/issues/1345 ## Description: Issue: gpac/gpac#1345 Title: There are memory leaks in the sgpd_parse_entry function of box_code_base.c:9656 State: closed Created by: gutiniao Created at: 2019-11-13 05:25:14+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": "eec9e058a9486fe4e99c33021481d9e1826ca9db", "url": "https://github.com/gpac/gpac/commit/eec9e058a9486fe4e99c33021481d9e1826ca9db" } ]
openexr.cve-2020-16589
academysoftwarefoundation/openexr
c04673810a86ba050d809da42339aeb7129fc910
2019-07-25T04:00:28
openexr
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make autoconf automake libtool zlib1g-dev RUN git clone https://github.com/academysoftwarefoundation/openexr openexr RUN git -C openexr checkout c04673810a86ba050d809da42339aeb7129fc910 WORKDIR $SRC/openexr COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu cmake $SRC/openexr ${CMAKE_SETTINGS[@]} make -j$(nproc)
/src/openexr
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/AcademySoftwareFoundation/openexr/issues/494 ## Description: Issue: AcademySoftwareFoundation/openexr#494 Title: SEGV exrmakepreview in ImfTiledOutputFile.cpp:458 State: closed Created by: strongcourage Created at: ...
[ { "content": "// Copyright 2020 Google LLC\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by...
[ { "sha": "6bb36714528a9563dd3b92720c5063a1284b86f8", "url": "https://github.com/AcademySoftwareFoundation/openexr/commit/6bb36714528a9563dd3b92720c5063a1284b86f8" }, { "sha": "a6512959ac823ac89027ef373deff6f386920bb9", "url": "https://github.com/peterhillman/openexr/commit/a6512959ac823ac89027ef...
gpac.cve-2020-23928
gpac/gpac
ce01bd15f711d4575b7424b54b3a395ec64c1784
2020-09-01T10:05:02
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 ce01bd15f711d4575b7424b54b3a395ec64c1784 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/2) ================== ## Source: GitHub Issue ## URL: https://github.com/gpac/gpac/issues/1568 ## Description: Issue: gpac/gpac#1568 Title: A heap-buffer-overflow in box_code_adobe.c:124 State: closed Created by: seviezhou Created at: 2020-08-07 04:41:36+00:00 Issue Body: ## System info...
[ { "content": "/* Copyright 2021 Google LLC\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n http://www.apache.org/licenses/LICENSE-2.0\nUnless required by applicable law or agreed ...
[ { "sha": "8e05648d6b4459facbc783025c5c42d301fef5c3", "url": "https://github.com/gpac/gpac/commit/8e05648d6b4459facbc783025c5c42d301fef5c3" }, { "sha": "2aa266dfaab6aaad9f9f4f216ad7d1e62adc7fa0", "url": "https://github.com/gpac/gpac/commit/2aa266dfaab6aaad9f9f4f216ad7d1e62adc7fa0" } ]
libyang.cve-2023-26916
cesnet/libyang
a0cc89516ab5eca84d01c85309f320a94752a64c
2022-03-15T05:38:42
libyang
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y autoconf automake libtool subversion RUN git clone https://github.com/cesnet/libyang libyang RUN git -C libyang checkout a0cc89516ab5eca84d01c85309f320a94752a64c WORKDIR $SRC/libyang COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu sed -i 's/add_subdirectory/#add_subdirectory/g' ./tools/CMakeLists.txt mkdir -p build && cd build cmake ../ -DENABLE_STATIC=ON make -j$(nproc)
/src/libyang
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/CESNET/libyang/issues/1979 ## Description: Issue: CESNET/libyang#1979 Title: `lys_implement`: NULL pointer dereference via `lys_parse_mem` State: closed Created by: thonsun Created at: 2023-02-11 09:30:34+00:00 Labe...
[]
[ { "sha": "7fb621a3b64179d326e4322e6edaa5ae0d9ca840", "url": "https://github.com/cesnet/libyang/commit/7fb621a3b64179d326e4322e6edaa5ae0d9ca840" }, { "sha": "4f8d352eaeecedd6c288232cd8b5218c8ac2ad92", "url": "https://github.com/CESNET/libyang/commit/4f8d352eaeecedd6c288232cd8b5218c8ac2ad92" }, ...
libredwg.cve-2021-39521
libredwg/libredwg
aee0ea1f52ef9603b981362c83b3fec324ebb199
2020-07-30T12:58:51
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 aee0ea1f52ef9603b981362c83b3fec324ebb199 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/262 ## Description: Issue: LibreDWG/libredwg#262 Title: A Segmentation fault in bits.c:186 State: closed Created by: seviezhou Created at: 2020-08-03 14:19:33+00:00 Labels: bug, fuzzing Iss...
[ { "content": "[libfuzzer]\ndetect_leaks=0\n", "filename": "fuzz_dwg_decode.options" } ]
[ { "sha": "bacd01778d20b7b79f28541ea7a60cafe25175aa", "url": "https://github.com/LibreDWG/libredwg/commit/bacd01778d20b7b79f28541ea7a60cafe25175aa" }, { "sha": "66a3484bda00ff5af2bdb79e41db3b066fdd0d00", "url": "https://github.com/libredwg/libredwg/commit/66a3484bda00ff5af2bdb79e41db3b066fdd0d00"...
openjpeg.cve-2018-7648
uclouvain/openjpeg
564fbfb67830e2eb234bc16b3db8fecf54261f95
2018-02-25T12:59:18
openjpeg
c++
FROM hwiwonlee/secb.base:latest RUN apt-get update && apt-get install -y make cmake g++ RUN git clone https://github.com/uclouvain/openjpeg openjpeg RUN git -C openjpeg checkout 564fbfb67830e2eb234bc16b3db8fecf54261f95 WORKDIR $SRC/openjpeg COPY build.sh $SRC/
#!/bin/bash -eu # Minimized build script with only core build commands set -eu mkdir -p build cd build cmake .. make clean -s -j$(nproc) make -j$(nproc) -s
/src/openjpeg
address
================= Bug Report (1/1) ================== ## Source: GitHub Issue ## URL: https://github.com/uclouvain/openjpeg/issues/1088 ## Description: Issue: uclouvain/openjpeg#1088 Title: sprintf buffer overflow State: closed Created by: setharnold Created at: 2018-02-22 01:09:33+00:00 Issue Body: https://github.com...
[]
[ { "sha": "cc3824767bde397fedb8a1ae4786a222ba860c8d", "url": "https://github.com/rouault/openjpeg/commit/cc3824767bde397fedb8a1ae4786a222ba860c8d" }, { "sha": "06f7d412435ddb62f8e9935af7e306783bc4b75b", "url": "https://github.com/uclouvain/openjpeg/commit/06f7d412435ddb62f8e9935af7e306783bc4b75b"...
exiv2.cve-2018-11037
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/307 ## Description: Issue: Exiv2/exiv2#307 Title: SEGV on Exiv2::PngImage::printStructure State: closed Created by: legend-issue Created at: 2018-05-13 07:00:35+00:00 Issue Body: ```jsx STRUCTURE...
[]
[ { "sha": "bb2019149ae2b6f226e8d6be5f5828898b455a03", "url": "https://github.com/exiv2/exiv2/commit/bb2019149ae2b6f226e8d6be5f5828898b455a03" }, { "sha": "c80b1b9d51689692bc865f1a1d16bf7fd2a532c4", "url": "https://github.com/exiv2/exiv2/commit/c80b1b9d51689692bc865f1a1d16bf7fd2a532c4" } ]
gpac.cve-2020-35980
gpac/gpac
a4eb327049132359cae54b59faec9e2f14c5a619
2021-01-04T05:04:18
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 a4eb327049132359cae54b59faec9e2f14c5a619 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/1661 ## Description: Issue: gpac/gpac#1661 Title: AddressSanitizer: heap-use-after-free in gf_isom_box_del isomedia/box_funcs.c:1696 State: closed Created by: Clingto Created at: 2020-12-15 12:01:23...
[ { "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": "5aba27604d957e960d8069d85ccaf868f8a7b07a", "url": "https://github.com/gpac/gpac/commit/5aba27604d957e960d8069d85ccaf868f8a7b07a" } ]