aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArjun <167687092+pkillarjun@users.noreply.github.com>2024-04-24 14:21:01 +0530
committerGitHub <noreply@github.com>2024-04-24 18:51:01 +1000
commitd570417a2ed473cd159ee0a5ae14816e506d2418 (patch)
tree46e521733ec9ef1d6020357301d273e0918f82ba
parent8709f07eca5864317232f7f194a0e569b045a5c3 (diff)
downloadoss-fuzz-d570417a2ed473cd159ee0a5ae14816e506d2418.tar.gz
[Build fix] cups, gpsd, krb5, libmodbus, ntpsec, pupnp, unit (#11820)
Hello oss-fuzz team, As I already told @jonathanmetzman, That my GitHub account '0x34d' is flagged. So i will be using this one instead. Sorry boys :) --------- Signed-off-by: Arjun <pkillarjun@protonmail.com>
-rw-r--r--projects/cups/Dockerfile2
-rw-r--r--projects/gpsd/Dockerfile2
-rw-r--r--projects/krb5/Dockerfile2
-rw-r--r--projects/libmodbus/Dockerfile2
-rw-r--r--projects/ntpsec/Dockerfile2
-rw-r--r--projects/ntpsec/fuzz/setup.c3
-rw-r--r--projects/pupnp/Dockerfile2
-rw-r--r--projects/unit/Dockerfile2
8 files changed, 10 insertions, 7 deletions
diff --git a/projects/cups/Dockerfile b/projects/cups/Dockerfile
index df7455323..e49e2c26b 100644
--- a/projects/cups/Dockerfile
+++ b/projects/cups/Dockerfile
@@ -16,7 +16,7 @@
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y autoconf libtool-bin pkg-config zlib1g-dev libavahi-client-dev libsystemd-dev
RUN git clone --depth 1 https://github.com/OpenPrinting/cups
-RUN git clone https://github.com/0x34d/oss-fuzz-bloat
+RUN git clone https://github.com/pkillarjun/oss-fuzz-bloat
COPY build.sh $SRC/
COPY fuzzer $SRC/cups/fuzzer/
WORKDIR $SRC/cups/
diff --git a/projects/gpsd/Dockerfile b/projects/gpsd/Dockerfile
index c847a2f3e..cd6498006 100644
--- a/projects/gpsd/Dockerfile
+++ b/projects/gpsd/Dockerfile
@@ -16,7 +16,7 @@
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y scons python3-distutils
RUN git clone --depth 1 https://gitlab.com/gpsd/gpsd
-RUN git clone https://github.com/0x34d/oss-fuzz-bloat
+RUN git clone https://github.com/pkillarjun/oss-fuzz-bloat
COPY build.sh $SRC/
COPY fuzzer/ $SRC/gpsd/fuzzer/
WORKDIR $SRC/gpsd/
diff --git a/projects/krb5/Dockerfile b/projects/krb5/Dockerfile
index a598ffdf1..5b8fe0d78 100644
--- a/projects/krb5/Dockerfile
+++ b/projects/krb5/Dockerfile
@@ -17,7 +17,7 @@
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y make autoconf bison flex
RUN git clone --depth 1 https://github.com/krb5/krb5
-RUN git clone https://github.com/0x34d/oss-fuzz-bloat
+RUN git clone https://github.com/pkillarjun/oss-fuzz-bloat
COPY build.sh $SRC/
COPY fuzzing/ $SRC/krb5/fuzzing/
WORKDIR $SRC/krb5/
diff --git a/projects/libmodbus/Dockerfile b/projects/libmodbus/Dockerfile
index ab20099d8..310b0fe23 100644
--- a/projects/libmodbus/Dockerfile
+++ b/projects/libmodbus/Dockerfile
@@ -17,7 +17,7 @@
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y make autoconf automake libtool libtool-bin
RUN git clone https://github.com/stephane/libmodbus.git
-RUN git clone https://github.com/0x34d/oss-fuzz-bloat.git
+RUN git clone https://github.com/pkillarjun/oss-fuzz-bloat.git
COPY build.sh $SRC/
COPY fuzz/ $SRC/libmodbus/fuzz/
WORKDIR $SRC/libmodbus/
diff --git a/projects/ntpsec/Dockerfile b/projects/ntpsec/Dockerfile
index 24889f3c3..63b79ffd6 100644
--- a/projects/ntpsec/Dockerfile
+++ b/projects/ntpsec/Dockerfile
@@ -17,7 +17,7 @@
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y autoconf automake build-essential bison libssl-dev libcap-dev libseccomp-dev libavahi-compat-libdnssd-dev pps-tools python3-dev
RUN git clone https://gitlab.com/NTPsec/ntpsec
-RUN git clone https://github.com/0x34d/oss-fuzz-bloat
+RUN git clone https://github.com/pkillarjun/oss-fuzz-bloat
COPY build.sh $SRC/
COPY fuzz/ $SRC/ntpsec/fuzz/
WORKDIR $SRC/ntpsec/
diff --git a/projects/ntpsec/fuzz/setup.c b/projects/ntpsec/fuzz/setup.c
index 08f1cd36d..fcd489904 100644
--- a/projects/ntpsec/fuzz/setup.c
+++ b/projects/ntpsec/fuzz/setup.c
@@ -18,6 +18,9 @@ limitations under the License.
const char *progname = "ntpsecfuzz";
+/* Hack to keep linker happy */
+uint16_t extra_port = 0;
+
void dns_take_server(struct peer *a, sockaddr_u *b);
void dns_take_status(struct peer *a, DNS_Status b);
diff --git a/projects/pupnp/Dockerfile b/projects/pupnp/Dockerfile
index a902257de..3a9bd3fa9 100644
--- a/projects/pupnp/Dockerfile
+++ b/projects/pupnp/Dockerfile
@@ -16,6 +16,6 @@
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y cmake
RUN git clone https://github.com/pupnp/pupnp
-RUN git clone https://github.com/0x34d/oss-fuzz-bloat
+RUN git clone https://github.com/pkillarjun/oss-fuzz-bloat
COPY build.sh $SRC/
WORKDIR $SRC/pupnp/
diff --git a/projects/unit/Dockerfile b/projects/unit/Dockerfile
index 9e9129764..7a39e7550 100644
--- a/projects/unit/Dockerfile
+++ b/projects/unit/Dockerfile
@@ -16,7 +16,7 @@
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y autoconf
RUN git clone --depth 1 https://github.com/nginx/unit
-RUN git clone https://github.com/0x34d/oss-fuzz-bloat
+RUN git clone https://github.com/pkillarjun/oss-fuzz-bloat
COPY build.sh $SRC/
COPY fuzzer/ $SRC/unit/fuzzer/
WORKDIR $SRC/unit/