DAST
Continuously monitor web applications for vulnerabilities at scale with Cobalt Dynamic Application Security Testing (DAST).
DAST
Continuously monitor web applications for vulnerabilities at scale with Cobalt Dynamic Application Security Testing (DAST).

Parameter Tampering Vulnerability Using 3 Different Approaches

Core Pentester Seli Feta has created a blog to help readers understand how online payments work and offer steps for learning how to execute Parameter Tampering attacks

With the growing number of online transactions increasing, it is clear that payment security is crucial. I have created this blog to help readers understand how online payments work and offer steps for learning how to execute Parameter Tampering attacks.

How E-payments Work?

1. The customer decided which product to purchase from the company.

2. When clicking on the bottom payment the customer is redirected to the order page, enters their payment information {card information, identification, etc}, and then submits the payment request.

3. The online payment provider system sends the customer’s payment request to their bank account for the bank purchase approval.

4. If the customer’s card details are valid and there are sufficient funds to complete the transaction, the customer’s bank will confirm the purchase. However, if the transaction is declined for any reason - invalid credentials or insufficient funds - then funds will not be transferred but status information will still be sent to your website.

5. The issuing bank will pass on its approval or refusal to the acquiring bank.

Now that we have a general understanding of how an electronic payment works, let’s explore Parameter Tampering Vulnerability and look at how it can be implemented using three different approaches.

Parameter_Tampering-2

Parameter Tampering

Essentially, Parameter Tampering is a web-based, business logic attack. It involves the manipulation of the parameters exchanged between client and server to modify the application data such as user credentials, permissions, price, the number of products, etc. It is intended as a business security threat that involves an unauthorized party manipulating and tampering with the website’s URL, web page form, or other parameters.

Now let’s dive into the three scenarios: changing a cheap product to an expensive product, unlimited cards, and changing price.

1. Changing a Cheap Product to an Expensive One Scenario

While making a payment, a product is added to a basket on an application. A request is made for the cheaper product and the parameters of the request are saved before the product goes to the bank for approval. Subsequently, a request is made for the expensive product but is replaced with the information about the cheaper product and again sent to the bank for approval. The bank then approves the cheaper product.

Let’s take a look at an example:

Original Request:

original_request_1-1

Edited Request:

edited_request_1

The parameters of the approved cheap product by the bank can be kept constant, and the "oid", "transid", and "orderid" parameters are changed in the request allowing the expensive product to be bought for the price of the cheap product.

Response from the bank:

Asset_50-1

Balance received from the bank:

Balance_received_from_the_bank_-1

As seen in the screenshot, the order has been successfully completed.

Order summary:

5-1

2. Unlimited Card Scenario

A product that is added to the basket cannot be confirmed by the bank because the balance is insufficient. The "errmsg" parameter in the request, displayed in the screenshot, shows the value of "CARD + SALE + LIMIT + INSUFFICIENT" since there is not enough in the user’s credit card balance.

Original Request:

original_request_2-1

However, when the "errmsg", "response", and "procreturncode" parameter values in the request are updated, it approves the order.

Edited request:

edited_request_2-1

As seen in the screenshot, the order has been completed successfully.

Order completed:

order_completed_2-1

The product could then be added to the basket and bought without paying any money.

Order summary:

order_summary-1

3. Changing Price Scenario

In this scenario, the price value can be easily changed by lowering the price and passing the order for payments.

While making a payment, a product is added to the basket on the application. In the customer payment request, the price is then edited in the request and sent for bank approval. As seen in the screenshot, the request is intercepted before it is sent to the bank and the "Total Amount" and "Amount" parameters are changed to a different price. The transaction value of the product is changed from "409.98 " to "0.98" and sent to the bank.

Original Request:

original_request_3-1

Edited request:

edited_request_3-1

SMS received from the bank:

SMS_received_from_the_bank-1

As seen in the screenshot below, the order was successfully completed with the final price being 0.98TL:

order_summary_1-1

I hope you found the scenarios interesting. Happy Hunting!

Additional Resources: Web Parameter Tampering How exactly does online payment work What is parameter tampering

 
Back to Blog
About Selvie Feta
Selvie is a Core Pentester and has been an application security consultant with 4+ years of experience. She holds OSCE, OSCP, OSWP, eWPTX and eMAPT certifications. She has experience in Web application, APIs, Mobile application, and Network pentest. Also, she performs source code review and payment security. More By Selvie Feta