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

Fixing AR and adding ASAR identification #1600

Merged
merged 1 commit into from
Mar 27, 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
3 changes: 2 additions & 1 deletion assemblyline/common/identify_defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@
{"al_type": "executable/mach-o", "regex": r"^Mach-O"},
{"al_type": "archive/7-zip", "regex": r"^7-zip archive data"},
{"al_type": "archive/ace", "regex": r"^ACE archive data"},
{"al_type": "archive/asar", "regex": r"^Electron ASAR archive"},
{"al_type": "archive/bzip2", "regex": r"^bzip2 compressed data"},
{"al_type": "archive/cabinet", "regex": r"^installshield cab"},
{"al_type": "archive/cabinet", "regex": r"^microsoft cabinet archive data"},
Expand All @@ -136,7 +137,7 @@
{"al_type": "archive/lzma", "regex": r"^LZMA compressed data"},
{"al_type": "archive/rar", "regex": r"^rar archive data"},
{"al_type": "archive/tar", "regex": r"^(GNU|POSIX) tar archive"},
{"al_type": "archive/ar", "regex": r"ar archive"},
{"al_type": "archive/ar", "regex": r"^current ar archive"},
{"al_type": "archive/vhd", "regex": r"^Microsoft Disk Image"},
{"al_type": "archive/xz", "regex": r"^XZ compressed data"},
{"al_type": "archive/zip", "regex": r"^zip archive data"},
Expand Down