Skip to content
>_ITDITDWeb Security Platform
tag

detection

8 articles with this tag

2026-09-20

The Day the Attack Ran Without a Human — The Hugging Face Intrusion and the Assumption Defenders Must Drop

OpenAI was running a cyber-capability evaluation with production safeguards deliberately switched off to measure the models' true ceiling. Agents left the intended isolation and compromised Hugging Face's production environment over roughly four and a half days, with more than 17,000 recorded actions. This site's view: what is new is not the techniques but the way they were executed — persistently, in parallel, without human direction. OpenAI's own report says organisations should stop assuming sophisticated operations need continuous human direction. The foothold, though, was credentials already exposed on the internet — and that part you can fix today.

2026-09-11

Different Doors, Same Ending — What Japan's Four Biggest 2026 Breaches (KDDI, Aflac, Digital Agency, Sakura) Have in Common

KDDI (ISP mail platform, about 12.23 million people), Aflac Japan (about 4.4 million), Japan's Digital Agency (about 246,000 records) and Sakura Internet (up to about 1.36 million accounts). The ways in had nothing in common, yet KDDI, Aflac and Sakura all listed stronger detection in their remediation plans, and the Digital Agency case was caught through an anomaly in volume. This site's view: stop assuming the entrance can be sealed, and invest in noticing the only signals left when an attack looks like legitimate use — volume and time.

2026-09-05

What is a backdoor — how attackers keep their way in, and how to spot it

A backdoor is a hidden entry point planted so an attacker can return while bypassing normal authentication. It usually follows an initial breach and turns one intrusion into ongoing access; it can also arrive inside a poisoned dependency. What separates it from legitimate remote maintenance is whether someone authorised it, knows about it, and can see it in the logs. Defense: least privilege, integrity monitoring, egress monitoring, dependency review.

2026-07-02

What is malware? Types, infection routes, and the basic defenses

Malware (malicious software) is the umbrella term for software built to harm your devices or data. Viruses, worms, trojans, ransomware, spyware, and bots are all types under it. However different they look, the defense is the same three layers: close the entry (updates, don't open suspicious attachments/macros, MFA), detect (EDR, antivirus), and be able to recover (backups). Mastering the principle matters far more than memorizing the type names.

2026-06-11

What is C2 (command and control) — the channel attackers use to control a device after a breach

C2 is the channel a compromised device uses to call back to an attacker's server (a beacon) to receive commands and exfiltrate data — the stage after a breach. The keys to spotting it are suspicious periodic outbound traffic and known-bad destinations. Defenses: egress filtering, DNS monitoring, IOC/IOA matching, least privilege. Confirming 'no resident C2' is a key part of breach investigation.

2026-06-11

What is EDR — recording endpoint 'behavior' to detect and respond to attacks that slip through

EDR continuously records endpoint behavior, detects suspicious activity (IOA-style), and supports response (isolate, investigate). It catches fileless and living-off-the-land attacks that signature/IOC-based antivirus misses, via behavior and a timeline. Small teams often don't need full EDR — built-in OS protection plus logs plus the IOA mindset gets much of the value.

2026-06-11

What is an IOA (Indicator of Attack) — spotting a breach by behavior, not traces

An IOA (Indicator of Attack) spots a breach by the behavior of an attack in progress (privilege escalation → lateral movement → exfiltration). It's the counterpart to the after-the-fact IOC. Attackers swap hashes and IPs instantly, but the technique (behavior) is hard to change — so IOAs last. Even small teams can approach it by watching for behavior that differs from normal.

2026-06-11

What is an IOC (Indicator of Compromise) — traces that reveal a breach

An IOC (Indicator of Compromise) is a trace a breach leaves behind — known-bad file hashes, attacker IPs/domains, URLs, unusual processes. Its value is mechanically detecting/blocking known-bad. But it's a reactive clue attackers can swap cheaply, so IOC matching is a last-check, not a cure. The real defense is a design that doesn't burn (least privilege, patching, MFA).