feat(core): add android services acquirer #33
No reviewers
Labels
No labels
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
garrett/wafb!33
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feat/services_acquirer"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Implemented a new ServicesAcquirer module to extract and enrich information
about running and system services.
and DumpsysServiceCommand for granular data access.
from 'dumpsys activity services'.
vs. user services.
Implemented a new ServicesAcquirer module to extract and enrich information about running and system services. - Added Dumpsys commands: DumpsysListCommand, DumpsysActivityServicesCommand, and DumpsysServiceCommand for granular data access. - Implemented ServicesAcquirer to orchestrate the acquisition flow: - Lists all available services via 'dumpsys -l'. - Enriches service data with PIDs, class names, and process names from 'dumpsys activity services'. - Maps execution states (running/stopped) and identifies system vs. user services. - Integrated the new acquirer into the AcquisitionPage UI. - Added comprehensive unit tests. - Cleaned up debug statements and improved parser robustness.