8000 Add Xattr fetch to MacOS.Search.Filefinder by ydkhatri · Pull Request #4250 · Velocidex/velociraptor · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add Xattr fetch to MacOS.Search.Filefinder #4250

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

Merged
merged 1 commit into from
May 21, 2025
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
7 changes: 7 additions & 0 deletions artifacts/definitions/MacOS/Search/FileFinder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ parameters:
default:
description: A yara rule to search for matching files.

- name: Fetch_Xattr
default: N
type: bool

- name: Upload_File
default: N
type: bool
Expand Down Expand Up @@ -127,6 +131,9 @@ sources:
if(condition=Upload_File and Mode.IsRegular,
then=upload(file=OSPath,
accessor="file")) AS Upload,
if(condition=Fetch_Xattr,
then=xattr(filename=OSPath,
accessor="file")) AS XAttr,
if(condition=Calculate_Hash and Mode.IsRegular,
then=hash(path=OSPath,
accessor="file")) AS Hash
Expand Down
Loading
0