mirror of
https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite.git
synced 2026-02-14 08:36:38 +00:00
7 lines
294 B
Python
7 lines
294 B
Python
class PEASRecord:
|
|
def __init__(self, name, auto_check: bool, exec: list, filerecords: list):
|
|
self.name = name
|
|
self.bash_name = name.upper().replace(" ","_").replace("-","_")
|
|
self.auto_check = auto_check
|
|
self.exec = exec
|
|
self.filerecords = filerecords |