You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently, any password supplied using --ssl-passwd when creating a makeself archive is exposed in the header --info block with the build commands. problem can be sidestepped by using --ssl-pass-src and a temporary file instead. should probably either rework the build info to drop/redact that argument or stop supporting --ssl-passwd
The text was updated successfully, but these errors were encountered:
for f in "${1+"$@"}"; do
if test x$secretnext = "1"; then
f="**REDACTED**"
secretnext=0
fi
MS_COMMAND="$MS_COMMAND \\\\
\\\"$f\\\""
if test x$f = x"--ssl-passwd"; then
secretnext=1
fi
done
currently, any password supplied using --ssl-passwd when creating a makeself archive is exposed in the header --info block with the build commands. problem can be sidestepped by using --ssl-pass-src and a temporary file instead. should probably either rework the build info to drop/redact that argument or stop supporting --ssl-passwd
The text was updated successfully, but these errors were encountered: