79110474

Date: 2024-10-21 14:26:37
Score: 1
Natty:
Report link

You can use icacls to display or discretionary access control lists (DACLs) on specified files.

Create a batch file like file_permissions.bat and paste following

@echo off

for /f "tokens=*" %%a in ('dir /b /s /o') do (

    icacls "%%a" >> access_list.txt

)

Does this help?

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Shaan