(self, principal_security_descriptor)
| 328 | # Main read funtion |
| 329 | # Prints the parsed DACL |
| 330 | def read(self, principal_security_descriptor): |
| 331 | parsed_dacl = self.parse_dacl(principal_security_descriptor["Dacl"]) |
| 332 | self.print_parsed_dacl(parsed_dacl) |
| 333 | |
| 334 | # Permits to export the DACL of the targets |
| 335 | # This function is called before any writing action (write, remove or restore) |
no test coverage detected