Skip to content

Commit

Permalink
Merge branch 'master' of github.com:rbsec/sslscan
Browse files Browse the repository at this point in the history
  • Loading branch information
rbsec committed Jan 21, 2024
2 parents e497dfb + f4bc3b5 commit e7531df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ FROM scratch
# Copy over the sslscan executable from the intermediate build container, along with the dynamic libraries it is dependent upon (see output of ldd, above).
COPY --from=builder /builddir/sslscan /sslscan
COPY --from=builder /lib/libz.so.1 /lib/libz.so.1
COPY --from=builder /lib/ld-musl-x86_64.so.1 /lib/ld-musl-x86_64.so.1
COPY --from=builder /lib/ld-musl-*.so.1 /lib/

# Drop root privileges.
USER 65535:65535
Expand Down
1 change: 1 addition & 0 deletions sslscan.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ SSL_CTX *new_CTX(const SSL_METHOD *method) {
SSL_CTX *ret = SSL_CTX_new(method);
SSL_CTX_set_security_level(ret, 0);
SSL_CTX_set_security_callback(ret, security_callback_allow_all);
SSL_CTX_set_quiet_shutdown(ret, 1);
return ret;
}

Expand Down

0 comments on commit e7531df

Please sign in to comment.