| View previous topic :: View next topic |
| Author |
Message |
nexno How do I cheat?
Reputation: 0
Joined: 05 Jan 2014 Posts: 3
|
Posted: Sun Jan 05, 2014 2:14 pm Post subject: Hiding Files without hooking |
|
|
Hello,
How can I hide a File/Folder with Delphi, without using a hook?
For Taskmanager you can "hide a process" by removing it from the Taskmanagers ListView.
How can I do that for windows explorer?
Can someone help me there? |
|
| Back to top |
|
 |
nexno How do I cheat?
Reputation: 0
Joined: 05 Jan 2014 Posts: 3
|
Posted: Wed Jan 15, 2014 12:39 pm Post subject: |
|
|
| Can someone help me? |
|
| Back to top |
|
 |
pellik Advanced Cheater
Reputation: 0
Joined: 14 Jun 2013 Posts: 93
|
|
| Back to top |
|
 |
nexno How do I cheat?
Reputation: 0
Joined: 05 Jan 2014 Posts: 3
|
Posted: Wed Jan 29, 2014 7:12 pm Post subject: |
|
|
I am not talking about setting the file attributes to hidden or system, Ia talking about completely remove it from the explorers view.
Is it possible without hooking?
Or if it needs hooking using DLL injection, how would you do it? |
|
| Back to top |
|
 |
olala How do I cheat?
Reputation: 0
Joined: 17 Sep 2013 Posts: 8
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sat Feb 01, 2014 2:16 pm Post subject: |
|
|
Given how the file system handles displaying and enumeration files you are going to have to hook something sooner or later to truly get the files to be hidden from view. Whether it be a simple API hook or a SSDT hook. _________________
- Retired. |
|
| Back to top |
|
 |
Polynomial Grandmaster Cheater
Reputation: 5
Joined: 17 Feb 2008 Posts: 524 Location: Inside the Intel CET shadow stack
|
Posted: Sun Feb 02, 2014 2:55 pm Post subject: |
|
|
| Wiccaan wrote: | | Given how the file system handles displaying and enumeration files you are going to have to hook something sooner or later to truly get the files to be hidden from view. Whether it be a simple API hook or a SSDT hook. |
Not necessarily. WDM allows for filter drivers that can do exactly this. That's how transparent NTFS compression / encryption are handled, and how most AVs now do kernel-mode disk access scanning. _________________
It's not fun unless every exploit mitigation is enabled.
Please do not reply to my posts with LLM-generated slop; I consider it to be an insult to my time. |
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 471
Joined: 09 May 2003 Posts: 25823 Location: The netherlands
|
Posted: Sun Feb 02, 2014 3:27 pm Post subject: |
|
|
A filter driver is 'technically' a hook. A microsoft endorsed hook, but it's a hook _________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
Polynomial Grandmaster Cheater
Reputation: 5
Joined: 17 Feb 2008 Posts: 524 Location: Inside the Intel CET shadow stack
|
Posted: Sun Feb 02, 2014 7:16 pm Post subject: |
|
|
Yeah, I'm not really going to argue the nomenclature of it. I prefer to refer to pointer modification / detour patching as a hook, but that's just me. _________________
It's not fun unless every exploit mitigation is enabled.
Please do not reply to my posts with LLM-generated slop; I consider it to be an insult to my time. |
|
| Back to top |
|
 |
|