Email Graph Analysis Detects Impersonated Suppliers When DKIM and SPF Pass
Traditional email security controls such as DKIM, SPF, and DMARC fail when an attacker has already compromised a legitimate supplier mailbox. In these cases the message arrives from the genuine server, carries a valid signature, and continues an existing thread, leaving no technical anomaly to detect.
The only reliable signal lies in the historical pattern of communication between the two parties. Mail gateway logs already contain the necessary metadata: sender, recipient, and timestamp. No message bodies or attachments are required, which simplifies legal and privacy reviews.
From Postfix logs the pairs are extracted with simple shell commands that join queue identifiers. Microsoft Exchange environments provide the same data through the Get-MessageTrace cmdlet, which should be exported daily to accumulate sufficient history.
Each external-internal address pair is profiled with counts, first and last seen dates, inbound versus outbound volume, and hourly distribution. These numbers feed five lightweight indicators:
- First contact – the address has never appeared before.
- Lookalike known – the domain is similar to a previously observed supplier domain using a split name-zone comparison that ignores hyphens.
- Dormant revived – communication resumed after more than 180 days of silence.
- One-way traffic – dozens of inbound messages with zero replies.
- Unusual hours – messages arrive outside the established working-hour pattern.
A weighted score combines the indicators so that no single weak signal triggers an alert. High scores can be surfaced as a banner inside the recipient’s mailbox or routed to the SOC for manual review.
The method breaks down for generic addresses such as info@ or sales@ and for organizations that receive fewer than several thousand external messages per day. In those environments the recommended minimum control remains a telephone callback to a known contract number before any banking details are changed.
Related articles
Developer Releases PhishIntel Open-Source Tool for Phishing Site Analysis and Risk Scoring
A developer has published PhishIntel, a lightweight Python-based OSINT application designed to analyze domains and evaluate phishing risk. The tool performs extensive checks including domain structure analysis, DNS records, RDAP and WHOIS data, TLS certificates, HTTP redirects, page content, security headers, and JavaScript static analysis. It generates structured JSON reports containing risk scores with explanatory indicators. Optional integrations with VirusTotal, Google Safe Browsing, URLhaus, Nmap, Nuclei, ZAP, and Playwright enable reputation checks, dynamic browser analysis, and active scanning. The project aims to help identify suspicious sites used in schemes such as the recent fake fuel sales campaign that defrauded victims of at least 3.7 million rubles. The author invites feedback from security professionals to improve the codebase.
Russian Court Bans Advertising for Renting and Selling Third-Party Bank Cards
The Chertanovsky District Court of Moscow has ruled that information promoting the rental and sale of other people's bank cards is prohibited for distribution in Russia. The decision targets a website and two Telegram channels that offered users the chance to temporarily lend or permanently sell their cards to third parties. Such schemes are commonly used to recruit drops who help receive, transfer, and cash out stolen funds. The court found that these proposals violate the rights and legitimate interests of citizens. Owners of the resources could not be identified, and domain registrars were foreign companies. VTB had previously warned about these schemes in 2024, noting that card owners risk ending up on bank blacklists, losing access to financial services, and facing criminal charges. The Ministry of Internal Affairs has also highlighted that transferring bank cards and accounts to outsiders can lead to criminal liability, with fraudsters particularly targeting children and teenagers.
Smart Engines Patents AI Method to Detect Holographic Security Features in Documents Using Visible Light Only
Smart Engines has developed and patented a new technique that identifies optically variable devices such as holograms on identity documents without requiring ultraviolet illumination. The approach relies on a standard document scanner equipped with six independently controlled LEDs that capture a sequence of six images under different lighting angles while the document and camera remain stationary. After dark-current correction and calibration against a white reference sheet, the system normalizes the images and computes per-pixel color-vector standard deviation to generate an OVD map. A simple thresholding and region-of-interest analysis then produces a binary verdict indicating whether a genuine holographic element is present. The method effectively distinguishes original documents from high-quality color prints, photocopies, and physical replicas that cannot reproduce the angle-dependent color shifts of real OVDs. All processing occurs with existing scanner hardware, demonstrating that algorithmic interpretation of controlled illumination can add a new authenticity signal without additional optics or spectral channels.
YooMoney's YuScan Automates E-commerce Risk Assessment Scanning Up to 1,000 Sites Per Hour
YooMoney has detailed the inner workings of its YuScan service, an automated auditing tool designed to help banks and payment providers identify websites that conceal prohibited or high-risk activities. Since 2020 the system has processed more than 550,000 merchant applications without resulting in any fines for servicing illegal operations. YuScan builds comprehensive site maps, executes JavaScript, and handles dynamic content using Playwright combined with Camoufox to evade modern anti-bot protections such as Cloudflare. The crawler is built on Scrapy with FastAPI and PostgreSQL, then applies ML models, embeddings, and LLMs to analyze text, images, reviews, and external signals including Roskomnadzor registries and WHOIS data. The automation has reduced manual review time dramatically, allowing half of compliant merchants to begin accepting payments within 24 hours. YooKassa now offers the service to other banks through NSPK, the operator of the Mir payment system.