diff options
| author | 5epi0l <91630053+5epi0l@users.noreply.github.com> | 2025-11-17 08:51:19 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-17 08:51:19 +0530 |
| commit | f87aee9fee01e10bcd74fa984756505e24699055 (patch) | |
| tree | e686ab423248405b653c98c6651f30ce7146397b | |
| parent | 4702733b444ea5c3654d0366359d43064e89e3d8 (diff) | |
Update resurrect.py
| -rw-r--r-- | Resurrect/resurrect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Resurrect/resurrect.py b/Resurrect/resurrect.py index b788fc0..ab2cdeb 100644 --- a/Resurrect/resurrect.py +++ b/Resurrect/resurrect.py @@ -96,7 +96,7 @@ def find_deleted_objects(args): sam = attrs.get('sAMAccountName') objectclass = attrs.get('objectClass')[3] data = [[sam, guid, ou, objectclass]] - headers = ['username', 'GUID', 'OU', 'objectClass', 'DN'] + headers = ['username', 'GUID', 'OU', 'objectClass'] print(tabulate(data, headers=headers, tablefmt='grid')) except Exception as e: print("[-] An error has occured", e) |
