-
Notifications
You must be signed in to change notification settings - Fork 40
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
Added OpenSSL static PIE #72
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for this @Giulia424, please see the comments.
Besides those, please also rename the directory from OpenSSL
to openssl
.
Signed-off-by: Giulia <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good @Giulia424, just few more comments.
@@ -0,0 +1,28 @@ | |||
# Build OpenSSL as static PIE | |||
|
|||
Script to build OpenSSL as a static PIE ELF binary. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Script to build OpenSSL as a static PIE ELF binary. | |
Script to build OpenSSL as a static PIE ELF binary. |
#!/bin/bash | ||
|
||
SSL_URL="https://www.openssl.org/source/openssl-3.0.5.tar.gz" | ||
rm -rf SSL-* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a cleanup step here.
The rm -rf SSL-*
command does not do anything since there is nothing in the current directory to match that name.
It should remove the extracted source code, see nginx as an example.
Signed-off-by: Giulia [email protected]