-
Notifications
You must be signed in to change notification settings - Fork 624
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
NASL builtin function for open privileged sockets with udp and tcp #1757
Merged
Conversation
This file contains 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
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Snapshot WarningsEnsure that dependencies are being submitted on PR branches and consider enabling retry-on-snapshot-warnings. See the documentation for more information and troubleshooting advice. OpenSSF Scorecard
Scanned Files
|
Kraemii
force-pushed
the
rs-priv-sockets
branch
from
November 7, 2024 12:50
f4ed020
to
14d740b
Compare
nichtsfrei
reviewed
Nov 7, 2024
nichtsfrei
reviewed
Nov 7, 2024
nichtsfrei
reviewed
Nov 7, 2024
nichtsfrei
reviewed
Nov 7, 2024
nichtsfrei
reviewed
Nov 7, 2024
nichtsfrei
reviewed
Nov 7, 2024
Tehforsch
reviewed
Nov 7, 2024
Tehforsch
reviewed
Nov 7, 2024
Kraemii
force-pushed
the
rs-network-functions2
branch
2 times, most recently
from
November 13, 2024 11:35
c4076d5
to
c3d88ba
Compare
Kraemii
force-pushed
the
rs-priv-sockets
branch
from
November 13, 2024 11:36
14d740b
to
d0c7c95
Compare
github-actions
bot
added
minor_release
creates a minor release
and removed
minor_release
creates a minor release
labels
Nov 13, 2024
Kraemii
force-pushed
the
rs-network-functions2
branch
from
November 13, 2024 11:49
c3d88ba
to
423af69
Compare
Kraemii
force-pushed
the
rs-priv-sockets
branch
from
November 13, 2024 11:50
d0c7c95
to
b6252f8
Compare
github-actions
bot
added
minor_release
creates a minor release
and removed
minor_release
creates a minor release
labels
Nov 13, 2024
Tehforsch
previously approved these changes
Nov 14, 2024
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.
Just one minor comment
Kraemii
force-pushed
the
rs-network-functions2
branch
from
November 15, 2024 15:06
423af69
to
b70f084
Compare
Kraemii
force-pushed
the
rs-priv-sockets
branch
from
November 15, 2024 15:14
b6252f8
to
0f3b0a2
Compare
github-actions
bot
added
minor_release
creates a minor release
and removed
minor_release
creates a minor release
labels
Nov 15, 2024
Kraemii
force-pushed
the
rs-priv-sockets
branch
from
November 15, 2024 15:26
0f3b0a2
to
7e19964
Compare
Kraemii
force-pushed
the
rs-priv-sockets
branch
from
November 20, 2024 14:58
7e19964
to
0df0f54
Compare
github-actions
bot
added
minor_release
creates a minor release
and removed
minor_release
creates a minor release
labels
Nov 20, 2024
Kraemii
force-pushed
the
rs-priv-sockets
branch
from
November 20, 2024 15:21
0df0f54
to
3563b22
Compare
github-actions
bot
added
minor_release
creates a minor release
and removed
minor_release
creates a minor release
labels
Nov 20, 2024
Kraemii
force-pushed
the
rs-priv-sockets
branch
from
November 20, 2024 15:31
3563b22
to
a41c29c
Compare
github-actions
bot
added
minor_release
creates a minor release
and removed
minor_release
creates a minor release
labels
Nov 20, 2024
recv may return before length bytes have been read: as soon as at least one byte has been received, the timeout is lowered to 1 second. If no data is received during that time, the function returns the already read data; otherwise, if the full initial timeout has not been reached, a 1 second timeout is re-armed and the script tries to receive more data from the socket. This special feature was implemented to get a good compromise between reliability and speed when openvas-scanner talks to unknown or complex protocols. This functionality was missing.
Kraemii
force-pushed
the
rs-priv-sockets
branch
from
November 25, 2024 10:29
a41c29c
to
8f45082
Compare
github-actions
bot
added
minor_release
creates a minor release
and removed
minor_release
creates a minor release
labels
Nov 25, 2024
Tehforsch
approved these changes
Nov 26, 2024
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.
What:
Adds the NASL functions for open privileged sockets for TCP and UDP:
I added two NASL script for testing TCP and UDP. Note that you need privileged
This PR depends on #1727
Jira: SC-1120
Why:
How:
Checklist: