Jump to content
FORUMS
Valks

Gold Scam Discovered with No Add-Ons Required!

Recommended Posts

LYuH3Su.png

That's right. With a vanilla UI, there are players that can steal all of your gold. Scary stuff!

This was first brought to my attention by a Reddit post from user MrNoobyy. His post reads as follows:

Quote

So recently, there's been a guy on my realm spamming trade chat, claiming to be selling 13/13M with loot and mount on behalf of a top guild on our realm. Every guild he impersonates is a guild with an l somewhere in the name, and he actually makes a guild with a captial I instead of a lower case l, which in game, both show up the same.

He tries to get you to run do a /run command, one I won't type out here, with the claim that it's so the raid frames don't get messed up on the custom UI that the raiders use. Knowing better, I of course didn't run the script - but if you do, from what I can tell, it allows the scammer to execute scripts via whisper, that forces you trade away your gold when he trades you. I'm unsure if this requires an addon to work, as when I told him I'd run the script, he told me to try again, but disable all addons first.

Anyway, I reported him, and he's been showing up differing toons throughout the week, impersonating a different guild each time. Someone posted a topic on the forums about it here: http://us.battle.net/wow/en/forum/topic/20745644941?page=1 - and it turns out this scammer is trying this on multiple realms.

Fast forward a week or so. I logged onto my main, and my GM whispered me, "Can you please type '/run blahblahblah', it's to test a guild addon." Obviously the blahblahblah was the script. The very same script this scammer tries to use.

It turns out my GM was being hacked. By the same person? Can't really know. But it gets a little more interesting. One of the people in the guild did as the hacker asked, and is now whispering other people scripts that he can't even see, the same script the scammer and hacker is using, and also a few others.

No idea what's going on. For lack of a better word, it's like...the script infects the users who run it, forcing them to become part of it.

Does anybody know anything about this? I've googled the /run command in question, and saw a reddit post about this, but nothing about this....whatever is happening in my guild right now.

So it looks like this allows a user to force you to trade over your gold through a script. Previously, this was done through the use of add-ons such as WeakAuras, but it seems they now have the ability to do it on a simple, Vanilla UI. Another user, johsko, posted an explanation for how this might be happening:

Quote

Found parts of the script, but not all of it. It works by replacing a global function that gets called (by the vanilla chat frame) whenever a message is received, with a function that runs the message as if it had been written after /run by the receiver. It allows them to remotely script your UI. The piece of code they whisper you after you input the seemingly harmless /run hooks it up to the chat message event, allowing them to hide any script messages. Meaning they can do anything an addon can, but remotely without you knowing it.

A /reloadui should get rid of it, but until that is done they can use your client for whatever they want, as long as it fits in a whisper.

Edit: This is all with the vanilla UI, no addons needed. It would be easy for Blizzard to fix this particular instance, but they won't really be able to protect against scams like this. There's always going to be some other piece of code someone can tell you to input. The best thing they can do is to disable /script and /run as commands until the player opts in through a setting or something, and put a huge warning on the opt-in to not enable it unless they are absolutely sure they want to.

There has been no official response from Blizzard yet, but a forum thread has been started. Hopefully we'll see acknowledgement and a response soon! 

  • Like 1

Share this post


Link to post
Share on other sites

Interesting to see something like this surfacing when the game is 12 years old :p

  • Like 1

Share this post


Link to post
Share on other sites

Agreed, it is interesting, but I believe it is somehow connected to the value that in-game Gold recived (ability to buy game time and black market auction).

Share this post


Link to post
Share on other sites
1 hour ago, Dantalian said:

Agreed, it is interesting, but I believe it is somehow connected to the value that in-game Gold recived (ability to buy game time and black market auction).

Most likely, yeah. Gold is easy to get in WoD for sure, so many people have larger amounts than they had in previous expansions, while it can now be used for game-time for the first time. The value of gold to these people has now gone from just buying mounts and such to actually paying to play the game.

 

Share this post


Link to post
Share on other sites

The whole story is actually pretty spooky, with all that vanilla UI, script writing and infestation stuff. Blizzard, please, react! 

Share this post


Link to post
Share on other sites

I hope players understand what is the risks are of running /script and /run. I personally will never do this until i'm 100% sure this is a valid fix for one of my issues. Don't want to get scammed and lose all my hard earned dollars :P.

I'll keep a close watch to the official forum thread. Really interested.....

Share this post


Link to post
Share on other sites
10 hours ago, Paracel said:

The whole story is actually pretty spooky, with all that vanilla UI, script writing and infestation stuff. Blizzard, please, react! 

Yeah, it's horrible to think that people can do this sort of stuff. Would be nice to see more PSAs from Blizzard on this.

Share this post


Link to post
Share on other sites

So as nice as this sounds in theory a user/addon is unable to accept a trade without a corresponding hardware event. The AcceptTrade() function has been protected from being called outside of hardware events since it's inception. While you could in theory run addon scripts remotely almost all important functions are protected currently. The only method to circumvent this efficiently would be for the remote user to add additional keybinds (possible as SetBinding() is only protected during combat) or to add additional UI elements that could register a click event (implausible with the character restriction on a whisper). 

 

TL;DR: Good on you guys for alerting the community that had missed the original post, but at this time it is implausible that this is being used for what is claimed as the API simply won't allow that. That said there is plenty of damage that can be done with the unprotected functions.

Share this post


Link to post
Share on other sites
4 hours ago, Psifour said:

So as nice as this sounds in theory a user/addon is unable to accept a trade without a corresponding hardware event. The AcceptTrade() function has been protected from being called outside of hardware events since it's inception. While you could in theory run addon scripts remotely almost all important functions are protected currently. The only method to circumvent this efficiently would be for the remote user to add additional keybinds (possible as SetBinding() is only protected during combat) or to add additional UI elements that could register a click event (implausible with the character restriction on a whisper). 

 

TL;DR: Good on you guys for alerting the community that had missed the original post, but at this time it is implausible that this is being used for what is claimed as the API simply won't allow that. That said there is plenty of damage that can be done with the unprotected functions.

Another post from Reddit on how this is happening, in addition to the one above:

Quote

Software developer here.

This actually doesn't involve any addons at all. It is somewhat misleading. What the /run command does is redirect calls to a built-in WoW API function (RemoveExtraSpaces) to another built-in WoW API function (RunScript) instead.

I suspect the attacker discovered that the default UI calls RemoveExtraSpaces on any text received via chat, including whisper. Once you run that initial script anything else they whisper to you is then interpreted as further /run commands so they've rather trivially enabled themselves to remotely execute anything on your client that can be done via /run.

After that point the cryptic bit including CHAT_MSG_ADDON is actually registering itself for an event anytime a new message is received, either locally or remotely. More than likely this is just setting up additional infrastructure to enable him to further take over your client and probably restore your chat in the process while maintaining an extra hidden button to allow him to continue to remotely execute things.

This is why he's asking you to disable your addons because he was thinking that some other addon was actually interfering with his simple RemoveExtraSpaces hack. I'm surprised we've never seen this sort of thing before as it seems quite trivial. Again though, nothing he's doing requires you to have any addons at all as RemoveExtraSpaces and CHAT_MSG_ADDON are both elements of the default WoW API (a function and event respectively).

If this happened to you a good first step to protect yourself would probably be to:

/run RemoveExtraSpaces=nil /run z:UnregisterAllEvents();

Which will undo the hooking of RemoveExtraSpaces to RunScript, and then remove the event handlers for CHAT_MSG_ADDON from the "z" button the attacker created.

 

Share this post


Link to post
Share on other sites
14 hours ago, Klynwe said:

This is scary, but  ive never seen one on Dalaran-EU

I've personally never seen it on my realm either, but it seems there has been a few reports on numerous servers on the forum thread

  • Like 1

Share this post


Link to post
Share on other sites
On 7/8/2016 at 3:26 AM, Klynwe said:

This is scary, but  ive never seen one on Dalaran-EU

Stormrage has seen it.

Today, on the PTR, I tried running a simple /run command that wipes out all action bars at once and the following warning popped up. Seems Blizzard took note to a degree.

Scripts.jpg

  • Like 1

Share this post


Link to post
Share on other sites
18 minutes ago, Sajakain said:

Stormrage has seen it.

Today, on the PTR, I tried running a simple /run command that wipes out all action bars at once and the following warning popped up. Seems Blizzard took note to a degree.

Scripts.jpg

Saw this mentioned in a reddit thread, very happy to see it coming into the game.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

  • Recently Browsing   0 members

    No registered users viewing this page.

  • Similar Content

    • By Starym
      We have another triple entry in the hotfix ledger, as Radiant Echoes gets more improvements in retail, while Season of Discovery and Cata Classic get additional class changes.
       August 7  (Source)
      Player-characters
      Steady Flight should no longer be removed after entering an Arena. Quests
      We tuned up the Prototype Shredder MK-03 so that “Eye for an Eye” can be completed. Radiant Echoes Event
      Increased Flightstone and upgrade Crest drop rates in the event. Reduced the HP scaling on all event bosses so that they should be killable in a more-reasonable timeframe. Developers’ notes: This includes both ‘minibosses’ (e.g. Hogger, Thorim) and final bosses (e.g. Remembered Onyxia, Ragnaros). Season of Discovery
      Hunter Heart of the Lion once again has a 100 yard range. Warrior The Focused Rage rune will now correctly reduce the cost of Meathook by 3. Cataclysm Classic
      Fixed an issue where Faerie Fire did not deal intended amounts of threat when used on NPCs targeting another unit.
    • By Stan
      Due to a bug introduced with the War Within pre-patch, some players are receiving item level 250 gear from the weekly cache.
      We've seen numerous reports on Reddit and the official forums that the Last Hurrah weekly quest on live servers drop low-level gear for some players. Apparently, the bug was first introduced with the War Within pre-patch two weeks ago and still hasn't been fixed.
      Here's an example of a low item level drop from the Cache of Awakened Treasures by Omnifox.

    • By Starym
      Week 2 brings quite a few changes, as Hunters in particular rise up, while Shadow has a really bad time. The top 3 remains the same and very consistent, so let's jump in and see what's going on.
      Warcraft Logs Points
      The below logs are based on POINTS, and not actual damage or healing, meaning they log the timed completion for the specs, with higher keys getting more points, obviously. The time in which the dungeon is completed is also a factor, but a much, much smaller one, as it grants very few points if you do it significantly faster than just any in-time completion. We're also using the Normalized Aggregate Scores numbers, for clarity, meaning the top spec is marked as 100 and then the rest are ranked in relation to that peak point.
      All Keys
      95th percentile DPS
      The top 3 remains quite stable with the Evoker-Paladin-Warrior trio reigning supreme. We see the first change of the week right after that though, as Frost DK continues its upward march in dungeons as well as in raids, taking 4th from Elemental. Both DKs are on the rise, as Unholy also moves a spot up, taking advantage of Shadow's precipitous 5-spot fall to the bottom of the top 10. Arms remains stable as two Hunters burst in, Beast Mastery taking 8th and Marksmanship 9th, as Frost Mage disappears down towards the bottom. Speaking of the bottom, Devastation gets some new roommates there, as Outlaw and Destruction fall and give Enhancement and Feral a break.

      Mythic+ All Keys 95th Percentile Data by Warcraft Logs.
      All Percentiles
      As with the top percentiles, the top 3 remains solid, but 4th is immediately changed, thanks to Shadow's massive drop in performance this week. The Priest loses even more ground here, falling 9 spots into 13th, opening 4th up for Arms. Beast Mastery moves even higher here, grabbing 5th and moving in front of Elemental and Frost DK, as Marksmanship brings up the rear and completes the Hunter sandwich in 8th. Affliction breaks into the top 10, just ahead of Unholy which dropped to the final spot.

      Mythic+ All Keys All Percentile Data by Warcraft Logs.
      Raw DPS U.GG DPS Rankings
      U.gg's rankings are based on actual DPS taken from Warcraft Logs data, focusing on the top players and span the past two weeks.
      Frost DK finds itself on top in the raw DPS rankings, as Augmentation isn't calculated properly here. Fury and Arms grab the next two spots, moving ahead of Ret, and the Fyr'alath wins continue in 5th, where Unholy finished the legendary axe streak. Even Survival joins the Hunter good times in 8th, where all three specs gather, just ahead of Balance who closes out the top 10.
      Mythic+ All Keystone DPS rankings by u.gg.
       
       
      For even more in-depth data for each individual key head on over to Warcraft Logs. And if you're interested in more info on the specs themselves you can always check out our class guides (updated for the pre-patch), as well as our Mythic+ guides and Mythic+ tier list.
    • By Stan
      For the next two weeks, the Archaeology quest for Spirit of Eche'ro is available on live servers, so don't forget to get the rare mount before it's gone for 6 months!
      How to Get the Spirit of Eche'ro Mount
      1. Download MapCoords or some other add-os that displays coordinates in the game.
      2. Teleport to Azsuna from the Stormwind/Orgrimmar Portal Room or use your Dalaran Hearthstone to reach Dalaran (Legion) if you have one in your inventory.
      3. Seek out Archaeology Trainer Dariness the Learned in Dalaran at 41,26 and learn Archaeology if you already haven't.
      4. Accept The Right Path quest from the Archaeology Trainer and make your way to Thunder Totem in Highmountain.
      5. Talk to Lessah Moonwater to accept Laying to Rest. For the quest, you must collect 600 Bone Fragments of Eche'ro by rotating between four digsites in Highmountain. The exact locations with coords are outlined below.
      Digsite 1: Darkfeather Valley (50, 44) Digsite 2: Dragon's Falls (58, 72) Digsite 3: Path of Huin (44, 72) Digsite 4: Whitewater Wash (39, 65) it takes roughly around 2 hours to get the mount.
      Spirit of Eche'ro
      "The spirit of Huln Highmountain's pet moose."

      Hurry up! You only have until August 21, 2024, to get the mount!
    • By Stan
      MoP Remix characters that will transfer over to retail will receive a gear boost!
      With Patch 11.0.2 now live on Public Test Realms, you can copy over MoP Remix characters from retail! It appears all MoP Remix characters will receive a character boost so you can dive straight into action when the War Within expansion launches.

      We can't unfortunately log in to the game with the MoP Remix char on the PTR so we can't confirm the Item Level of gear for max level characters. However, keep in mind that the gear boost will scale with your level, so if you're below max cap, you will receive gear appropriate to your current level.
      When Can We Expect MoP Remix Characters to Transfer to Retail?
      MoP Remix ends on August 19, so we assume the characters will need to be transferred to retail by August 22 when Early Access begins.
×
×
  • Create New...