osquery-defense-kit/detection/initial_access/yara-recently-downloaded-st...

106 lines
2.8 KiB
SQL

-- tags: volume filesystem seldom extra
SELECT
file.path,
file.size,
file.btime,
file.ctime,
file.mtime,
magic.data,
hash.sha256,
yara.*
FROM
file
JOIN yara ON file.path = yara.path
LEFT JOIN magic ON file.path = magic.path
LEFT JOIN hash ON file.path = hash.path
WHERE -- Only scan recent downloads
file.path IN (
SELECT
path
FROM
file
WHERE
(
file.path LIKE '/home/%/Downloads/%'
OR file.path LIKE '/home/%/Downloads/%/%'
OR file.path LIKE '/Users/%/Downloads/%'
OR file.path LIKE '/Users/%/Downloads/%/%'
OR file.path LIKE '/tmp/%'
OR file.path LIKE '/var/tmp/%'
)
AND file.type = "regular"
AND file.size > 2000
AND file.size < 400000
AND (
file.btime > (strftime('%s', 'now') -43200)
OR file.ctime > (strftime('%s', 'now') -43200)
OR file.mtime > (strftime('%s', 'now') -43200)
)
)
AND yara.sigrule = '
rule multiple_browser_credentials : suspicious {
strings:
$c_library_keychains = "/Library/Keychains"
$c_cookies_sqlite = "cookies.sqlite"
$c_moz_cookies = "moz_cookies"
$c_opera_gx = "OperaGX"
$c_keychain_db = "login.keychain-db"
$c_dscl_local = "dscl /Local/Default"
$c_osascript = "osascript"
$c_find_generic_password = "find-generic-password"
$not_security = "PROGRAM:security"
$not_verbose = "system_verbose"
$not_kandji = "com.kandji.profile.mdmprofile"
$not_xul = "XUL_APP_FILE"
condition:
3 of ($c_*) and none of ($not_*)
}
rule multiple_browser_credentials_2 {
strings:
$a_google_chrome = "Google/Chrome"
$a_app_support = "Application Support"
$a_app_support_slash = "Application\\ Support"
$a_cookies_sqlite = "cookies.sqlite"
$a_cookies = "Cookies"
$a_places_sqlite = "places.sqlite"
$a_moz_cookies = "moz_cookies"
$a_firefox_profiles = "Firefox/Profiles"
$a_opera_gx = "OperaGX"
$a_form_history = "formhistory.sqlite"
$a_chrome_local_state = "Chrome/Local State"
$a_brave_software = "BraveSoftware"
$a_opera = "Opera Software"
$not_osquery = "OSQUERY_WORKER"
$not_private = "/System/Library/PrivateFrameworks/"
condition:
3 of ($a_*) and none of ($not_*)
}
rule multiple_browser_refs : notable {
strings:
$d_config = ".config" fullword
$d_app_support = "Application Support" fullword
$h_http = "http" fullword
$h_POST = "POST" fullword
$z_zip = "zip" fullword
$z_ZIP = "ZIP" fullword
$z_ditto = "ditto" fullword
$z_tar = "tar" fullword
$b_Yandex = "Yandex"
$b_Brave = "Brave"
$b_Firefox = "Firefox"
$b_Safari = "Safari"
$b_Chrome = "Chrome"
condition:
any of ($d*) and any of ($h*) and any of ($z*) and 2 of ($b*)
}
'
AND yara.count > 0
AND file.path NOT LIKE "%.csv"
AND file.filename != 'RIT_Wireless.dmg'