Implementation in running .Net 2.0 AppDomain

I am currently trying to extend the Zune software so as not to start Zune (e.g. ZuneLCDApi).

To do this, I need to access one or two variables that Zune has in memory in its AppDomain startup.

Crack.Net does not offer Zune as a target, and I do not know if this is because it works on .Net 2.0 or because it is a child of ZuneLauncher.

In fact, I want to create a β€œproxy” for several variables inside Zune, so I can skip songs, play / pause, etc.

So, as I understand it, this is what I have to do:

  • Find Zune AppDomain
  • Paste some code into it
  • Print the variables that I want to work with

What is the best way to do this? I really want Zune to have a scripting interface! > _ & L;

+4
source share
1 answer
+3
source

Source: https://habr.com/ru/post/1337755/


All Articles