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 Staff
      Savage Ebony Battle Turtle is an upcoming promotion mount coming in Patch 10.2.7.
      The mount will be available in some sort of Promotion in the future.
      "The cannons are powered by an unquenchable rage to seek out enemies and bring them to justice. Nothing can outrun a cannon."

    • By Staff
      The new War Within Allied Races was added to the Alpha today and we already have a full look at not only all their customization options, but their dances as well, courtesy of MrGM! You can check out the Earthen's racial abilities here if you missed them earlier. 
      Let's start with the more dynamic feature, with both male and female dances:
      And then there's big amount of customization options, as well as a size comparison with regular dwarves:

      So, are we liking the new Allied Race overall? More than actual dwarves?
    • By Staff
      Here's a really cool possibility for the War Within, as a very subtle and mildly mysterious comment from Executive Producer and Vice President for WoW, Holly Longdale, may be hinting at our Warband characters getting a lot more involved in our travels! 
      First spotted by UlthansWrath, Longdale came up to Taliesin & Evitel at the recent London War Within Alpha press event and had a short chat about the Warband screen, when she casually said "wouldn't it be cool if those were the characters you took as your followers in your Follower Dungeons?" After the obvious confirmation from Taliesin and Evitel that, yes, yes it would be cool, she just said "hm" and that was the end of the conversation.
      Obviously this isn't any sort of official confirmation, but considering this is a really awesome idea, it seems likely Blizzard are at the very least discussing it, if not already working on it.

      The Warband system is already great, and this would add a lot to it for players that choose to go solo into dungeons, as it would give them even more motivation to get some great characters in their Warband - even if it was just a cosmetic option.
      So, what do you think, will we be seeing this feature when the War Within launches?
    • By Starym
      We have quite a few Season 4 fixes today, with the LFR item level requirement, many item-related fixes, as well as some Season of Discovery improvements, and more!
      April 25 (Source)
      Classes
      Fixed a bug with damage dealt by Rip and Tear, Internal Combustion, and Tear Open Wounds in Awakened raids. Dungeons and Raids
      Raid Finder now required item level 463 if the raid is Awakened. Brackenhide Hollow Addressed an issue where Stinkbreath can turn while casting Stinkbreath. Addressed an issue where Wilted Oak’s Necrotic Breath visual can be out of sync with the creature’s facing. Items
      Veteran track items or items obtained from Awakened Outdoor Activities should now properly be able to be converted into Class Set items at the Revival Catalyst. Resolved multiple issues with Dragonflight Season 4 tier set items not functioning after equipping certain Season 3 set items. Dreambound gear caches from the Dreamsurge Coalesence vendor will now correctly award Season 4 Explorer 1/8 (item level 454 gear) and tokens will properly display the correct item level of its contents. Fixed an issue that prevented Tiered Medallion Setting from functioning on Season 4 necklaces. Fixed an issue preventing Season 4 crests from properly converting to their lower-tier currency. Quests
      “A Multi-Front Battle” can now be completed. Season of Discovery
      Using an Unconscious Dig Rat no longer dismisses pets. Mage Displacement no longer functions if the most recent use of Blink was on a different continent or in a different instance.
    • By Staff
      Affliction is getting plenty of changes today as well, with Blizzard detailing the reasoning behind certain choices.
      Affliction (Source)
      Greetings Warlocks,
      Today, we have various Core and Affliction tree changes hitting the Alpha. We want to take a moment to go a bit more in depth as to what certain changes were made and why. As a refresher, here are the goals for our Core and Afflictions that we posted last week along with some additional goals that we can dig into here.
      Class
      Ensure each capstone is interesting and exciting. Reduce the amount of throughput talents, to free up utility choices. Reduce the number of ranks for talents that don’t warrant multiple ranks. Affliction
      Address the tuning of Malefic Rapture in single-target and multi-target situations. Reduce complexity and the amount of active buttons that contribute to it. Erase the need to choose between a single-target or multi-target profile by adding more adaptability and flexibility. While we cannot go over every change here, we’d like to get a bit more detailed than last week’s update and explain some of the bigger changes coming in this build.
      Class Tree Throughput
      We’re removing a lot of throughput talents from the class tree to allow warlocks to pick up more utility without feeling forced to take mandatory talents to be competitive. These talents aren’t compelling options when placed against utility as they will always be the right answer to have. This allows us to move that power into the specialization trees and tailor throughput-centric talents to be specific to that specialization’s gameplay.
      Malefic Rapture
      In addition to becoming baseline for Affliction, we are introducing new talents that will help Malefic Rapture become the go-to spender for both single-target and multi-target situations. This should also shift Seed of Corruption to being a means to apply Corruption to multiple targets rather than what you spam in dungeons. In addition, we are redesigning Siphon Life to be friendlier to Affliction’s rotation and expect that its new design will make it easier to optimize Malefic Rapture.
      Affliction’s Adaptability
      While we do want Affliction warlocks to have a preferred talent setup for single- versus multi-target situations, we don’t want it to feel like they are powerless if they are in the opposite situation. By focusing on Malefic Rapture being Affliction’s main spender and removing talents that are only valuable in multi-target situations (Soul Flame, Soul Swap, Doom Blossom, etc.), we’re hoping that the Affliction tree feels less punishing to fill out.
      Is This It?
      Not at all. We expect to make changes based on feedback and our own playtesting. We want to get the ball rolling on changes we knew we want to make, so we could start the discussion early on and make adjustments before The War Within launches.
      Thank you all for the continued discussions and we look forward to your feedback!
      And here are the full changes from the development notes:
      Affliction (Source)
      Affliction Malefic Rapture is now baseline and has been removed from the Affliction tree. Unstable Affliction has been moved to row 1. Writhe in Agony has been moved to row 2. Absolute Corruption and Siphon Life have been moved to row 3. New Talent: Cunning Cruelty - Malefic Rapture has a chance to trigger a Shadow Bolt Volley, dealing damage to 5 enemies within 10 yards of your current target. New Talent: Summoner’s Embrace – Increases the damage dealt by your spells and your demon by 3%. New Talent: Death’s Embrace – Increases Drain Life healing by 30% while your health is at or below 35% health. Damage done by your Agony, Corruption, Unstable Affliction, and Malefic Rapture is increased by 5% when your target is at or below 20% health. New Talent: Relinquished - Agony has 1.25 times the normal chance to generate a Soul Shard. New Talent: Improved Shadow Bolt - The cast time of Shadow Bolt is reduced by 15% and Shadow Bolt deals 20% increased damage. New Talent: Volatile Agony - Refreshing Agony with less than 10 seconds remaining deals Shadow damage to its target and enemies within 10 yards. New Talent: Summoner’s Embrace - Increases the damage dealt or life drained by your Shadow spells and your demon by 3%. New Talent: Malediction - The periodic critical strike chance of Agony, Corruption, and Unstable Affliction is increased by 10%. New Talent: Contagion - Critical strike damage dealt by Agony, Corruption, and Unstable Affliction is increased by 20%. New Talent: Cull the Weak - Malefic Rapture deals 5% increased damage for each enemy it hits. New Talent: Empowered Unstable Affliction - Reduces the cast time of Unstable Affliction by 10/20% and damage dealt by Unstable Affliction has a 5/10% chance to generate a Soul Shard. New Talent: Oblivion - Unleash wicked magic upon your target’s soul, dealing Shadow damage over 3 sec. Deals 10% increased damage, up to 30%, per damage over time effect you have active on the target. Costs 2 Soul Shards. 45 sec cooldown. Siphon Life has been redesigned - Corruption deals 20% increased damage and heals you for 5% of the damage dealt. Kindled Malice has been redesigned - Malefic Rapture damage increased by 4/8%. Corruption damage increased by 10/20%. Malevolent Visionary has been redesigned – Increases the damage of your Darkglare by 70%. When Darkglare extends damage over time effects it also sears the target for Shadow damage. Shadow Embrace has been redesigned - [Shadow Bolt/Drain Soul] apply Shadow Embrace, increasing your damage dealt to the target by [4.0%/2.0%] for 16 sec. Stacks up to [2/4] times. Pandemic Invocation has been removed. Sow the Seeds has been removed. Soul Swap has been removed. Doom Blossom has been removed. Dread Touch has been removed. Soul Flame has been removed. Agonizing Corruption has been removed. Seized Vitality has been removed. Soul-Eater’s Gluttony has been removed. Grand Warlock’s Design has been removed. Grim Reach has been removed. Xavius’ Gambit has been moved to row 6. Withering Bolt has been moved to row 8. Shadow Embrace has been moved to row 7. Inevitable Demise has been moved to row 6. Tormented Crescendo has been moved to row 7. Sacrolash’s Dark Strike has been moved to row 5. Grimoire of Sacrifice has been moved to column 4. Creeping Death has been moved to column 3. Dark Virtuosity has been moved to column 1. Malevolent Visionary has been moved to row 10. Summon Darkglare has been moved to row 9.
×
×
  • Create New...