CVE-2026-55518

CRITICALPre-NVD 9.69.6
EchelonGraph scoreLOW confidence

This critical-severity CVE scores 9.6 under the CNA's CVSS (NVD's own analysis pending). EPSS exploit-prediction score not yet available (the EPSS model rescores nightly; freshly-published CVEs typically appear within 48 hours). GitHub Security Advisory data not yet ingested — confidence will rise once GHSA publishes (typical lag: hours to days for open-source ecosystem CVEs; never for infrastructure-only CVEs).

Triggered by: NVD CVSS baseline
Sources: cna:github_m
9.6
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS: CVSS: 9.6Exploit: NoneExposed: 0

No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.

Avo: Missing Authorization in Avo Association Attach Endpoint Allows Unauthorized Relationship Manipulation and Privilege Escalation

Summary

A critical missing authorization flaw exists in Avo's association attach workflow. The UI and GET /resources/:resource/:id/:related/new path can check attach_?, but the actual write endpoint, POST /resources/:resource/:id/:related, does not run the same authorization check before mutating the association.

As a result, an authenticated low-privileged Avo user can bypass hidden/disabled attach controls and directly attach related records to a parent record by sending a crafted POST request. In applications where associations represent teams, tenants, roles, projects, users, memberships, ownership, or other authorization-bearing relationships, this can lead to privilege escalation and cross-tenant data exposure.

Details

The association attach route writes relationships through Avo::AssociationsController#create:

# config/routes.rb
post "/:resource_name/:id/:related_name", to: "associations#create", as: "associations_create"

The controller registers an attach authorization callback only for new, not for create:

# app/controllers/avo/associations_controller.rb
before_action :set_attachment_record, only: [:create, :destroy]
before_action :authorize_index_action, only: :index
before_action :authorize_attach_action, only: :new
before_action :authorize_detach_action, only: :destroy

The new action is only the form-rendering step. The actual mutation happens in create:

def create
  if create_association
    create_success_action
  else
    create_fail_action
  end
end

create_association then attaches the attacker-supplied related record to the parent:

def create_association
  association_name = BaseResource.valid_association_name(@record, association_from_params)

perform_action_and_record_errors do if through_reflection? && additional_params.present? new_join_record.save elsif has_many_reflection? || through_reflection? @record.send(association_name) << @attachment_record else @record.send(:"#{association_name}=", @attachment_record) @record.save! end end end

The only attach-specific authorization helper is:

def authorize_attach_action
  authorize_if_defined "attach_#{@field.id}?"
end

Because this helper is bound only to new, a policy that denies attach_users?, attach_teams?, attach_roles?, or similar methods blocks the UI/form path but does not protect the write path.

This is inconsistent with the detach path, which does authorize the mutating destroy action:

before_action :authorize_detach_action, only: :destroy

The bug is especially dangerous because Avo already treats association authorization as an access-control boundary in UI components:

# lib/avo/concerns/checks_assoc_authorization.rb
method_name = :"#{policy_method}_#{association_name}?".to_sym

if service.has_method?(method_name, raise_exception: false) service.authorize_action(method_name, record:, raise_exception: false) else !Avo.configuration.explicit_authorization end

However, server-side enforcement is missing on the actual attach POST endpoint.

Proof of Concept

Prerequisites:

  • A Rails application mounts Avo, for example at /admin.
  • Avo authorization is enabled.
  • A low-privileged user can authenticate to Avo.
  • A parent record and a related record are both reachable by ID.
  • The relevant policy denies attaching the relationship, for example:

def attach_users?
  false
end

Example target scenario:

  • Parent resource: projects
  • Parent ID: 1
  • Related association: users
  • Related user ID to attach: 42
  • Expected policy: low-privileged users must not be able to attach users to projects.

The UI/form request may be blocked:

GET /admin/resources/projects/1/users/new

But the direct write endpoint can still be invoked:

POST /admin/resources/projects/1/users
Content-Type: application/x-www-form-urlencoded

authenticity_token=&fields[related_id]=42

Run the attached PoC:

python poc_avo_association_attach_bypass.py \
  --base-url http://localhost:3000 \
  --avo-root /admin \
  --cookie "_app_session=" \
  --parent-resource projects \
  --parent-id 1 \
  --related-name users \
  --related-id 42 \
  --check-new

If GET /new is forbidden or redirected but the direct POST succeeds, the authorization bypass is confirmed.

To perform the actual attach:

python poc_avo_association_attach_bypass.py \
  --base-url http://localhost:3000 \
  --avo-root /admin \
  --cookie "_app_session=" \
  --parent-resource projects \
  --parent-id 1 \
  --related-name users \
  --related-id 42 \
  --confirm-attach

Expected vulnerable result:

  • The low-privileged user can attach the related record despite attach_? being denied.
  • The parent record now includes the related record.

Impact

This vulnerability allows unauthorized relationship manipulation through Avo.

Depending on the affected association, the impact can include:

  • Privilege escalation by attaching a user to an admin group, privileged project, tenant, organization, role, or membership record.
  • Cross-tenant data exposure when tenant/user/project membership determines record visibility.
  • Integrity loss by changing ownership, assignment, access-control relationships, or business workflow state.
  • Policy bypass even when Avo UI controls correctly hide the attach button or deny the attach form.

Recommended Fix

Enforce attach authorization on the mutating endpoint.

At minimum:

before_action :authorize_attach_action, only: [:new, :create]

Additionally:

  • Authorize against the parent record and the selected related record before writing the relationship.
  • Ensure create fails closed when attach_? is missing and explicit_authorization is enabled.
  • Add regression tests that directly POST to /resources/:resource_name/:id/:related_name while attach_? returns false.
  • Verify has_many, has_one, has_many :through, and has_and_belongs_to_many association paths all enforce the same server-side authorization.

CVSS v3
9.6
EG Score
9.6(low)
EPSS
KEV
Not listed

Published

June 17, 2026

Last Modified

June 17, 2026

Vendor Advisories for CVE-2026-55518(1)

These vendors published their own advisory mentioning this CVE — often with vendor-specific remediation steps + affected product lists not in NVD.

Affected Packages

(1 across 1 ecosystem)
RubyGems(1)
PackageVulnerable rangeFixed inDependents
avo4.0.0.beta.1 ... 4.0.0.beta.9 (50 versions)4.0.0.beta.51

Data Freshness Timeline

(refreshed 42× in last 7d / 119× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

Showing the most recent 100 of 119 total refreshes for this CVE.

  1. 2026-07-07 08:18 UTCEG score recompute
  2. 2026-07-07 02:50 UTCEG score recompute
  3. 2026-07-06 22:58 UTCEG score recompute
  4. 2026-07-06 19:06 UTCEG score recompute
  5. 2026-07-06 14:21 UTCEG score recompute
  6. 2026-07-06 10:25 UTCEG score recompute
  7. 2026-07-06 06:32 UTCEG score recompute
  8. 2026-07-06 02:39 UTCEG score recompute
  9. 2026-07-05 22:46 UTCEG score recompute
  10. 2026-07-05 18:51 UTCEG score recompute
  11. 2026-07-05 14:59 UTCEG score recompute
  12. 2026-07-05 11:07 UTCEG score recompute
  13. 2026-07-05 07:15 UTCEG score recompute
  14. 2026-07-05 03:21 UTCEG score recompute
  15. 2026-07-04 23:27 UTCEG score recompute
  16. 2026-07-04 19:36 UTCEG score recompute
  17. 2026-07-04 15:41 UTCEG score recompute
  18. 2026-07-04 11:48 UTCEG score recompute
  19. 2026-07-04 07:53 UTCEG score recompute
  20. 2026-07-04 03:26 UTCEG score recompute
  21. 2026-07-03 22:59 UTCEG score recompute
  22. 2026-07-03 19:06 UTCEG score recompute
  23. 2026-07-03 15:14 UTCEG score recompute
  24. 2026-07-03 11:11 UTCEG score recompute
  25. 2026-07-03 06:38 UTCEG score recompute
Show 75 more
  1. 2026-07-03 02:44 UTCEG score recompute
  2. 2026-07-02 22:51 UTCEG score recompute
  3. 2026-07-02 18:56 UTCEG score recompute
  4. 2026-07-02 15:05 UTCEG score recompute
  5. 2026-07-02 11:11 UTCEG score recompute
  6. 2026-07-02 07:19 UTCEG score recompute
  7. 2026-07-02 03:26 UTCEG score recompute
  8. 2026-07-01 23:34 UTCEG score recompute
  9. 2026-07-01 19:42 UTCEG score recompute
  10. 2026-07-01 15:50 UTCEG score recompute
  11. 2026-07-01 11:58 UTCEG score recompute
  12. 2026-07-01 08:06 UTCEG score recompute
  13. 2026-07-01 04:12 UTCEG score recompute
  14. 2026-07-01 00:21 UTCEG score recompute
  15. 2026-06-30 20:27 UTCEG score recompute
  16. 2026-06-30 16:35 UTCEG score recompute
  17. 2026-06-30 12:43 UTCEG score recompute
  18. 2026-06-30 08:50 UTCEG score recompute
  19. 2026-06-30 04:57 UTCEG score recompute
  20. 2026-06-30 00:40 UTCEG score recompute
  21. 2026-06-29 20:47 UTCEG score recompute
  22. 2026-06-29 16:52 UTCEG score recompute
  23. 2026-06-29 12:58 UTCEG score recompute
  24. 2026-06-29 09:06 UTCEG score recompute
  25. 2026-06-29 05:14 UTCEG score recompute
  26. 2026-06-29 01:20 UTCEG score recompute
  27. 2026-06-28 21:28 UTCEG score recompute
  28. 2026-06-28 17:36 UTCEG score recompute
  29. 2026-06-28 13:43 UTCEG score recompute
  30. 2026-06-28 09:52 UTCEG score recompute
  31. 2026-06-28 05:59 UTCEG score recompute
  32. 2026-06-28 02:07 UTCEG score recompute
  33. 2026-06-27 22:15 UTCEG score recompute
  34. 2026-06-27 18:23 UTCEG score recompute
  35. 2026-06-27 14:32 UTCEG score recompute
  36. 2026-06-27 10:40 UTCEG score recompute
  37. 2026-06-27 06:48 UTCEG score recompute
  38. 2026-06-27 02:55 UTCEG score recompute
  39. 2026-06-26 23:03 UTCEG score recompute
  40. 2026-06-26 19:12 UTCEG score recompute
  41. 2026-06-26 15:20 UTCEG score recompute
  42. 2026-06-26 11:28 UTCEG score recompute
  43. 2026-06-26 02:24 UTCEG score recompute
  44. 2026-06-25 22:32 UTCEG score recompute
  45. 2026-06-25 18:39 UTCEG score recompute
  46. 2026-06-25 14:48 UTCEG score recompute
  47. 2026-06-25 10:55 UTCEG score recompute
  48. 2026-06-25 07:03 UTCEG score recompute
  49. 2026-06-25 03:11 UTCEG score recompute
  50. 2026-06-24 23:20 UTCEG score recompute
  51. 2026-06-24 19:29 UTCEG score recompute
  52. 2026-06-24 14:50 UTCEG score recompute
  53. 2026-06-24 10:58 UTCEG score recompute
  54. 2026-06-24 07:05 UTCEG score recompute
  55. 2026-06-24 03:04 UTCEG score recompute
  56. 2026-06-23 23:12 UTCEG score recompute
  57. 2026-06-23 19:20 UTCEG score recompute
  58. 2026-06-23 15:28 UTCEG score recompute
  59. 2026-06-23 11:35 UTCEG score recompute
  60. 2026-06-23 07:43 UTCEG score recompute
  61. 2026-06-23 03:48 UTCEG score recompute
  62. 2026-06-22 23:56 UTCEG score recompute
  63. 2026-06-22 19:55 UTCEG score recompute
  64. 2026-06-22 15:58 UTCEG score recompute
  65. 2026-06-22 11:55 UTCEG score recompute
  66. 2026-06-22 08:03 UTCEG score recompute
  67. 2026-06-22 04:10 UTCEG score recompute
  68. 2026-06-22 00:19 UTCEG score recompute
  69. 2026-06-21 20:24 UTCEG score recompute
  70. 2026-06-21 16:33 UTCEG score recompute
  71. 2026-06-21 12:35 UTCEG score recompute
  72. 2026-06-21 08:39 UTCEG score recompute
  73. 2026-06-21 04:48 UTCEG score recompute
  74. 2026-06-21 00:51 UTCEG score recompute
  75. 2026-06-20 20:59 UTCEG score recompute

Frequently asked(4)

What is CVE-2026-55518?
CVE-2026-55518 is a critical vulnerability published on June 17, 2026. Avo: Missing Authorization in Avo Association Attach Endpoint Allows Unauthorized Relationship Manipulation and Privilege Escalation Summary A critical missing authorization flaw exists in Avo's association attach workflow. The UI and GET /resources/:resource/:id/:related/new path can check…
When was CVE-2026-55518 disclosed?
CVE-2026-55518 was first published in the National Vulnerability Database on June 17, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
What is the CVSS score of CVE-2026-55518?
CVE-2026-55518 has a CVSS v4.0 base score of 9.6 (CNA self-assessment; NVD's own analysis pending). The EG score is currently aggregating — additional source signals are being incorporated as they become available..
How do I remediate CVE-2026-55518?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-55518, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

See which npm, PyPI, Go, and Maven packages are affected by CVE-2026-55518

Explore →

Is Your Infrastructure Affected by CVE-2026-55518?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.