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.
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
Add NetAlertX unauthenticated RCE module (CVE-2024-46506) #19868
Add NetAlertX unauthenticated RCE module (CVE-2024-46506) #19868
Changes from 8 commits
00f4f80
4f584bd
b02838a
127adda
92a73b1
7149d3f
8d59201
9f43fcc
edbdb98
2db7f4f
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Smaller payload (yay!), and more portable, and not every Linux system has
bash
installed.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.
Do we need to encode manually? What characters are we trying to avoid and what happens we pass them into the payload portion of the info hash as bad characters?
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.
Thanks! Updated to use
sh
. edbdb98Updated to use BadChars. 2db7f4f Seems like only
![image](https://private-user-images.githubusercontent.com/70351033/411809276-de12a1fe-6e24-4dd3-8b67-c7b588d59321.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk1Njk0NDksIm5iZiI6MTczOTU2OTE0OSwicGF0aCI6Ii83MDM1MTAzMy80MTE4MDkyNzYtZGUxMmExZmUtNmUyNC00ZGQzLThiNjctYzdiNTg4ZDU5MzIxLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTQlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE0VDIxMzkwOVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWM1MjhiNjY1NTljOGVjMTQxNzg5M2UzYTQyNjhlNTA2MDYxOTMzZTNlZTlhYTdjYzUwNjU2ODgyZGRjZDQ2YWUmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.QjzNFBAzOu-Js8D9Y5G8TYSF0DQeTHv2yw0RofbRcA0)
base64 -d
works fine. Without/bin/sh -c
, the payload fails. Thanks!