DoS in POC - #1
Open
secretsquirrel wants to merge 1 commit into
Open
Conversation
My CVE-2015-7547 POC POC The cause of this crash is a due to an unbounds check in processed data, assuming that at least four bytes of data are sent in the DNS request. This causes a DoS condition in the POC, potentially stopping users from using the POC in hostile environments. ```sh-4.2$ sudo python CVE-2015-7547-poc.py & [1] 32066 sh-4.2$ nc -v localhost 53 Connected with 127.0.0.1:37640 Connection to localhost 53 port [tcp/domain] succeeded! j [TCP] Total Data len recv 2 [TCP] Request1 len recv 27146 Traceback (most recent call last): File "CVE-2015-7547-poc.py", line 176, in <module> tcp_thread() File "CVE-2015-7547-poc.py", line 116, in tcp_thread id1 = struct.unpack('>H', data1[0:2])[0] struct.error: unpack requires a string argument of length 2 [1]+ Done(1) sudo python CVE-2015-7547-poc.py ```
|
@secretsquirrel Have you requested a CVE? This looks serious! 😆 |
Author
|
@hdm Just doing my part. 👅 |
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.
My CVE-2015-7547 POC POC
The cause of this crash is a due to an unbounds check in processed data, assuming that at least four bytes of data are sent in the DNS request. This causes a DoS condition in the POC, potentially stopping users from using the POC in hostile environments.