Skip to content
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

json: fix potential overflow #39

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

DavidKorczynski
Copy link

The code:

    while(!EMPTY_STRING(input) && stream.push(*index) != json::reader::REJECTED)
    {
        index++;
    }

Runs into an issue because EMPTY_STRING(input) is used to check for null-pointer ending, but input is never incremented during the loop. As such, an overflow will happen when index has incremented beyond it's buffer and *index is run. This triggers an overflow on the input buffer as index is declared as:

const char *index = json::parsing::tlws(input);

Instead of checking for an empty string on input we should check it on index.

The code:

```cpp
    while(!EMPTY_STRING(input) && stream.push(*index) != json::reader::REJECTED)
    {
        index++;
    }
```

Runs into an issue because `EMPTY_STRING(input)` is used to check for
null-pointer ending, but `input` is never incremented during the loop.
As such, an overflow will happen when `index` has incremented beyond
it's buffer and `*index` is run. This triggers an overflow on the
`input` buffer as `index` is declared as:

`const char *index = json::parsing::tlws(input);`

Instead of checking for an empty string on `input` we should check it on
`index`.

Signed-off-by: David Korczynski <david@adalogics.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant