2022-10-14 18:19:13 +00:00
|
|
|
-- Suspicious URL requests by built-in fetching tools (event-based)
|
|
|
|
--
|
|
|
|
-- refs:
|
|
|
|
-- * https://attack.mitre.org/techniques/T1105/ (Ingress Tool Transfer)
|
|
|
|
-- * https://attack.mitre.org/techniques/T1571/ (Non-Standard Port)
|
|
|
|
--
|
2023-02-01 21:17:36 +00:00
|
|
|
-- interval: 120
|
2022-10-14 18:19:13 +00:00
|
|
|
-- tags: transient process events
|
|
|
|
-- platform: posix
|
2022-09-24 15:12:23 +00:00
|
|
|
SELECT
|
2023-01-27 01:40:47 +00:00
|
|
|
-- Child
|
|
|
|
pe.path AS p0_path,
|
|
|
|
REGEX_MATCH (pe.path, '.*/(.*)', 1) AS p0_name,
|
|
|
|
TRIM(pe.cmdline) AS p0_cmd,
|
2023-02-01 18:55:55 +00:00
|
|
|
pe.cwd AS p0_cwd,
|
2023-01-27 01:40:47 +00:00
|
|
|
pe.pid AS p0_pid,
|
2023-05-16 21:18:39 +00:00
|
|
|
pe.time AS p0_time,
|
2023-01-27 01:40:47 +00:00
|
|
|
p.cgroup_path AS p0_cgroup,
|
|
|
|
-- Parent
|
|
|
|
pe.parent AS p1_pid,
|
|
|
|
p1.cgroup_path AS p1_cgroup,
|
|
|
|
TRIM(COALESCE(p1.cmdline, pe1.cmdline)) AS p1_cmd,
|
|
|
|
COALESCE(p1.path, pe1.path) AS p1_path,
|
|
|
|
COALESCE(p_hash1.sha256, pe_hash1.sha256) AS p1_hash,
|
2023-02-02 22:58:19 +00:00
|
|
|
REGEX_MATCH (COALESCE(p1.path, pe1.path), '.*/(.*)', 1) AS p1_name,
|
2023-01-27 01:40:47 +00:00
|
|
|
-- Grandparent
|
|
|
|
COALESCE(p1.parent, pe1.parent) AS p2_pid,
|
|
|
|
COALESCE(p1_p2.cgroup_path, pe1_p2.cgroup_path) AS p2_cgroup,
|
2023-02-02 22:58:19 +00:00
|
|
|
TRIM(
|
|
|
|
COALESCE(p1_p2.cmdline, pe1_p2.cmdline, pe1_pe2.cmdline)
|
|
|
|
) AS p2_cmd,
|
2023-01-27 01:40:47 +00:00
|
|
|
COALESCE(p1_p2.path, pe1_p2.path, pe1_pe2.path) AS p2_path,
|
2023-02-02 22:58:19 +00:00
|
|
|
COALESCE(
|
|
|
|
p1_p2_hash.path,
|
|
|
|
pe1_p2_hash.path,
|
|
|
|
pe1_pe2_hash.path
|
|
|
|
) AS p2_hash,
|
|
|
|
REGEX_MATCH (
|
|
|
|
COALESCE(p1_p2.path, pe1_p2.path, pe1_pe2.path),
|
|
|
|
'.*/(.*)',
|
|
|
|
1
|
|
|
|
) AS p2_name,
|
2023-01-27 01:40:47 +00:00
|
|
|
-- Extra fields
|
2023-01-13 18:50:37 +00:00
|
|
|
REGEX_MATCH (pe.cmdline, '(\w+:\/\/.*)\b', 1) AS url,
|
2023-01-20 13:40:08 +00:00
|
|
|
REGEX_MATCH (pe.cmdline, '[ /](\d+\.\d+\.\d+\.\d+)[:/]', 1) AS ip,
|
2023-01-13 18:50:37 +00:00
|
|
|
REGEX_MATCH (pe.cmdline, ':(\d+)', 1) AS port,
|
|
|
|
REGEX_MATCH (pe.cmdline, '//([\w\-\.]+)[:/]', 1) AS addr,
|
2023-01-27 01:40:47 +00:00
|
|
|
REGEX_MATCH (pe.cmdline, '//[\w\-\.]+\.(\w+)[:/]', 1) AS tld
|
2022-09-24 15:12:23 +00:00
|
|
|
FROM
|
2023-01-27 01:40:47 +00:00
|
|
|
process_events pe,
|
|
|
|
uptime
|
2022-12-20 12:53:29 +00:00
|
|
|
LEFT JOIN processes p ON pe.pid = p.pid
|
2023-01-27 01:40:47 +00:00
|
|
|
-- Parents (via two paths)
|
|
|
|
LEFT JOIN processes p1 ON pe.parent = p1.pid
|
|
|
|
LEFT JOIN hash p_hash1 ON p1.path = p_hash1.path
|
2023-02-02 22:58:19 +00:00
|
|
|
LEFT JOIN process_events pe1 ON pe.parent = pe1.pid
|
|
|
|
AND pe1.cmdline != ''
|
2023-01-27 01:40:47 +00:00
|
|
|
LEFT JOIN hash pe_hash1 ON pe1.path = pe_hash1.path
|
|
|
|
-- Grandparents (via 3 paths)
|
|
|
|
LEFT JOIN processes p1_p2 ON p1.parent = p1_p2.pid -- Current grandparent via parent processes
|
|
|
|
LEFT JOIN processes pe1_p2 ON pe1.parent = pe1_p2.pid -- Current grandparent via parent events
|
2023-02-02 22:58:19 +00:00
|
|
|
LEFT JOIN process_events pe1_pe2 ON pe1.parent = pe1_p2.pid
|
|
|
|
AND pe1_pe2.cmdline != '' -- Past grandparent via parent events
|
2023-01-27 01:40:47 +00:00
|
|
|
LEFT JOIN hash p1_p2_hash ON p1_p2.path = p1_p2_hash.path
|
|
|
|
LEFT JOIN hash pe1_p2_hash ON pe1_p2.path = pe1_p2_hash.path
|
|
|
|
LEFT JOIN hash pe1_pe2_hash ON pe1_pe2.path = pe1_pe2_hash.path
|
|
|
|
-- Extra fields
|
2022-09-24 15:12:23 +00:00
|
|
|
WHERE
|
2023-02-01 21:17:36 +00:00
|
|
|
pe.time > (strftime('%s', 'now') -120)
|
2023-01-27 01:40:47 +00:00
|
|
|
AND pe.cmdline != ''
|
2022-09-24 15:12:23 +00:00
|
|
|
-- NOTE: Sync remaining portion with sketchy-fetchers
|
|
|
|
AND (
|
2023-01-13 18:50:37 +00:00
|
|
|
INSTR(pe.cmdline, 'wget ') > 0
|
|
|
|
OR INSTR(pe.cmdline, 'curl ') > 0
|
2022-09-24 15:12:23 +00:00
|
|
|
)
|
2023-01-27 01:40:47 +00:00
|
|
|
-- Sketchy fetcher events always seem to contain a switch
|
|
|
|
AND pe.cmdline LIKE '%-%'
|
|
|
|
AND pe.cmdline LIKE '%/%'
|
2022-09-24 15:12:23 +00:00
|
|
|
AND (
|
|
|
|
-- If it's an IP or port, it's suspicious
|
2023-01-14 13:19:26 +00:00
|
|
|
ip NOT IN ('', '127.0.0.1', '0.0.0.0', '::1')
|
2023-01-13 18:50:37 +00:00
|
|
|
OR port != ''
|
|
|
|
OR tld NOT IN (
|
2022-12-20 12:53:29 +00:00
|
|
|
'',
|
|
|
|
'app',
|
|
|
|
'ca',
|
|
|
|
'cloud',
|
|
|
|
'com',
|
|
|
|
'de',
|
|
|
|
'dev',
|
|
|
|
'edu',
|
|
|
|
'fun',
|
|
|
|
'gov',
|
|
|
|
'io',
|
|
|
|
'md',
|
|
|
|
'mil',
|
|
|
|
'net',
|
|
|
|
'org',
|
|
|
|
'se',
|
|
|
|
'sh',
|
|
|
|
'so',
|
2023-03-03 12:24:42 +00:00
|
|
|
'uk',
|
|
|
|
'us'
|
2022-12-20 12:53:29 +00:00
|
|
|
)
|
2022-09-24 15:12:23 +00:00
|
|
|
-- Or if it matches weird keywords we've seen
|
2023-02-15 00:46:36 +00:00
|
|
|
OR p.cmdline LIKE '%chmod%'
|
2022-12-20 12:53:29 +00:00
|
|
|
OR pe.cmdline LIKE '%.onion%'
|
|
|
|
OR pe.cmdline LIKE '%tor2web%'
|
|
|
|
OR pe.cmdline LIKE '%aliyun%'
|
|
|
|
OR pe.cmdline LIKE '%pastebin%'
|
|
|
|
OR pe.cmdline LIKE '%curl.*—write-out%'
|
|
|
|
OR pe.cmdline LIKE '%curl %--user-agent%'
|
|
|
|
OR pe.cmdline LIKE '%curl -k%'
|
|
|
|
OR pe.cmdline LIKE '%curl -sL %'
|
2023-01-13 18:50:37 +00:00
|
|
|
OR pe.cmdline LIKE '%curl%-o-%'
|
2022-12-20 12:53:29 +00:00
|
|
|
OR pe.cmdline LIKE '%curl%--connect-timeout%'
|
|
|
|
OR pe.cmdline LIKE '%curl%--output /dev/null%'
|
|
|
|
OR pe.cmdline LIKE '%curl%--O /dev/null%'
|
|
|
|
OR pe.cmdline LIKE '%curl%--insecure%'
|
|
|
|
OR pe.cmdline LIKE '%wget %--user-agent%'
|
|
|
|
OR pe.cmdline LIKE '%wget %--no-check-certificate%'
|
|
|
|
OR pe.cmdline LIKE '%wget -nc%'
|
2023-01-13 18:50:37 +00:00
|
|
|
OR pe.cmdline LIKE '%wget -q%'
|
2022-12-20 12:53:29 +00:00
|
|
|
OR pe.cmdline LIKE '%wget -t%'
|
2022-09-24 15:12:23 +00:00
|
|
|
-- Or anything launched by a system user
|
|
|
|
OR (
|
2022-12-20 12:53:29 +00:00
|
|
|
pe.cmdline LIKE '%wget -%'
|
|
|
|
AND pe.euid < 500
|
2023-01-13 20:24:18 +00:00
|
|
|
AND p.cgroup_path NOT LIKE '/system.slice/docker-%'
|
2022-09-24 15:12:23 +00:00
|
|
|
)
|
|
|
|
OR (
|
2022-12-20 12:53:29 +00:00
|
|
|
pe.cmdline LIKE '%curl %'
|
|
|
|
AND pe.euid < 500
|
|
|
|
AND pe.cmdline NOT LIKE "%./configure %--with-curl%"
|
2023-01-13 20:24:18 +00:00
|
|
|
AND p.cgroup_path NOT LIKE '/system.slice/docker-%'
|
2022-09-24 15:12:23 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
-- Exceptions for all calls
|
|
|
|
AND NOT (
|
2022-12-20 12:53:29 +00:00
|
|
|
pe.euid > 500
|
2022-09-15 13:34:45 +00:00
|
|
|
AND (
|
2022-12-20 12:53:29 +00:00
|
|
|
pe.cmdline LIKE '%--dump-header%'
|
|
|
|
OR pe.cmdline LIKE '%127.0.0.1:%'
|
2024-08-27 22:40:43 +00:00
|
|
|
OR pe.cmdline LIKE '% localhost:%'
|
2022-12-20 12:53:29 +00:00
|
|
|
OR pe.cmdline LIKE '%/192.168.%:%'
|
|
|
|
OR pe.cmdline LIKE '%application/json%'
|
|
|
|
OR pe.cmdline LIKE '%/chainctl_%'
|
|
|
|
OR pe.cmdline LIKE '%ctlog%'
|
|
|
|
OR pe.cmdline LIKE '%curl -X %'
|
2023-01-24 01:33:52 +00:00
|
|
|
OR pe.cmdline LIKE '%Authorization: Bearer%'
|
2022-12-20 12:53:29 +00:00
|
|
|
OR pe.cmdline LIKE 'git %'
|
|
|
|
OR pe.cmdline LIKE '%go mod %'
|
|
|
|
OR pe.cmdline LIKE '%grpcurl%'
|
|
|
|
OR pe.cmdline LIKE '%Homebrew%'
|
|
|
|
OR pe.cmdline LIKE '%https://api.github.com/%'
|
|
|
|
OR pe.cmdline LIKE '%If-None-Match%'
|
|
|
|
OR pe.cmdline LIKE "%libcurl%"
|
|
|
|
OR pe.cmdline LIKE '%LICENSES/vendor/%'
|
|
|
|
OR pe.cmdline LIKE '%localhost:%'
|
|
|
|
OR pe.cmdline LIKE '%/openid/v1/jwks%'
|
|
|
|
OR pe.cmdline LIKE '%--progress-bar%'
|
|
|
|
OR pe.cmdline LIKE '%.well-known/openid-configuration%'
|
|
|
|
OR pe.cmdline LIKE 'wget --no-check-certificate https://github.com/%'
|
|
|
|
OR pe.cmdline LIKE 'curl -sL wttr.in%'
|
2023-01-27 01:40:47 +00:00
|
|
|
OR p1_cmd LIKE '%brew.rb%'
|
|
|
|
OR p1_cmd LIKE '%brew.sh%'
|
2022-09-14 14:51:56 +00:00
|
|
|
)
|
2022-09-24 15:12:23 +00:00
|
|
|
)
|
2023-01-26 16:40:54 +00:00
|
|
|
AND NOT (
|
|
|
|
pe.euid > 500
|
|
|
|
AND pe.cmdline LIKE '%/api'
|
|
|
|
AND pe.cmdline NOT LIKE '%-o%'
|
|
|
|
AND pe.cmdline NOT LIKE '%-O%'
|
|
|
|
)
|
2022-12-20 12:53:29 +00:00
|
|
|
-- These are typically curl -k calls
|
2023-01-13 18:50:37 +00:00
|
|
|
-- We need the addr "IS NOT NULL" to avoid filtering out
|
|
|
|
-- NULL entries
|
|
|
|
AND NOT (
|
|
|
|
addr IS NOT NULL
|
2023-01-14 13:19:26 +00:00
|
|
|
AND (
|
2023-01-20 14:24:24 +00:00
|
|
|
addr IN (
|
|
|
|
'releases.hashicorp.com',
|
|
|
|
'github.com',
|
2023-03-06 20:11:11 +00:00
|
|
|
'cdn.zoom.us',
|
2024-09-23 15:07:53 +00:00
|
|
|
'repo1.maven.org',
|
2023-01-20 14:24:24 +00:00
|
|
|
'dl.enforce.dev'
|
|
|
|
)
|
2023-01-14 13:19:26 +00:00
|
|
|
-- Ignore local addresses (Docker development)
|
|
|
|
OR addr NOT LIKE '%.%'
|
|
|
|
OR ip LIKE '172.2%'
|
2023-01-18 14:49:56 +00:00
|
|
|
OR ip LIKE '192.168.%'
|
2023-05-05 16:44:46 +00:00
|
|
|
OR ip LIKE '127.%'
|
2024-07-12 20:55:49 +00:00
|
|
|
OR ip LIKE '10.%'
|
2023-01-14 13:19:26 +00:00
|
|
|
)
|
2023-01-13 18:50:37 +00:00
|
|
|
)
|
2023-05-08 17:20:47 +00:00
|
|
|
AND NOT p1_cmd LIKE '/usr/bin/bash /usr/bin/makepkg %'
|
2024-09-23 15:07:53 +00:00
|
|
|
AND NOT url in ('https://aur.archlinux.org')
|