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

[enhancement] Add credentials check in Users module #99

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
enhancement: Add credentials check in Users module
  • Loading branch information
owalid committed Aug 9, 2024
commit e7556ab7b5612355131956f996c5e97442cd6fea
8 changes: 8 additions & 0 deletions smbclientng/modules/Users.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@ class Users(Module):
"checks": {
"ShareX": "/{users_directory}/{user}/Documents/ShareX/Screenshots/"
}
},
"credentials": {
"name": "Credentials",
"checks": {
"Aws": "/{users_directory}/{user}/.aws/",
"GCP": "/{users_directory}/{user}/AppData/Roaming/gcloud",
"Ssh": "/{users_directory}/{user}/.ssh/"
}
}
}

Expand Down
Loading