This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gitlab-rails runner -e production "puts Gitlab::CurrentSettings.current_application_settings.runners_registration_token" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:20.04 | |
WORKDIR /app | |
RUN apt clean && rm -rf /var/lib/apt/lists/* && apt update -o Acquire::CompressionTypes::Order::=gz | |
RUN apt -y install wget build-essential tar gcc | |
RUN wget https://dl.xpdfreader.com/old/xpdf-3.02.tar.gz | |
RUN tar -xvzf xpdf-3.02.tar.gz | |
RUN cd xpdf-3.02 && \ | |
./configure --prefix="/app/fuzzing_xpdf/install/" && \ | |
make && \ | |
make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include "libexif/exif-data.h" | |
// Function to log messages | |
void log_message(const char *msg) { | |
printf("%s\n", msg); | |
} | |
// Function to print an Exif entry |
OlderNewer