An Interesting Skimmer with Hardcoded IPs

I’ve been examining an interesting digital skimmer/magecart script the past couple of days and figured I’d share some details. Perhaps the most puzzling aspect is the three Korean IPs hardcoded into it, although there are a number of other interesting details as well.

First, some code and URLs of note:

There’s still more deobfuscation to do, but that gets us to a point where we can see some interesting things. For starters, this skimmer grabs the victim IP address using an endpoint at my-ip[.]io.

This isn’t a new technique of course. An example of a similar method from 2020: https://twitter.com/AffableKraut/status/1323752538592694278

What is kind of new is using that victim’s IP to stop the skimmer from executing. This for loop takes the victim IP and compares it to the three hardcoded IPs. If there is a match, the code execution is ended. But there’s something weird going on here.

These IPs just seem to be random Korean IPs. And while one might want to start shouting “Lazarus!” or something fun like that, there’s probably a better explanation.

121[.]161[.]58[.]40
210[.]178[.]93[.]165
106[.]248[.]193[.]113

First, the victim site is located in South Korea. I think this may be an attempt by the attacker to have the malicious code not execute when the people running the store are on the site. They very well could have captured the IPs of people logging into the admin portal.

Second, the code only compares the first 5 characters of the IP address. That means it’s looking for any IP that starts with: 121.1, 210.1, or 106.2. That is… a lot of IPs. 18,939,904 to be exact, or roughly 0.5% of all public IPs. Oopsie!

The skimmer also loads an iframe from what appears to be another compromised store.

Final thing I’ll mention is that this domain (fraudlabpros[.]at) is definitely using some Fastflux infrastructure. Here’s 30 IPs it’s been on in the last month or two:

A modified version of this was originally posted on Twitter:
https://twitter.com/AffableKraut/status/1487939192726466563

This entry was posted in Infosec, Magecart and tagged , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *