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 system-wide cron job analytic rule #133

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
30 changes: 30 additions & 0 deletions custom_analytic_detections/systemwide_cronjob
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# systemwide_cronjob
#
# This Analytic predicate can be used to report on the creation or modification of the system-wide crontab file located at /etc/crontab.
# The detection functions by monitoring for new entries added to the crontab file, excluding comments, indicating that a new system-wide scheduled task has been created or an existing one has been modified.

# Required Analytic Configuration:
Sensor Event Type: File System Event
Level: 0
Snapshot File Path: /etc/crontab

# Analytic Predicate:

($event.path == "/etc/crontab") AND
(($event.isNewFile == 1 OR $event.isModified == 1) AND
FUNCTION($event.file, "newDelimitedEntries:comments:", ".newlines", "#").@count > 0)

# Context items
Type: String
Name: ItemName
Expression: "cron job"

Type: Binary
Name: ItemBinary
Expression: FUNCTION(event.file, 'newDelimitedEntries:comments:', '.newlines', '#')[0]


# Recommended Analytic Configuration:
Severity: Informational
Categories: Visibility
Tags: MITREattack,Execution,ScheduledTaskJob,T1053.003,Persistence