Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New tool: icacls #121

Closed
Patrick-DE opened this issue Jan 2, 2024 · 0 comments
Closed

New tool: icacls #121

Patrick-DE opened this issue Jan 2, 2024 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@Patrick-DE
Copy link
Owner

{
  "id": "f052bc52-ff05-4a0a-93d1-0f91f0e2c7aa",
  "name": "icacls",
  "phases": ["Host Enumeration", "Privilege Escalation"],
  "category": "Windows Utility",
  "stealthy": false,
  "platforms": ["Windows"],
  "source": "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/icacls",
  "description": "Icacls is a command-line utility to display or modify discretionary access control lists (DACLs) of files and folders on Windows systems.",
  "undetected": [],
  "detected": [],
  "commands": [
    {
      "id": "fe1db193-2b85-44de-9f27-441f572ff036",
      "name": "View Permissions for a File/Folder",
      "description": "Display the permissions associated with a specific file or folder.",
      "tag": "FILE:PERMISSIONS",
      "results": ["FILE:PERMISSIONS:DETAILS"],
      "cmd": "icacls <file_or_folder_path>",
      "requirements": {
        "and": [
          { "tag": "FILE:EXISTENCE" },
          { "tag": "AUTHENTICATION" }
        ]
      }
    },
    {
      "id": "44f5a472-3c8e-4dc2-b195-1305ac29a86a",
      "name": "Grant Permissions to a User/Group",
      "description": "Grant specific permissions to a user or group for a file or folder.",
      "tag": "FILE:PERMISSIONS:MODIFY",
      "results": ["FILE:PERMISSIONS:MODIFY:SUCCESS"],
      "cmd": "icacls <file_or_folder_path> /grant <user_or_group>:<permissions>",
      "requirements": {
        "and": [
          { "tag": "FILE:EXISTENCE" },
          { "tag": "AUTHENTICATION" },
          { "tag": "ADMIN:PRIVILEGE" }
        ]
      }
    }
  ],
  "latest_commit": "",
  "language": "Windows Command Line"
}
@Patrick-DE Patrick-DE added the enhancement New feature or request label Jan 2, 2024
@Patrick-DE Patrick-DE self-assigned this Jan 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant