Java - Formula Injection
Last updated
Last updated
Now that the app is running let's go hacking!
The first step is to identify input forms and parameters that can be exported as CSV, XLS, XLSX or ODS. In this example we find that it's possible to add new pages and, after clicking on the button "Export pages", generate a XLS report of all pages created.
Now let's see if we can inject a simple spreadsheet formula.
The page "Injection2" was created and the formula was fully accepted.
Of course the formula has no effect on browser. This test is important for us to know the application is not validating the operator "=", so it can be used to inject formulas in our spreadsheet.
Now, let's export the pages and see in our spreedsheet application (Excel, Calc) how does the formula injection look like.
Once the report is loaded into the spreadsheet application, we can notice the formula is not immediatelly executed and it's shown as text. This behavior can vary depending on the version and which application is being used.
However, any interaction with the cell containing the injected formula will cause the application to execute it.
By doing it so we are sure the application has a Formula Injection vulnerability.
This is due to the fact that the user supplied input is not properly verified, accepting any character, and, thereafter, exports the inputs to a XLS file.
We are going to use this vulnerability to have a simple Command Execution on the victm's machine.
We need to choose the correct formula to inject, based on the spreadsheet reader to load the file.
Create a new page, injecting the correct formula, and export the pages as XLS.
Open the exported file in the spreadsheet app. After the interaction with the cell containing the injected formula, we can verify the command is executed.
What else can be done?
Check the Additional sources section below with more possibilities for Formula Injection!
Please refer to the OWASP testing guide for a full complete description about Formula Injection (CSV Injection)!
https://www.owasp.org/index.php/CSV_Injection
https://payatu.com/csv-injection-basic-to-exploit/
https://www.notsosecure.com/data-exfiltration-formula-injection/