WoW for OSX now Sandboxed??? menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 29
  1. #1
    NessK's Avatar Member
    Reputation
    13
    Join Date
    Jan 2015
    Posts
    100
    Thanks G/R
    2/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    WoW for OSX now Sandboxed???

    Code:
    Sections for '/System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox' (x86_64):
    Sections for '/System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox' (x86_64):

    WoW for OSX now Sandboxed???
  2. #2
    xalcon's Avatar Contributor ふたなり
    Authenticator enabled
    Reputation
    198
    Join Date
    Oct 2008
    Posts
    291
    Thanks G/R
    20/58
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    I'm not a mac user so I'm not that much informed about the mac osx sandboxing capabilities but sandboxing is in general (atleast in my opinion) a good thing since it allows restricting access to sensitive resources.

    I might misunderstand the capabilities of App Sandbox (or sandboxes in general) but this looks more like a compliance thing to me rather than some anti-cheat measurement, especially since sandboxes dont protect your process from other non-sandboxed processes.
    "Threads should always commit suicide - they should never be murdered" - DirectX SDK

  3. #3
    doityourself's Avatar ★ Elder ★
    Reputation
    1424
    Join Date
    Nov 2008
    Posts
    843
    Thanks G/R
    35/448
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    You can still access the process and read/write with root rights. Root is already required for a long time now on mac to write to the process. So no changes there.

  4. #4
    NessK's Avatar Member
    Reputation
    13
    Join Date
    Jan 2015
    Posts
    100
    Thanks G/R
    2/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Change anything, it just crashes.

  5. #5
    doityourself's Avatar ★ Elder ★
    Reputation
    1424
    Join Date
    Nov 2008
    Posts
    843
    Thanks G/R
    35/448
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by NessK View Post
    Change anything, it just crashes.
    no it doesnt

  6. #6
    NessK's Avatar Member
    Reputation
    13
    Join Date
    Jan 2015
    Posts
    100
    Thanks G/R
    2/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by king48488 View Post
    no it doesnt
    Not really sure how to respond to your 3 word quote here buddy. I have been looking at this for some time and just throwing 'no it doesnt' out there is counter productive.

    I can fully see Beta BFA and all its lovely memory. Everything looks normal. If I use BitSlicer (or any other memory read / write program) and try to attempt to make a change (lets say 77 to EB on a single address), about 5 seconds later WoW crashes. So if your saying that you are able to do something like this and not have it crash, I am all ears.

    Not trying to start an argument, just trying to solve this issue or least understand the issue.

    Thanks.

  7. Thanks Corthezz, Scumstation, culino2 (3 members gave Thanks to NessK for this useful post)
  8. #7
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1584
    Join Date
    May 2010
    Posts
    1,829
    Thanks G/R
    188/531
    Trade Feedback
    16 (100%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    I think he is getting at the point that it's not crashing because its "Sandboxed". In the Windows version of WoW, they do checks on the image. I would think its the same for the Mac client. So its more of a general wow anti-tamper problem, something not exclusive to mac. I would also guess that king48488 has bypassed this.

  9. #8
    sbn666's Avatar Member
    Reputation
    4
    Join Date
    Mar 2008
    Posts
    21
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It crashed even if you do not alter anything. Attach bit slicer and add a random breakpoint and just resume when it's hit will crash wow. I tried doing this and it just crashed the game.

    Code:
    class Script(object):
        def __init__(self):
            debug.addBreakpoint(0x1016F6965, self.resume)
        def resume(self, instructionAddress, registers):
            debug.resume()
        def finish(self):
            debug.log('Cleaning up..')
    If there's a way around this I'd love to hear more as well.

  10. #9
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1584
    Join Date
    May 2010
    Posts
    1,829
    Thanks G/R
    188/531
    Trade Feedback
    16 (100%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Is that a software breakpoint? I would think they have anti-debugging protection. Not a mac user or I would check.

  11. #10
    sbn666's Avatar Member
    Reputation
    4
    Join Date
    Mar 2008
    Posts
    21
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    instruction breakpoint. Tried using lldb adding a hardware breakpoint like this:

    Code:
    (lldb) breakpoint set -a 0x1016F6965
    Breakpoint 1: where = World of Warcraft`___lldb_unnamed_symbol60175$$World of Warcraft + 1829, address = 0x00000001016f6965
    (lldb) br com add
    Enter your debugger command(s).  Type 'DONE' to end.
    > continue 
    Process 10636 stopped
    * thread #1, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=1, address=0x0)
        frame #0: 0x0000000000000000
    error: memory read failed for 0x0
    Target 0: (World of Warcraft) stopped.
    As you ca see it crashed as well.

  12. #11
    NessK's Avatar Member
    Reputation
    13
    Join Date
    Jan 2015
    Posts
    100
    Thanks G/R
    2/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DarkLinux View Post
    I think he is getting at the point that it's not crashing because its "Sandboxed". In the Windows version of WoW, they do checks on the image. I would think its the same for the Mac client. So its more of a general wow anti-tamper problem, something not exclusive to mac. I would also guess that king48488 has bypassed this.
    Been on this for a few weeks now and if King48488 has any hints as to how to bypass this I am more then all ears. The subject has been non existent everywhere I have looked..
    Last edited by NessK; 06-26-2018 at 09:45 AM.

  13. #12
    culino2's Avatar Elite User
    Reputation
    336
    Join Date
    Feb 2013
    Posts
    181
    Thanks G/R
    139/72
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by NessK View Post
    Been on this for a few weeks now and if King48488 has any hints as to how to bypass this I am more then all ears. The subject has been non existent everywhere I have looked..
    I'm currently not working with WoW anymore (waiting for their app update and classic ), but some decades ago it was exact the same with warden, you haven't found any information on how to bypass this shit, you've only found some cool names like cypher, kynox, harko etc. until some guy made the first patterns public. People kept posting offsets and how to detour warden like they learned it on their own. Idk why, but people are very paranoid when it comes to stuff like this. Not to mention Blizzard was usually super lazy back then, just don't blame the warden guy and you're fine.

    Don't get me wrong, it's not nice to reverse the crap for other people, warden is nothing against this, so I can understand King if he's keeping stuff private but only posting 3 words makes no sense at all. I still love his work, though,

    I would love to tell you more but I never faced any problems on windows, the only thing I had to update in my hack was the manual mapping crap. My account is still alive since cataclysm, even if I've used some cool exploits \o
    Last edited by culino2; 07-01-2018 at 04:12 AM. Reason: undelete by 'request'

  14. Thanks Corthezz (1 members gave Thanks to culino2 for this useful post)
  15. #13
    doityourself's Avatar ★ Elder ★
    Reputation
    1424
    Join Date
    Nov 2008
    Posts
    843
    Thanks G/R
    35/448
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by culino2 View Post
    I'm currently not working with WoW anymore (waiting for their app update and classic ), but some decades ago it was exact the same with warden, you haven't found any information on how to bypass this shit, you've only found some cool names like cypher, kynox, harko etc. until some guy made the first patterns public. People kept posting offsets and how to detour warden like they learned it on their own. Idk why, but people are very paranoid when it comes to stuff like this. Not to mention Blizzard was usually super lazy back then, just don't blame the warden guy and you're fine.

    Don't get me wrong, it's not nice to reverse the crap for other people, warden is nothing against this, so I can understand King if he's keeping stuff private but only posting 3 words makes no sense at all. I still love his work, though,

    I would love to tell you more but I never faced any problems on windows, the only thing I had to update in my hack was the manual mapping crap. My account is still alive since cataclysm, even if I've used some cool exploits \o
    Well since 7.3 you have to do a bit more stuff even for windows. It's not warden but their obfuscation/protection now. But you can still get around that. LIke 2-3 weeks ago they also added a protection against direct binary patching of the .text section.

    But it's not hard to do memory patching because there are not many protections for that;

  16. #14
    WiNiFiX's Avatar Banned
    Reputation
    242
    Join Date
    Jun 2008
    Posts
    447
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I know its semi-off-topic, but i think it goes well in this chat - what sort of things do your guys private bots do? (no I dont want to buy them / bug you about them) - purely curious how others pass the time - for now pixels still do what i need for rotations.

  17. #15
    doityourself's Avatar ★ Elder ★
    Reputation
    1424
    Join Date
    Nov 2008
    Posts
    843
    Thanks G/R
    35/448
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by WiNiFiX View Post
    I know its semi-off-topic, but i think it goes well in this chat - what sort of things do your guys private bots do? (no I dont want to buy them / bug you about them) - purely curious how others pass the time - for now pixels still do what i need for rotations.
    I dont do bots. I don't like them

Page 1 of 2 12 LastLast

Similar Threads

  1. [Selling] safy and cheap wow gold $9.5 for 10K NOW !!!!
    By yobob in forum World of Warcraft Buy Sell Trade
    Replies: 1
    Last Post: 08-04-2012, 09:48 PM
  2. WTT wow for steam
    By Joetherogue in forum Members Only Accounts And CD Keys Buy Sell
    Replies: 1
    Last Post: 09-28-2007, 12:48 PM
  3. How to get WoW for free...the E-Z way!
    By Archonox in forum World of Warcraft Guides
    Replies: 32
    Last Post: 09-25-2007, 06:47 AM
  4. Play wow for 10 bucks for 40 days every 40 days!
    By WOW888 in forum World of Warcraft Exploits
    Replies: 15
    Last Post: 07-03-2007, 01:55 AM
  5. AMAZING WoW Glossary. all the terms of WoW for the noobs.
    By Stabuindabak in forum World of Warcraft Guides
    Replies: 17
    Last Post: 06-30-2007, 06:07 PM
All times are GMT -5. The time now is 08:12 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search