Skip to content
Open
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
5 changes: 4 additions & 1 deletion triangle_check/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ def main():
print('Triangle Check: scan iTunes backups for traces of compromise by Operation Triangulation © 2023 AO Kaspersky Lab. All Rights Reserved.')
print('\n Contact: [email protected]')
print(' More info: https://securelist.ru/trng-2023/')
print('\nUsage: python -m triangle_check /path/to/iTunes_backup [backup_password]')
if sys.platform.startswith('win'):
print('\nUsage: triangle_check.exe /path/to/iTunes_backup [backup_password]')
else:
print('\nUsage: python -m triangle_check /path/to/iTunes_backup [backup_password]')
return
if len(sys.argv) > 1:
dir = sys.argv[1]
Expand Down