Skip to content

Create link_multistage_landing_jotform.yml #2823

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

Open
wants to merge 3 commits 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
56 changes: 56 additions & 0 deletions detection-rules/link_multistage_landing_jotform.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: "Link: Multistage Landing - JotForm Abuse"
description: "Detects a disabled JotForm that contains suspicious elements like secured document messaging, cloned forms, or suspicious action words in form items. Also checks for human verification pages and embedded links to credential collection sites."
type: "rule"
severity: "high"
source: |
type.inbound
and length(filter(body.links, .href_url.domain.root_domain == "jotform.com")) > 0
and any(filter(body.links, .href_url.domain.root_domain == "jotform.com"),

// the form as been disabled
strings.icontains(ml.link_analysis(.).final_dom.inner_text,
'This form is disabled...'
)
// it contains suspicious elements within the extracted "appInfo"
or any(regex.iextract(ml.link_analysis(.).final_dom.raw,
'window\.__appInfo = (?P<appInfo>\{[^\;]+\})\;'
),
strings.icontains(strings.parse_json(.named_groups["appInfo"])["description"],
'secured document'
)
or strings.icontains(strings.parse_json(.named_groups["appInfo"])["appIconURL"],
'pfc_clone_'
)
or any(strings.parse_json(.named_groups["appInfo"])["items"],
// find any links that mention common "action" words
regex.icontains(.["description"],
'(?:view|click|show|access|download|goto|Validate|Va[il]idar|login|verify|account)'
)

// inspect the linked page within the "title"
or (
strings.icontains(.["title"], 'http')
and (
ml.link_analysis(strings.parse_url(.["title"])).credphish.disposition == "phishing"
or ml.link_analysis(strings.parse_url(.["title"])).credphish.contains_captcha == true
or strings.istarts_with(ml.link_analysis(strings.parse_url(.["title"]
)
).final_dom.inner_text,
'Verify you are human'
)
)
)
)
)
)
attack_types:
- "Credential Phishing"
tactics_and_techniques:
- "Evasion"
- "Social engineering"
detection_methods:
- "Content analysis"
- "HTML analysis"
- "Javascript analysis"
- "URL analysis"
id: "5b64326f-e38e-558c-8b5f-d9e7ddee2f69"