Critical Price Manipulation Vulnerability in Thanthi ePaper Website

Listen to this Post

A critical price manipulation vulnerability was discovered on the Thanthi ePaper (epaper.dailythanthi.com) website, allowing unauthorized access to paid content by modifying client-side parameters. Attackers can alter subscription prices using tools like Burp Suite, bypassing payment validation and gaining premium access at a fraction of the actual cost.

Vulnerability Details:

  • Type: Price Manipulation via Client-Side Parameter Tampering
  • Impact: Unauthorized access to paid content, leading to significant revenue loss for the company.
  • Example: A ₹100 subscription could be manipulated to ₹10 or even ₹1.

You Should Know:

How Attackers Exploit Price Manipulation:

1. Intercepting Requests with Burp Suite:

  • Configure browser proxy settings to route traffic through Burp Suite.
  • Capture the payment request when a user attempts to subscribe.
  • Modify the price parameter (e.g., `”price”:100` → "price":1).

2. Bypassing Client-Side Validation:

  • Many websites rely on frontend validation, which can be bypassed by altering HTTP requests.
  • Always enforce server-side validation for transactions.

3. Exploiting Weak API Security:

  • If the API does not verify price consistency, attackers can manipulate JSON/XML payloads.

Mitigation Steps for Developers: