Leveraging Template injection to takeover an account.
2021-03-08 14:39:25 Author: infosecwriteups.com(查看原文) 阅读量:219 收藏

Akash Methani

Image for post

Hi, I am back again with an interesting writeup, this is about a template injection bug I reported to a private program last year.

I was browsing through the application and trying to understand what it does. Walking through the app, I landed on the account settings page and looked for usual things that one should look at while testing the settings page.

After testing for some time and not finding anything meaningful, I thought maybe I’ve got nothing here and should move on to the next functionality.

The next day, I was exploring other functionalities on the application and found this interesting feature which allowed users to write a customized message for viewers visiting the page, kinda like a blog post with a customized greeting. The interesting part about this was that it allowed users to access certain properties of the user object to create customized messages, it even allowed users to set default values for some properties.

For example, if the user wants to write a post that starts with a customized greeting for each viewer. He could do something like this.

Hi user.name,XXXXXXXX

If a user named Akash visits this page he would see

Hi Akash,XXXXXXXX

There were lots of properties that could be used to display different messages to users with different privileges on the application.

I created a blog post that began with a greeting like

Hi user.name,XXXXXXXX

and visited this page from my account and to my surprise, it displayed Hi 9,I was not expecting this, but then I recalled while testing for bugs on the settings page, I entered my name as {{3*3}} and nothing happened that time. I left the name unchanged and moved on to test another functionality.

It was evaluating the expression {{3*3}} and displaying the result 9. This meant the application was vulnerable to a client-side template injection (CSTI) attack. The application was using AngularJS and user-submitted input (expression) in the name field under the account settings page was evaluating on this blog page.

I was thinking of a way to exploit this behavior and went ahead to look for an IDOR, which could have allowed an attacker to change a user’s name and replace it with a payload that sends the user’s session cookies to a server controlled by an attacker or programmatically change his account email to takeover his account.

Unfortunately, I couldn’t find an IDOR and concluded that this behavior alone is unexploitable since this was just a harmless self-injection vulnerability.

But wait, remember I mentioned that the application allowed users to set default values for some properties? An attacker could set a variable’s default value to a CSTI payload to exploit this behavior.

I set this AngularJS CSTI Payload as default value for redacted_property

{{a=toString().constructor.prototype;a.charAt=a.trim;$eval(‘a,alert(1),a’)}}

and used this redacted_property on the blog,

Hi user.name,user.redacted_propertyXXXXXXXX

visiting this page greeted me with an alert popup, just like a classic XSS PoC.

Image for post

Instead of popping an alert, an attacker could exploit this to steal the user’s session cookie or simply change his email address and takeover his account.

I hope you guys enjoyed reading this, follow me for more such interesting writeups.

For any questions, you can DM me on Twitter @0xAkash


文章来源: https://infosecwriteups.com/leveraging-template-injection-to-takeover-an-account-1dba7c4ae315?source=rss----7b722bfd1b8d--bug_bounty
如有侵权请联系:admin#unsafe.sh