Skip to content

Commit

Permalink
add hidden files
Browse files Browse the repository at this point in the history
  • Loading branch information
xanhacks committed Dec 15, 2022
1 parent 6b07fcc commit 461d56a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docs/malware/others.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: Others
description: Others
---

# Others

## Hidden files

```cmd
C:\Users\[...]\AppData\Roaming>dir
[...]
15/12/2022 13:30 <DIR> .
15/12/2022 13:30 <DIR> ..
[...]
C:\Users\[...]\AppData\Roaming>dir /a
[...]
15/12/2022 13:30 <DIR> .
15/12/2022 13:30 <DIR> ..
08/11/2021 21:24 95 583 MicrosoftSearchIndexer
[...]
```

Unhide a file :

```
C:\Users\[...]\AppData\Roaming>attrib
A SH C:\Users\[...]\AppData\Roaming\MicrosoftSearchIndexer
C:\Users\[...]\AppData\Roaming>attrib -s -h MicrosoftSearchIndexer
C:\Users\[...]\AppData\Roaming>attrib
A C:\Users\[...]\AppData\Roaming\MicrosoftSearchIndexer
```

0 comments on commit 461d56a

Please sign in to comment.