1

I watched this video and there you can see how to hide a process by using the software task manager hider:

enter image description here

I tried to use it; in particular I opened the project in Visual Studio 2022, then I right clicked on the folder project, and I compiled it (the compiler did it without any error).

Now I'm wondering how to get the window of the command prompt I showed in the above figure.

2
  • Just run the executable (.exe).
    – harrymc
    Commented Sep 19, 2023 at 16:55
  • Hello @harrymc in the folder and subfolder there aren't .exe files; maybe it was saved somewhere else? Commented Sep 19, 2023 at 17:03

1 Answer 1

0

The project task-manager-hider only creates a DLL. You will find it inside the x64 sub-folder of the main folder where is found the solution file TaskManagerHack.sln.

As the description of the project says, the following is up to you:

Inject the DLL using any method (e.g LoadLibrary) into (64 bit) Task Manager.

The sources for the task that injects the compiled DLL into the Task Manager are unfortunately not included in this project.

2
  • as usual your answers/comments are very useful! Concerning the injection of the DLL file; do you mean that it should be injected into a process? If yes, maybe this tutorial could be ok? youtube.com/watch?v=IBwoVUR1gt8&ab_channel=Zer0Mem0ry Commented Sep 19, 2023 at 19:07
  • 1
    Yes, that's an example of a DLL-injecting process. You will need to modify it so it attacks the Task Manager.
    – harrymc
    Commented Sep 19, 2023 at 19:11

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .