• Insider threats remain one of the most challenging security problems that organizations face today. These threats typically do not show obvious warning signs at first.

    Instead, they reveal themselves through small, unusual activities that often blend into normal daily operations.

    Many companies struggle to identify these early indicators because they occur within legitimate user accounts and approved systems.

    Without proper monitoring and analysis, these warning signs go unnoticed until serious damage has already occurred, including data loss, brand damage, or system disruption.

    The core challenge in detecting insider threats stems from a fundamental attribution problem. When an employee accesses company systems or moves data between authorized locations, their actions appear completely normal.

    Traditional security tools focus on blocking obvious threats but frequently miss the subtle behavioral patterns that suggest malicious intent.

    This gap becomes even larger when organizations fail to connect what happens inside their network with activities occurring outside, such as employees communicating on dark web forums or selling company secrets to competitors.

    Nisos security analysts noted that meaningful insider threat indicators often emerge weeks or even months before any actual data theft or system compromise occurs.

    These indicators become clearer when organizations examine multiple data sources together, combining internal activity logs with external intelligence gathered from public sources.

    Warning signs

    The research identifies six critical warning signs that security teams must understand and monitor carefully.

    Here they are mentioned below:-

    • Unusual Authentication and Access Behavior
    • Data Movement Outside Established Norms
    • Shifts in Digital Behavior That Indicate Interest in Sensitive Assets
    • Indicators That Suggest Data Exfiltration Planning
    • External Activity That Aligns With Internal Anomalies
    • Attempts to Conceal Activity

    The most revealing early indicator appears in unusual authentication and access behavior. Nisos researchers identified that employees planning to steal data frequently attempt to access company systems from unexpected locations, log in rapidly across multiple platforms, or change their normal access timing patterns.

    One user might suddenly log in from three different countries within a few hours, or access files at unusual times outside their typical work schedule.

    While a single strange login might reflect normal business travel, repeated patterns of this behavior signal that deeper investigation is necessary.

    These actions often precede larger data collection activities because insiders need to test whether they can move through systems without triggering automatic alerts.

    Understanding these authentication anomalies requires context and correlation with other activities. Organizations that focus exclusively on these individual incidents often miss the broader pattern.

    When companies combine unusual access patterns with information about employees discussing their company online or appearing in breach databases, a much clearer picture emerges.

    This integrated approach transforms isolated events into meaningful threat indicators that security teams can act upon before damage occurs.

    Follow us on Google NewsLinkedIn, and X to Get More Instant UpdatesSet CSN as a Preferred Source in Google.

    The post Nisos Details Earlier Signs of Insider Detection via Authentication and Access Controls appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Ukraine-linked hackers are stepping up cyberattacks against Russian aerospace and wider defence-related companies, using new custom malware to steal designs, schedules, and internal emails.

    The campaign targets both prime contractors and smaller suppliers, aiming to map production chains and expose weak points in Russia’s war industry. The tools used in this campaign are simple, but they are used with care and good planning.

    Defaced homepage of KrasAvia’s website (Source - Intrinsec)
    Defaced homepage of KrasAvia’s website (Source – Intrinsec)

    The malware first appeared in late 2024 in spear-phishing waves sent to engineers and project managers working on avionics, guidance systems, and satellite links.

    Lures used fake job offers, conference invites, and contract updates, with attached documents that exploited outdated office software on Windows hosts. Once opened, the file quietly dropped a small loader that set the stage for the main payload.

    Intrinsec security analysts identified the malware after seeing repeated outbound traffic from a defence integrator’s remote office to rare command servers hosted on bulletproof infrastructure.

    Their complete technical breakdown shows that the attackers carefully tuned each payload to the victim’s role, adding custom modules for email scraping, document theft, and credential capture.

    Content of the email (left), and the phishing page (right) (Source - Intrinsec)
    Content of the email (left), and the phishing page (right) (Source – Intrinsec)

    The operation hits research labs, testing ranges, and logistics firms that support aircraft, drones, and missile systems. Stolen data can reveal parts shortages, delivery delays, and software bugs, giving Ukrainian planners a clearer view of Russian combat readiness.

    Infection chain and command execution

    The infection chain is simple but smart. The first loader, often a small DLL, runs in memory only and pulls a second-stage script from a hard-coded URL.

    That script injects the final payload into a trusted process such as explorer.exe, which helps it blend with normal user activity.

    Intrinsec researchers noted that the payload uses a compact command loop to stay flexible. A typical routine, as seen in memory dumps, looks like this:-

    while (connected) {
      cmd = recv();
      if (cmd == "exfil") run_exfil();
      if (cmd == "shell") open_shell();
    }

    This simple logic lets the operator switch between silent data theft and hands-on keyboard control. Each stage is built to keep noise low on the host.

    Despite its clear design, the malware avoids noisy persistence tricks, instead relying on scheduled tasks and hijacked update tools to return after reboots while staying hard to spot.

    Follow us on Google NewsLinkedIn, and X to Get More Instant UpdatesSet CSN as a Preferred Source in Google.

    The post Ukraine Hackers Attacking Russian Aerospace Companies and Other Defence-Related Sectors appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Hackers are turning to Evilginx, a powerful adversary-in-the-middle tool, to get around multi-factor authentication and take over cloud accounts.

    The framework acts as a reverse proxy between the victim and real single sign-on pages, so the login screen looks and behaves just like the real thing.

    To the user, the fake site feels normal, with valid TLS and familiar branding. Attackers start with targeted phishing emails that push victims to carefully crafted fake SSO portals.

    These pages copy the layout, scripts, and flows of common identity platforms, including enterprise SSO gateways. Once the user enters credentials and completes MFA, Evilginx quietly captures session cookies and tokens while still passing traffic to the real provider.

    This shows the staged relay from the victim to the identity provider. Infoblox security analysts identified recent campaigns where Evilginx was used to mimic legitimate corporate SSO sites and steal tokens for email and collaboration platforms.

    A timeline of SSO phishing attacks against higher educational institutions (Source - Infoblox)
    A timeline of SSO phishing attacks against higher educational institutions (Source – Infoblox)

    They noted that the stolen cookies allow attackers to replay sessions without ever needing passwords or MFA codes again. This shifts the risk from classic credential theft to full session hijack.

    The impact is serious for both companies and users. With an active session token, attackers can read mail, reset passwords on linked apps, deploy new MFA methods, and plant backdoor access.

    Attack analysis

    This can lead to business email compromise, data theft, and long-term stealth access that is hard to trace back to the first phishing click. In contrast, the attack flow shows how stolen cookies unlock downstream services.

    Attack flow (Source - Infoblox)
    Attack flow (Source – Infoblox)

    One key focus in the complete technical breakdown is how Evilginx evades detection during this process.

    The framework forwards all content from the real SSO site, including scripts, styles, and dynamic prompts, which makes traditional visual checks almost useless.

    It also uses real certificates on lookalike domains, so browser padlocks still appear green and reassuring.

    Under the hood, Evilginx proxies and rewrites headers to keep the session alive while stripping out sensitive cookies for theft.

    A simple, high-level phishlet can look like:-

    server_name login.example.com;
    proxy_pass https://login.real-sso.com;
    proxy_set_header Host login.real-sso.com;

    By logging cookies at the proxy layer, attackers grab session data before it is protected by the user’s device or corporate tools.

    Universities targeted by the Evilginx actor (Source - Infoblox)
    Universities targeted by the Evilginx actor (Source – Infoblox)

    This shows how headers and cookies flow through the proxy, highlighting the points where tokens are intercepted.

    Follow us on Google NewsLinkedIn, and X to Get More Instant UpdatesSet CSN as a Preferred Source in Google.

    The post Hackers Leverage Evilginx to Undermine MFA Security Mimicking Legitimate SSO Sites appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A new type of phishing attack that combines two different phishing kits: Salty2FA and Tycoon2FA. This marks a significant change in the Phishing-as-a-Service (PhaaS) landscape.

    While phishing kits typically maintain unique signatures in their code and delivery mechanisms, recent campaigns targeting enterprise users have begun deploying payloads that combine elements from both frameworks.

    This convergence complicates attribution efforts and suggests a potential operational merger or collaboration between the threat actors behind these sophisticated tools.​

    The Collapse of Salty2FA

    The discovery follows a dramatic decline in standalone Salty2FA activity observed in late 2025, according to an analysis by ANY.RUN, submissions of Salty2FA samples to their interactive sandbox dropped precipitously from hundreds of weekly uploads to fewer than 50 by early November.

    Coinciding with this drop, analysts detected a wave of “hybrid” samples where Salty2FA’s infrastructure appeared to fail, triggering a fallback mechanism that retrieved Tycoon2FA payloads instead.​

    Code-level analysis by ANY.RUN revealed that these hybrid payloads begin with Salty2FA’s traditional “trampoline” scripts, which load the next stage of the attack.

    However, when the primary Salty2FA domains failed to resolve (returning DNS SERVFAIL errors), the scripts executed a hardcoded fallback command, fetching malicious content from Tycoon2FA infrastructure.

    This seamless handoff indicates that the operators anticipated infrastructure instability and engineered a redundancy using a rival or partner kit.​

    The overlap in tactics, techniques, and procedures (TTPs) strengthens the hypothesis that both kits may be operated by the same threat group, tracked by Microsoft as Storm-1747.

    Storm-1747 has long been associated with Tycoon2FA, a kit known for bypassing multifactor authentication (MFA) via adversary-in-the-middle (AiTM) techniques.​

    The newly observed hybrid samples replicate Tycoon2FA’s execution chain almost line-for-line in their later stages, including specific variable naming conventions and data encryption methods.

    This structural similarity suggests that Salty2FA may not be an independent competitor but rather another tool in Storm-1747’s arsenal, potentially used for different targeting profiles or as a testing ground for new evasion features.​

    For security operations centers (SOCs), the blurring of lines between Salty2FA and Tycoon2FA requires an updated defense strategy. Reliance on static indicators of compromise (IOCs) for a single kit is no longer sufficient, as a campaign might pivot from one framework to another mid-execution.​

    Experts recommend treating these kits as a single threat cluster. Defenders should correlate alerts involving Salty2FA’s initial delivery vectors, such as HTML trampoline files, with Tycoon2FA’s known network behaviors, including traffic to DGA-generated domains and fast-flux infrastructure.

    By unifying detection logic for both families, organizations can better detect these resilient, multi-stage attacks before credentials are stolen.

    ​Detect phishing threats in under 60 seconds with ANY.RUN’s Sandbox in your SOC => Sign up now

    The post Salty2FA and Tycoon2FA Phishing Kits Attacking Enterprise Users to Steal Login Credentials appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Cybercriminals targeting Brazilian users have aggressively escalated their tactics, launching a highly sophisticated campaign dubbed “Water Saci.”

    This new wave of attacks weaponizes WhatsApp Web, a platform implicitly trusted by millions, to deliver banking trojans and steal sensitive financial data.

    By compromising user accounts, the attackers send convincing messages to trusted contacts, creating a rapid, self-propagating infection loop that leverages social engineering to bypass traditional security defenses effectively, impacting countless unsuspecting individuals.

    The infection chain typically begins when users receive messages containing malicious attachments, such as ZIP archives, PDF lures disguised as Adobe updates, or direct HTA files following specific naming patterns like A-{random}.hta.

    A WhatsApp message luring user to open the ZIP file (Source - Trend Micro)
    A WhatsApp message luring user to open the ZIP file (Source – Trend Micro)

    Once a victim opens these files, they execute a complex multi-stage attack sequence involving Visual Basic scripts and MSI installers.

    MSI Installation leading to the banking trojan payload (Source - Trend Micro)
    MSI Installation leading to the banking trojan payload (Source – Trend Micro)

    This process stealthily downloads a banking trojan while simultaneously deploying automation scripts designed to hijack the victim’s WhatsApp session for further propagation, ensuring maximum reach.

    Attack chain (Source - Trend Micro)
    Attack chain (Source – Trend Micro)

    Trend Micro security analysts identified that this campaign marks a significant shift in malware development, utilizing artificial intelligence to accelerate its capabilities.

    The attackers appear to have used Large Language Models (LLMs) to translate and optimize their propagation code, transitioning from PowerShell to a more robust Python-based infrastructure.

    Strategic shift

    This strategic shift significantly enhances their ability to spread malware across different browsers, including Chrome, Edge, and Firefox, making detection increasingly difficult for standard security protocols and leaving users vulnerable.

    A critical component of this technical evolution is the whatsz.py script, which replaces earlier PowerShell variants.

    Analysis reveals compelling evidence of AI-assisted coding, such as script headers explicitly stating “Versao Python Convertido de PowerShell”, and comments like “version optimized with errors handling.”

    Component files downloaded by instalar.bat and used by whatsz.py (Source - Trend Micro)
    Component files downloaded by instalar.bat and used by whatsz.py (Source – Trend Micro)

    This script relies on component files like chromedriver.exe to automate the infection process, using Selenium to inject the WA-JS library, extract contact lists, and send malicious files in bulk to unsuspecting victims.

    The Python code exhibits a sophisticated object-oriented structure with advanced error handling, features typically absent in quick manual ports.

    Main automation class with formatting definitions for different statuses (Source - Trend Micro)
    Main automation class with formatting definitions for different statuses (Source – Trend Micro)

    For instance, the main automation class defines clear formatting for various statuses, ensuring reliable execution.

    Additionally, the console output includes colorful emojis, a trait rarely seen in standard malware but common in AI-generated codebases.

    This advanced automation allows the malware to operate autonomously, pausing and resuming tasks to blend in with normal network traffic while reporting progress to a command-and-control server, ultimately ensuring persistent access.

    Follow us on Google NewsLinkedIn, and X to Get More Instant UpdatesSet CSN as a Preferred Source in Google.

    The post Water Saci Hackers Leveraging AI Tools to Attack WhatsApp Web Users appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • The National Security Agency recently fulfilled a goal to shed around 2,000 employees, according to three people familiar with the spy agency. The people spoke on the condition of anonymity because the milestone has not been made public. An NSA spokesperson declined to comment.

    The purge reflects months-long pressure by the second Trump administration to shrink the federal government and clean out alleged bloat and politicization in the intelligence community. Employees at the nation’s various spy agencies were initially extended deferred-resignation offers in February, and in May, news broke of the downsizing goals for the intel community and NSA specifically

    As in other federal agencies, some workers were fired, others quit, and still others accepted the deferred-resignation deals, under which they left government service early but were paid for several more months.

    It's not clear what percentage of NSA's employees have left. The size of the agency's workforce is classified; agency officials have said this helps conceal U.S. intelligence capabilities from foreign adversaries.

    More cuts could be on the way. In February, Defense Secretary Pete Hegseth asked service leaders to prepare plans to cut their budgets by some 8 percent in each of the next five years.

    The agency has also been reorganizing some of its mission priorities, two of the people said, though one of them stressed this is not uncommon at the beginning of presidential administrations.

    The NSA has been facing waves of internal strain and lower morale across its workforce amid a mix of leadership gaps, program cuts, and recent extensions of deferred resignation offers, Nextgov/FCW reported last month.

    Throughout this year, Lt. Gen. William Hartman, NSA’s acting director who also leads U.S. Cyber Command in a dual-hatted role, has held multiple all-hands calls with the agency’s workers, where limited Q&A was allowed, said the second person. 

    Hartman has led NSA and Cyber Command in an acting capacity since April after the firing of Gen. Timothy Haugh, which was fueled by far-right activist Laura Loomer. The NSA’s top lawyer, April Falcon Doss, was also let go after Loomer advised that she leave the agency. Those events unfolded as leading officials from the agency and the combatant command have voluntarily departed this year.

    Army Lt. Gen. Joshua Rudd, the deputy commander of U.S. Indo-Pacific Command, has surfaced as the White House’s leading choice to head the agency and digital military command, two other people familiar with the matter said. The Record first reported Rudd’s emergence as top contender for the position.

    ]]>

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • India’s Department of Telecommunications (DoT) has issued directions to app-based communication service providers to ensure that the platforms cannot be used without an active SIM card linked to the user’s mobile number. To that end, messaging apps like WhatsApp, Telegram, Snapchat, Arattai, Sharechat, Josh, JioChat, and Signal that use an Indian mobile number for uniquely identifying their

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A collaborative investigation by Mauro Eldritch of BCA LTD, ANYRUN, and NorthScan has provided unprecedented visibility into how North Korean threat actors from the Lazarus Group recruit and operate against Western companies.

    Researchers documented the complete attack cycle in real-time, capturing live footage of attackers using compromised systems. This breakthrough reveals the human side of one of the world’s most sophisticated cyber espionage operations.

    The investigation began when Aaron, a Lazarus recruiter operating under the alias “Blaze,” approached researchers with an enticing proposal: operators would receive 35% of a salary in exchange for access to laptops to “work in,” a euphemism for infiltrating target organizations.

    35% of Salary Claim
    35% of Salary Claim

    Rather than refuse, the security team provided ANYRUN sandboxed environments designed to mimic legitimate work computers while recording all activity.

    Inside the Chollima Attack Pipeline

    Over several months embedded within Lazarus’s fake hiring pipeline, researchers documented what they describe as the complete Famous Chollima attack cycle, the group’s multi-stage methodology for conducting cyber operations.

    The recordings captured attackers actively working on provided systems, offering an intimate look at their tooling, operational tactics, and specific targeting patterns. This represents the first documented case of Lazarus operators being filmed conducting actual attack preparation activities.

    The investigation revealed sophisticated operational security practices alongside the recruitment deception. Attackers demonstrated familiarity with common detection avoidance techniques and appeared aware of typical honeypot indicators, though the sandboxed environment successfully maintained their trust throughout the operation.

    The Lazarus Group’s reliance on recruited insiders represents a critical evolution in their attack methodology. Rather than purely remote operations, the group actively seeks legitimate employment positions or partnerships to facilitate network access, a tactic that blurs traditional perimeter defense assumptions.

    This recruitment approach suggests that North Korean operations are expanding beyond their traditionally documented focus on zero-day exploits and supply chain attacks.

    Security researchers and enterprise defenders should recognize that job postings and recruitment outreach from unfamiliar technical positions warrant verification, particularly in sensitive sectors. The investigation underscores how threat actors leverage legitimate employment processes as attack vectors.

    The collaborative research by BCA LTD, ANYRUN, and NorthScan (led by @0xfigo) represents a significant contribution to understanding the Lazarus Group’s infrastructure and methodology.

    This is a developing story; the technical indicators from the investigation are expected to be released shortly.

    Follow us on Google News, LinkedIn, and X for daily cybersecurity updates. Contact us to feature your stories.

    The post Researchers Expose Lazarus Recruitment Pipeline Live on Camera Through Honeypot Operation appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Three days after the Pentagon denied it killed two survivors after an attack on an alleged drug-trafficking boat in early September, the White House and the Pentagon on Monday confirmed the second strike did indeed take place, and that it was authorized by Defense Secretary Pete Hegseth. 

    Rewind: “This entire narrative is completely false,” Hegseth’s chief spokesman, Sean Parnell, told the Washington Post, which reported the so-called “double-tap” strike ordered by the commander at the time, Navy Adm. Frank “Mitch” Bradley. That order came after Hegseth reportedly told Bradley to “kill everybody” on the boat. Hegseth himself responded on social media Friday, calling the Post’s reporting “fabricated, inflammatory, and derogatory.” 

    But on Monday, the White House’s press secretary confirmed Hegseth’s role in the sequence of events, which—as we noted in Monday’s newsletter—several lawmakers and legal experts have said could be a war crime, murder, or both. “Does the administration deny that that second strike happened, or did it happen and the administration denies that Secretary Hegseth gave the order?” a reporter asked White House press secretary Karoline Leavitt on Monday. “The latter is true,” she replied.  

    “Secretary Hegseth authorized Admiral Bradley to conduct these kinetic strikes,” Leavitt said. “Admiral Bradley worked well within his authority and the law directing the engagement to ensure the boat was destroyed and the threat to the United States of America was eliminated.” 

    With the admiral’s role in the narrative confirmed, Hegseth on Monday evening called Bradley a “hero” for ordering the death of the two survivors, which would seem to contravene Section 5.4.7 of the Defense Department’s Law of War Manual. “Admiral Mitch Bradley is an American hero, a true professional, and has my 100% support,” Hegseth wrote on his personal social media account Monday evening. “I stand by him and the combat decisions he has made—on the September 2 mission and all others since.” 

    Critical reaction: “Hegseth is very transparently blaming a Navy admiral for his own decision. Let this be a lesson for every other military officer: The Trump administration will issue unlawful orders, then blame you for following them,” former U.S. Army soldier Brandon Friedman replied on social media. “I mean, you deserve blame for following unlawful orders, but you should still know this in advance. IN ADDITION, Hegseth failed to learn or adopt the number one precept of Army leadership [PDF], specifically aimed at officers: ‘I am responsible for everything my unit does or fails to do.’”

    Fox’s Brit Hume was of a similar mind, writing that Hegseth’s Monday evening post seemed to convey “How to point the finger at someone while pretending to support him.” 

    Coverage continues below…


    Welcome to this Tuesday edition of The D Brief, a newsletter dedicated to developments affecting the future of U.S. national security, brought to you by Ben Watson and Bradley Peniston. It’s more important than ever to stay informed, so thank you for reading. Share your tips and feedback here. And if you’re not already subscribed, you can do that here. On this day in 1954, the U.S. signed a mutual defense treaty with Taiwan, which would later expire in 1980. 

    There’s been a notable increase in calls to a service offering free legal advice to U.S. troops, The Hill reported Monday evening. “The concerns, reflected in an uptick in calls to the Orders Project, which provides free legal advice to military personnel, come from the likes of staff officers involved in planning the strikes on supposed drug-carrying boats and those in charge of designating those on the vessels as a threat in order to carry out such attacks.” More, here

    Commentary: The United States “cannot build a safer world for its own servicemembers by discarding basic laws of war,” argues former Naval Academy JAG professor Mark Nevitt, writing Monday for Just Security. “If the United States abandons these rules, it cannot expect its adversaries to follow them when Americans are the ones captured, isolated, shipwrecked, or shot down. And it’s not just reciprocity. Weakening the legitimacy of such fundamental rules also corrodes the underlying foundation of a system that serves U.S. servicemembers time and again.” 

    “As the world’s most widely deployed maritime power, the United States relies on these protections more than any other nation,” Nevitt writes. “And what’s more, illegal orders create moral, reputational, and strategic harm long after the violations of law have ceased.” 

    So what now? Let the promised congressional investigations proceed without obstruction, Nevitt says. “Both the House and Senate Armed Services Committees have promised rigorous oversight of Pentagon operations in the Caribbean. At minimum, this must include full release of any relevant videotapes, especially of the Sept. 2 incident, and the accompanying Office of Legal Counsel opinion(s) purporting to justify the overall operations.” Read the rest, here

    Developing: President Trump just pardoned drug trafficker Juan Orlando Hernández, a former president of Honduras who was convicted last year and incarcerated in West Virginia for his involvement in the transit of cocaine into the U.S., the New York Times reported Tuesday morning. 

    It’s a notable legal about-face given Trump has threatened war against Venezuela, centered on the allegation that dictator Nicholas Maduro leads a drug cartel that traffics in cocaine. On Sunday, Trump was asked about this apparent discrepancy, and the president replied, “If somebody sells drugs in that country, that doesn’t mean you arrest the president.” Extra reading: 

    Etc.

    Commentary: The awful arithmetic of our wars. “If we don't figure out a way to fight far more cheaply, we won’t be able to afford to win a single battle,” writes New America’s Peter W. Singer at Defense One

    A sample of this daunting math: “Perhaps it was worth spending one-fifth of a billion dollars to damage Iranian nuclear facilities, but the numbers in Operation Rough Rider—the strikes against the Houthis last spring—illustrate the problem more starkly. The Pentagon spent roughly $5 billion on munitions and operating costs to stop attacks on Red Sea shipping, which simply started back up this month.” Read on, here.

    Trendspotting: U.S. troops are deeply invested in, well, investments. “Servicemembers are making fortunes in tech stocks and bitcoin. They’re trading tips on obscure cryptocurrencies from the decks of aircraft carriers. Base parking lots are peppered with new Porsches and Humvees as the market hits new highs. And social-media influencers in fatigues tell followers how they, too, can become rich,” writes the Wall Street Journal.

    Crypto is big. “Servicemembers helped fuel a surge in crypto prices that started in the fall of 2020 and peaked in 2021. In 2020, eight of the top 25 U.S. zip codes with the highest share of tax returns reporting receiving or disposing of crypto were around military bases,” WSJ reported off IRS data. read on, here.

    Developing: Trump's negotiator Steve Witkoff is slated to discuss Russia’s Ukraine invasion with Vladimir Putin in Moscow today. Trump’s son-in-law Jared Kushner is attending, too; he’s already been touring the city with his Russian hosts. Witkoff and Kushner’s visit comes after “revisions to the original peace proposal they drafted with Russian input,” the Wall Street Journal reports

    “Experts set low expectations for the Witkoff-Kushner mission,” UPI reports, and notes “Russia's maximalist demands require Ukraine to hand over territory in the Donbas that it still holds, the removal of any path to NATO membership and shrinking the size of its military, as well as succumbing permanently to Russia's sphere of influence in disputed areas by adopting its language, culture and the Russian Orthodox Church.” More, here

    Panning out: “Russian forces control more than 19% of Ukraine, or 115,600 square km (45,000 square miles), up one percentage point from two years ago, and have advanced in 2025 at the fastest pace since 2022, according to pro-Ukrainian maps,” Reuters reports

    Related: Did someone edit an online Ukraine battlemap to juke betting markets? That appears to be the case, Matthew Gault of 404 Media reported Monday.

    Which raises a question that we hadn’t quite considered yet: “Did you know you can bet on the outcomes of battles in ongoing war? You can!” Gault reports. More, here

    Additional reading:

    ]]>

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A joint investigation led by Mauro Eldritch, founder of BCA LTD, conducted together with threat-intel initiative NorthScan and ANY.RUN, a solution for interactive malware analysis and threat intelligence, has uncovered one of North Korea’s most persistent infiltration schemes: a network of remote IT workers tied to Lazarus Group’s Famous Chollima division. For the first time, researchers managed

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶