Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use v3 working directory for go-ldap #12884

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion projects/go-ldap/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ FROM gcr.io/oss-fuzz-base/base-builder-go
RUN git clone --depth 1 https://github.com/go-ldap/ldap.git
RUN go install github.com/AdamKorcz/go-118-fuzz-build@latest
COPY build.sh $SRC/
WORKDIR $SRC/ldap
WORKDIR $SRC/ldap/v3
6 changes: 3 additions & 3 deletions projects/go-ldap/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

go get github.com/AdamKorcz/go-118-fuzz-build/testing

compile_native_go_fuzzer github.com/go-ldap/ldap FuzzParseDN fuzz_parse_dn
compile_native_go_fuzzer github.com/go-ldap/ldap FuzzDecodeEscapedSymbols fuzz_decode_escaped_symbols
compile_native_go_fuzzer github.com/go-ldap/ldap FuzzEscapeDN fuzz_escape_dn
compile_native_go_fuzzer github.com/go-ldap/ldap/v3 FuzzParseDN fuzz_parse_dn
compile_native_go_fuzzer github.com/go-ldap/ldap/v3 FuzzDecodeEscapedSymbols fuzz_decode_escaped_symbols
compile_native_go_fuzzer github.com/go-ldap/ldap/v3 FuzzEscapeDN fuzz_escape_dn
Loading