How to Crack A Plugin Tutorial

Discussion in 'Software' started by sk8816, Jun 24, 2016.

  1. sk8816

    sk8816 Newbie

    Joined:
    Sep 7, 2015
    Messages:
    34
    Likes Received:
    2
    I am asking, not offering the subject of this post.

    It would be great to share. For one, I'm curious. For that matter, I'm curious how to crack an app too. But, with the plugins, such a tutorial would help the community.

    Youtube preferred (does anyone read anymore?). JK.... but not really. A post would be great too.

    Thanks!
     
  2.  
  3. Army of Ninjas

    Army of Ninjas Rock Star

    Joined:
    Sep 24, 2013
    Messages:
    786
    Likes Received:
    446
    Location:
    A series of tubes
    A lot depends on the protection method implemented in the plugin.
     
  4. ehrwaldt kunzlich

    ehrwaldt kunzlich Rock Star

    Joined:
    Oct 4, 2015
    Messages:
    329
    Likes Received:
    302
    Location:
    Utop, IA
    not to discourage you, but it's a steep learning curve...
    you'll need to understand the executable binary format of your platform. for windows i.e. .exe and in the case of plugins .dll.
    once you know how the system interacts with executables you will want to learn how to use a debugger and some other tools.
    oh yeah, some coding knowledge helps too.

    youtube can help, but there's next to nothing focussing on audio plugins.

    here's something that made me realize that i don't have enough time atm to explore reversing more in depth...
     
  5. Backtired

    Backtired Audiosexual

    Joined:
    Jan 15, 2016
    Messages:
    966
    Likes Received:
    652
    It's like music. You can't watch a video on the internet and say "oh good, I'm gonna crack Nexus 3 now!"
    You need to actually learn stuff
     
  6. ehrwaldt kunzlich

    ehrwaldt kunzlich Rock Star

    Joined:
    Oct 4, 2015
    Messages:
    329
    Likes Received:
    302
    Location:
    Utop, IA
    yeah, trying to crack nexus or any other more elaborate protection scheme is probably not the place to start,
    but there's certainly nothing wrong with installing ida & co. and just having a look under the hood of some small
    apps like calc or notepad. also comparing cracked vs original executables can yield some insights.

    anyhow, time is probably the main factor you want to consider with such endeavors.
    prepare to sink countless hours into this to be on a level with the "scene" folks.

    you got a surplus of nerdtime, why not learn c++ and write a plugin?
     
  7. Sylenth.Will.Fall

    Sylenth.Will.Fall Audiosexual

    Joined:
    Aug 21, 2015
    Messages:
    2,437
    Likes Received:
    1,661
    I would have thought best way is to infiltrate the company who make them, or is that maybe a bit too James Bond ?
     
    • Like Like x 1
    • Funny Funny x 1
    • List
  8. ArticStorm

    ArticStorm Moderator Staff Member

    Joined:
    Jun 7, 2011
    Messages:
    7,240
    Likes Received:
    3,525
    Location:
    AudioSexPro
    there are communities dealing with basic targets to learn.
    tuts4you.com being one of these.

    if you want to get started, you can download the lena151 tutorials, they are maybe a little bit outdated, but they fill you in with the basics.

    reversing plugins is a little bit different as normal programs like for example firefox.exe! you need to have the plugin running in a host, so you can handle it like a normal program. that alone sometimes makes it hard.

    i could give you a small list of good starting plugins, which use basic protection and are not to complicated to reverse.

    i never figured out how to remove these audio noise nags or when audio audio is muted, which you have a lot in these little synthmaster plugins.
     
    • Like Like x 1
    • Agree Agree x 1
    • Winner Winner x 1
    • Useful Useful x 1
    • List
  9. so... no Udemy tutorials?!
     
  10. ArticStorm

    ArticStorm Moderator Staff Member

    Joined:
    Jun 7, 2011
    Messages:
    7,240
    Likes Received:
    3,525
    Location:
    AudioSexPro
    Nexus and all the dongle crypto stuff is super hard, the only way is to analyse it and emulate it or you find a way to strip away the protection code, like a hole in the protection like for ilok (but i guess elic, is full hardware based, so this way wont exist, otherwise, somebody broke hardware ilok and not the soft-ilok)
     
    Last edited: Jun 24, 2016
  11. Rasputin

    Rasputin Platinum Record

    Joined:
    Jun 29, 2012
    Messages:
    364
    Likes Received:
    235
    There are plenty of non-protection specific things to learn: How to use a debugger, binary vs. hex/ASCII, API calls, x86 Assembly, and bitwise operations/logic (like what happens when you're XORing by 1, ANDing by 0, etc.) for starters. Then explore common methods for calculating checksums/CRCs.

    Then there's the various common forms of crypto: AES and RSA being used frequently.

    Next step would be to just jump in the shallow end of the pool and actually do it. Work your way up to the hard stuff, and hopefully you'll meet some hip and in-the-know people to give you some specific advice.

    But... this is typically a classic case of "if you even have to ask, then it's not for you." If you have some very rare and odd friends willing to show you the ropes, if you're a terrific self-starter with lots of discipline and time to waste, or if you've already got a degree in computer science then the idea might be worth investigating, but in most cases it's just a pipe-dream that people should shelve.
     
    • Like Like x 3
    • Agree Agree x 1
    • List
  12. mercurysoto

    mercurysoto Audiosexual

    Joined:
    Nov 23, 2011
    Messages:
    1,432
    Likes Received:
    1,247
    Location:
    The bottom of the rabbit hole, next to Alice's
    However enlightening the answers have been given here so far, the steep learning curve and lack of in-the-open information preserves the craft. If how-to-crack tutorials were exposed to the public and posted on YouTube, a couple of things at least might happen: (1) DCMA and law enforcement authorities would be on the tap, (2) Manufacturers, security services, and plugin developers would change their coding methods, and (3) the web would be flooded with half-baked cracks that would do more harm than good to anyone trying before buying. I can only imagine the theads at audio forums:

    Nexus 3 doesn't load -Help!
    Nebula keeps crashing my system and all the HO consoles are failing on me!

    Of course, there's nothing that can't be learned. Someone out here once said that nothing is uncrackable. It only takes time and commitment to it.
     
  13. r4e

    r4e Audiosexual

    Joined:
    Sep 6, 2014
    Messages:
    852
    Likes Received:
    1,206
    If you really want to know/start learning how to get into reversing, have a look at these nice tutorials:

    Google -> "Lenas Reversing for Newbies"
    or -> "SND Reversing Tutorials"
    (it's both the same).

    It contains the following stuff for beginners:
    01. Olly + assembler + patching a basic reverseme
    02. Keyfiling the reverseme + assembler
    03. Basic nag removal + header problems
    04. Basic + aesthetic patching
    05. Comparing on changes in cond jumps, animate over/in, breakpoints
    06. "The plain stupid patching method", searching for textstrings
    07. Intermediate level patching, Kanal in PEiD
    08. Debugging with W32Dasm, RVA, VA and offset, using LordPE as a hexeditor
    09. Explaining the Visual Basic concept, introduction to SmartCheck and configuration
    10. Continued reversing techniques in VB, use of decompilers and a basic anti-anti-trick
    11. Intermediate patching using Olly's "pane window"
    12. Guiding a program by multiple patching.
    13. The use of API's in software, avoiding doublechecking tricks
    14. More difficult schemes and an introduction to inline patching
    15. How to study behaviour in the code, continued inlining using a pointer
    16. Reversing using resources
    17. Insights and practice in basic (self)keygenning
    18. Diversion code, encryption/decryption, selfmodifying code and polymorphism
    19. Debugger detected and anti-anti-techniques
    20. Packers and protectors : an introduction
    21. Imports rebuilding
    22. API Redirection
    23. Stolen bytes
    24. Patching at runtime using loaders from lena151 original
    25. Continued patching at runtime & unpacking armadillo standard protection
    26. Machine specific loaders, unpacking & debugging armadillo
    27. tElock + advanced patching
    28. Bypassing & killing server checks
    29. Killing & inlining a more difficult server check
    30. SFX, Run Trace & more advanced string searching
    31. Delphi in Olly & DeDe
    32. Author tricks, HIEW & approaches in inline patching
    33. The FPU, integrity checks & loader versus patcher
    34. Reversing techniques in packed software & a S&R loader for ASProtect
    35. Inlining inside polymorphic code
    36. Keygenning
    37. In-depth unpacking & anti-anti-debugging a combination packer / protector
    38. Unpacking continued & debugger detection by DLL's and TLS
    39. Inlining a blowfish scheme in a packed & CRC protected dll + unpacking Asprotect SKE 2.2
    40. Obfuscation and algorithm hiding

    It's no basic knowledge for audio software - you have to learn everything, you can find
    and you need alot of time but everyone started small so don't hesitate to try it for yourself.
     
    • Like Like x 4
    • Useful Useful x 4
    • List
  14. @r4e did you know a solid place where to get it? google results always point me to tuts4you but the file/download is corrupted...
     
  15. bigFlow

    bigFlow Ultrasonic

    Joined:
    Sep 19, 2014
    Messages:
    72
    Likes Received:
    31
    I would really appreciate that as well!
     
  16. ArticStorm

    ArticStorm Moderator Staff Member

    Joined:
    Jun 7, 2011
    Messages:
    7,240
    Likes Received:
    3,525
    Location:
    AudioSexPro
    @bigFlow write me a pm please. will give you a little list.
     
  17. bigFlow

    bigFlow Ultrasonic

    Joined:
    Sep 19, 2014
    Messages:
    72
    Likes Received:
    31
    Done :) Is there any specific host you could recommend?
     
  18. ehrwaldt kunzlich

    ehrwaldt kunzlich Rock Star

    Joined:
    Oct 4, 2015
    Messages:
    329
    Likes Received:
    302
    Location:
    Utop, IA
  19. NOiR

    NOiR Noisemaker

    Joined:
    Mar 13, 2016
    Messages:
    4
    Likes Received:
    3
    It isn't audio/plugin-related but can be helpful in understanding reversing process of OS X app:
     
  20. Hackerman

    Hackerman Noisemaker

    Joined:
    Apr 5, 2016
    Messages:
    10
    Likes Received:
    3
    you speak spanish?
    introduccion al ollydbg desde 0 por ricardo Narvaja, Ex member of C.O.R.E
    in english available too
    IN SPANISH,:
    foroelhacker.net (slow activity)
    crackslatinos (slow activity)


    visit, exetools, TUT4YOU IN ENGLISH
    russian
    exeL@B
    arabian:
    http://www.aoreteam.com
    http://www.at4re.com/news.php
    forum:
    http://www.at4re.com/f/activity.php
    see you:
    http://foro.el-hacker.com/f44/100-tutoriales-de-ingenieria-inversa-por-aore-411976/ tutorials in english

    how to crack a ILOK 1??? BY SND:

    http://ricardonarvaja.info/WEB/CURS...ng.The.Hooked.Ring0.Int3.Stolen.Calls-SND.rar

    IN ENGLISH

    PLEASE MAKE A TUTORIAL HOW TO CRACK ILOK 2 AND 3......AUDIOUTOPIA
     
  21. Kookaboo

    Kookaboo Rock Star

    Joined:
    Jun 17, 2011
    Messages:
    1,456
    Likes Received:
    428
    Location:
    Here and there.
    How to Crack A Plugin Tutorial
    Having certain experiences with Cracking/Reverse Engineering i can tell you that you
    won't actually find useful Tutorials on the Internet, especially for Audio-Plug-Ins! :unsure: :no:
    A surprising thing concerning the disassembling of Audio Plug-Ins is also that crackers themselves
    very, very seldom share their knowledge with others. Egoism or a sort of TABU...who knows?

    The main difficulty in reversing software lies in the different, obfuscated terms used by software developers,
    which of course use also their *secret languages* in order to prevent too easy cracking. What makes Plug-ins harder
    to crack is also the fact that you have to use a host software to run them, that makes the interception of
    "messages" from the Plug-Ins really tiresome, complicated. Searching for useful MAC cracking Tutorials gives
    furthermore really poor results. One can find Tutorials for Windows software...(not Plug-Ins) but most of them
    are in miserable, very bad quality! Again: the lack of solidarity between crackers makes cracking a "solitary mission".
    _________________________________________________________________________________________________________________

     
    • Interesting Interesting x 1
    • List
Loading...
Similar Threads - Crack Plugin Tutorial Forum Date
Installing Maschine along with NI cracked plugins. Maschine Mar 23, 2024
Plugin Alliance legit + cracked together? Software Mar 17, 2024
MASHINE Mikro MK3 along with cracked NI Plugins Software Mar 6, 2024
mastering the mix plugins cracking fail Software Mar 1, 2024
how do I go about updating waves plugins? (cracked) Software Feb 28, 2024
Loading...