Add rlimit and prevent the process from forking#183
Open
mscherer wants to merge 1 commit intoioerror:masterfrom
Open
Add rlimit and prevent the process from forking#183mscherer wants to merge 1 commit intoioerror:masterfrom
mscherer wants to merge 1 commit intoioerror:masterfrom
Conversation
configure.ac
Outdated
Contributor
There was a problem hiding this comment.
this AM_CONDITIONAL is pointless as it isn't used in the makefiles. just delete it.
Author
There was a problem hiding this comment.
So I am not that fluent with automake/autoconf, but if I remove the AM_CONDITIONAL, is there value in keeping the AC_CHECK_FUNCS ?
Contributor
There was a problem hiding this comment.
the AC_CHECK_FUNCS is needed to create HAVE_PRLIMIT which you use later on :)
While it doesn't prevent all exploitations, it make like harder for a attacker who would want to spawn a shell or similar type of attack.
96f6cc1 to
b7376d3
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
While it doesn't prevent all exploitations, it make
like harder for a attacker who would want to spawn a shell
or similar type of attack.