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

chore(deps): update dependency json5 to 2.2.2 [security] - abandoned #211

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 7, 2023

Mend Renovate

This PR contains the following updates:

Package Change
json5 2.1.3 -> 2.2.2

GitHub Vulnerability Alerts

CVE-2022-46175

The parse method of the JSON5 library before and including version 2.2.1 does not restrict parsing of keys named __proto__, allowing specially crafted strings to pollute the prototype of the resulting object.

This vulnerability pollutes the prototype of the object returned by JSON5.parse and not the global Object prototype, which is the commonly understood definition of Prototype Pollution. However, polluting the prototype of a single object can have significant security impact for an application if the object is later used in trusted operations.

Impact

This vulnerability could allow an attacker to set arbitrary and unexpected keys on the object returned from JSON5.parse. The actual impact will depend on how applications utilize the returned object and how they filter unwanted keys, but could include denial of service, cross-site scripting, elevation of privilege, and in extreme cases, remote code execution.

Mitigation

This vulnerability is patched in json5 v2.2.2 and later. A patch has also been backported for json5 v1 in versions v1.0.2 and later.

Details

Suppose a developer wants to allow users and admins to perform some risky operation, but they want to restrict what non-admins can do. To accomplish this, they accept a JSON blob from the user, parse it using JSON5.parse, confirm that the provided data does not set some sensitive keys, and then performs the risky operation using the validated data:

const JSON5 = require('json5');

const doSomethingDangerous = (props) => {
  if (props.isAdmin) {
    console.log('Doing dangerous thing as admin.');
  } else {
    console.log('Doing dangerous thing as user.');
  }
};

const secCheckKeysSet = (obj, searchKeys) => {
  let searchKeyFound = false;
  Object.keys(obj).forEach((key) => {
    if (searchKeys.indexOf(key) > -1) {
      searchKeyFound = true;
    }
  });
  return searchKeyFound;
};

const props = JSON5.parse('{\"foo\": \"bar\"}');
if (!secCheckKeysSet(props, ['isAdmin', 'isMod'])) {
  doSomethingDangerous(props); // \"Doing dangerous thing as user.\"
} else {
  throw new Error('Forbidden...');
}

If the user attempts to set the isAdmin key, their request will be rejected:

const props = JSON5.parse('{\"foo\": \"bar\", \"isAdmin\": true}');
if (!secCheckKeysSet(props, ['isAdmin', 'isMod'])) {
  doSomethingDangerous(props);
} else {
  throw new Error('Forbidden...'); // Error: Forbidden…
}

However, users can instead set the __proto__ key to {\"isAdmin\": true}. JSON5 will parse this key and will set the isAdmin key on the prototype of the returned object, allowing the user to bypass the security check and run their request as an admin:

const props = JSON5.parse('{\"foo\": \"bar\", \"__proto__\": {\"isAdmin\": true}}');
if (!secCheckKeysSet(props, ['isAdmin', 'isMod'])) {
  doSomethingDangerous(props); // \"Doing dangerous thing as admin.\"
} else {
  throw new Error('Forbidden...');
}

Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jan 7, 2023
@github-actions
Copy link
Contributor

github-actions bot commented Jan 7, 2023

Images automagically compressed by Calibre's image-actions

Compression reduced images by 14%, saving 2.07 MB.

Filename Before After Improvement Visual comparison
template/public/img/uploads/123.jpg 439.29 KB 431.92 KB -1.7% View diff
template/public/img/uploads/124_easy-resize.com-1-.jpg 457.91 KB 85.28 KB -81.4% View diff
template/public/img/uploads/124.jpg 405.29 KB 399.46 KB -1.4% View diff
template/public/img/uploads/125.jpg 407.90 KB 400.37 KB -1.8% View diff
template/public/img/uploads/147547.jpg 457.27 KB 451.52 KB -1.3% View diff
template/public/img/uploads/147548.jpg 431.32 KB 420.58 KB -2.5% View diff
template/public/img/uploads/147549.jpg 552.29 KB 546.24 KB -1.1% View diff
template/public/img/uploads/254_easy-resize.com-1-.jpg 370.00 KB 121.68 KB -67.1% View diff
template/public/img/uploads/255_easy-resize.com-1-.jpg 440.18 KB 165.73 KB -62.3% View diff
template/public/img/uploads/256_easy-resize.com-1-.jpg 427.31 KB 159.16 KB -62.8% View diff
template/public/img/uploads/3.jpg 156.29 KB 153.41 KB -1.8% View diff
template/public/img/uploads/4.jpg 84.07 KB 82.52 KB -1.8% View diff
template/public/img/uploads/5.jpg 57.93 KB 55.99 KB -3.4% View diff
template/public/img/uploads/6.jpg 79.21 KB 77.59 KB -2.0% View diff
template/public/img/uploads/banner1celular.jpg 184.44 KB 172.91 KB -6.3% View diff
template/public/img/uploads/banner1pc.jpg 171.01 KB 73.41 KB -57.1% View diff
template/public/img/uploads/banner1pc2.jpg 225.72 KB 74.13 KB -67.2% View diff
template/public/img/uploads/capa-1.jpg 893.55 KB 856.64 KB -4.1% View diff
template/public/img/uploads/capa-2.jpg 919.22 KB 876.63 KB -4.6% View diff
template/public/img/uploads/capa-3.jpg 222.66 KB 213.97 KB -3.9% View diff
template/public/img/uploads/capa-4.jpg 222.18 KB 213.70 KB -3.8% View diff
template/public/img/uploads/capa-5.jpg 387.09 KB 376.59 KB -2.7% View diff
template/public/img/uploads/capa-6.jpg 451.35 KB 443.47 KB -1.7% View diff
template/public/img/uploads/capa-7.jpg 326.73 KB 311.81 KB -4.6% View diff
template/public/img/uploads/qa.jpg 106.27 KB 105.05 KB -1.1% View diff
template/public/img/uploads/qa2.jpg 83.25 KB 81.87 KB -1.7% View diff
template/public/img/uploads/qa3.jpg 88.50 KB 86.94 KB -1.8% View diff
template/public/img/uploads/site_easy-resize.com.jpg 218.49 KB 94.60 KB -56.7% View diff
template/public/img/uploads/site-001_easy-resize.com.jpg 408.65 KB 173.68 KB -57.5% View diff
template/public/img/uploads/site-2.jpg 58.77 KB 55.73 KB -5.2% View diff
template/public/img/uploads/site-3.jpg 87.33 KB 85.46 KB -2.1% View diff
template/public/img/uploads/site-4.jpg 98.61 KB 96.87 KB -1.8% View diff
template/public/img/uploads/site-5.jpg 360.89 KB 352.31 KB -2.4% View diff
template/public/img/uploads/site-6.jpg 399.70 KB 393.24 KB -1.6% View diff
template/public/img/uploads/site-7.jpg 68.88 KB 66.84 KB -3.0% View diff
template/public/img/uploads/site-8.jpg 65.25 KB 63.75 KB -2.3% View diff
template/public/img/uploads/site-aq.jpg 593.08 KB 575.27 KB -3.0% View diff
template/public/img/uploads/site-aq1.jpg 114.72 KB 113.26 KB -1.3% View diff
template/public/img/uploads/site-aq2.jpg 104.55 KB 103.31 KB -1.2% View diff
template/public/img/uploads/site-aq3.jpg 90.87 KB 89.63 KB -1.4% View diff
template/public/img/uploads/site-aq4.jpg 121.26 KB 116.75 KB -3.7% View diff
template/public/img/uploads/site-capa.jpg 152.85 KB 150.23 KB -1.7% View diff
template/public/img/uploads/site.jpg 477.15 KB 457.83 KB -4.0% View diff
template/public/img/uploads/site1.jpg 577.76 KB 563.49 KB -2.5% View diff
template/public/img/uploads/site147.jpg 395.31 KB 386.77 KB -2.2% View diff
template/public/img/uploads/site2_easy-resize.com.jpg 242.57 KB 233.30 KB -3.8% View diff
template/public/img/uploads/site2.jpg 78.62 KB 77.09 KB -2.0% View diff
template/public/img/uploads/site21.jpg 621.28 KB 609.17 KB -1.9% View diff
template/public/img/uploads/site22.jpg 179.81 KB 177.94 KB -1.0% View diff
template/public/img/uploads/site3.jpg 416.76 KB 395.20 KB -5.2% View diff
template/public/img/uploads/site4.jpg 97.04 KB 95.58 KB -1.5% View diff
template/public/img/uploads/site5.jpg 65.91 KB 64.16 KB -2.7% View diff
template/public/img/uploads/whatsapp-image-2022-09-27-at-12.45.56.jpeg 6.24 KB 4.72 KB -24.4% View diff

94 images did not require optimisation.

@renovate
Copy link
Contributor Author

renovate bot commented Jan 7, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.
You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@renovate renovate bot changed the title chore(deps): update dependency json5 to 2.2.2 [security] chore(deps): update dependency json5 to 2.2.2 [security] - abandoned Jan 12, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Jan 12, 2023

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants