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

Add AnyDesk paths #165

Merged
merged 2 commits into from
Apr 8, 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
6 changes: 5 additions & 1 deletion acquire/acquire.py
Original file line number Diff line number Diff line change
Expand Up @@ -1217,9 +1217,13 @@ class RemoteAccess(Module):
("glob", "sysvol/Program Files/TeamViewer/*.log"),
("glob", "sysvol/Program Files (x86)/TeamViewer/*.log"),
("glob", "AppData/Roaming/TeamViewer/*.log", from_user_home),
# anydesk
# anydesk - Windows
("dir", "sysvol/ProgramData/AnyDesk"),
("glob", "AppData/Roaming/AnyDesk/*.trace", from_user_home),
("glob", "AppData/Roaming/AnyDesk/*/*.trace", from_user_home),
Comment on lines 1222 to +1223
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
("glob", "AppData/Roaming/AnyDesk/*.trace", from_user_home),
("glob", "AppData/Roaming/AnyDesk/*/*.trace", from_user_home),
("glob", "AppData/Roaming/AnyDesk/**/*.trace", from_user_home),

Would this work?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would work, but I don't know if it will negatively impact the runtime, since it will then traverse all of the paths

# anydesk - Mac + Linux
("glob", ".anydesk*/*.trace", from_user_home),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just checking - is it actually .anydesk* or should it be .anydesk/*?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should be like it is ;)

https://support.anydesk.com/knowledge/trace-files#trace-file-locations --> For the Custom Client, it could be located in ~/.anydesk_ad_<prefix>/anydesk_ad_<prefix>.trace or for the Standard Client just ~/.anydesk/anydesk.trace

("file", "/var/log/anydesk.trace"),
# zoho
("dir", "sysvol/ProgramData/ZohoMeeting/log"),
("dir", "AppData/Local/ZohoMeeting/log", from_user_home),
Expand Down