We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently eggdrop uses atoi() on some user controlled input.
atoi()
Those inputs should be validated. Those (or all) atoi() calls should be replaced by strtol() / strtoul().
strtol()
strtoul()
The text was updated successfully, but these errors were encountered:
Here is a potential atoi(NULL):
https://github.com/eggheads/eggdrop/pull/1042/files#diff-5ca89d7321091367580839d8ef6025da5d6da28e39cb8c66fb77ae32972f2e52R155
Sorry, something went wrong.
No branches or pull requests
Currently eggdrop uses
atoi()
on some user controlled input.Those inputs should be validated. Those (or all)
atoi()
calls should be replaced bystrtol()
/strtoul()
.The text was updated successfully, but these errors were encountered: