GoldDigger Android banking trojan South Africa and the United Kingdom; massive infection across South Africa and United Kingdom

GoldDigger Android banking trojan South Africa and the United Kingdom; massive infection across South Africa and United Kingdom Striking gold: Inside the GoldDigger Android malware | IBM Get hands-on experience with IBM tech Join one of the largest technical IBM community gatherings! IBM Trusteer’s in-depth analysis of GoldDigger malware reveals how this sophisticated Android mobile banking Trojan uses virtual environments and evasion techniques. Learn to recognize the threat and protect yourself from bad actors. IBM Trusteer researchers consistently investigate financial fraud threats across various digital channels, including mobile. In our latest mobile banking malware research, we explored the GoldDigger malware’s inner workings. This malware was first discovered by Group-IB, in 2023. Although it was detected three years ago, an in-depth technical analysis has not been publicly shared with the community until now. GoldDigger is a financial Android banking trojan from the RAT category that can perform on-device fraud. The malware is primarily focused on mobile banking users in South Africa, with additional targets identified across Europe. Artifacts observed both in the code and in the target list from the configuration indicate a clear intent to expand operations on a global scale. This blog provides our findings about the newest version of GoldDigger, with insights about its virtual environment feature and the capabilities that help cyber criminals use it in mobile banking fraud. While the use of a virtualized environment was first observed in the GodFather malware, they remain uncommon among financial malware, which typically utilizes overlay or accessibility abuse for fraudulent activities. GoldDigger uses a sophisticated packer called “dpt-shell”. A packer is a software protection mechanism that compresses, encrypts, or obfuscates an application’s code and resources, making it difficult for security tools and researchers to inspect its contents. This packer is used to hide the malware’s code, prevent analysis, evade detection by antivirus and security solutions, and conceal the malware internal functionality. The packer is implemented inside a native shared library (.so) file called “libdpt.so” and located in the malware’s assets directory. In contrast to many Android malware packers, this one does not simply drop and load the protected DEX file at runtime. At a first glance, we can see that the malware builds a path to drop the DEX file inside its private directory: And indeed, several DEX files were observed being dropped to this path while running the malware: However, when trying to read the code inside the DEX files, some methods are not complete and are filled with junk code: Analysis of the packer revealed that the malware hooks libart.so, the core Android Runtime (ART) library. This allows the malware to intercept class loading, modify bytecode at runtime and hide malicious classes from analysis. To bypass this protection and extract the hidden code, dynamic analysis can be useful. However, the malware implements multiple evasion techniques in the packer. Some examples include: 1. The packer’s native logic is encrypted using RC4, a symmetric encryption stream cipher, with a different key for each sample and decrypted at runtime. Therefore, it must first be decrypted before static analysis can be performed. 2. The packer can detect whether Frida is attached to the process, then proceed to crash it. 3. Another anti-debugging technique employed is self‑debugging, using the PTRACE system call. By invoking ptrace(PTRACE_TRACEME) on itself, the process marks itself as being traced. A process can only be traced by a single debugger at a time, so this prevents any external debugger from attaching. After decrypting and patching the packer, we were able to successfully extract the hidden code during runtime. The current GoldDigger campaign primarily impersonates airline companies, as well as shopping retailers. The campaign resulted in a massive infection across many users, mostly in South Africa and the United Kingdom. When the malware is initially executed, it displays a fake login page. This page is crafted to mimic a legitimate company interface, as part of its social engineering strategy. After the victim registers as a new user or enters their real account credentials, the malware requests the victim to approve its Accessibility service. Once approved, the malware displays a screen asking the user to claim their rewards: The malware then registers the victim to the command-and-control (C&C) server by sending information about the mobile device and the password entered by the victim on the login page. The C&C server will send the configuration to the malware, including the list of targeted banks, and a token that will be used to communicate with the C&C. This configuration will be stored in the malware’s shared preferences XML file. The Android Accessibility service is a legitimate Android framework that is designed to assist users by granting apps the ability to read screen content, simulate clicks and interact with other apps. Financial malware such as GoldDigger exploits this service to perform fraudulent actions. GoldDigger can inject input to the banking app to mimic user interaction, such as entering text, clicking buttons and performing gestures. In doing so, GoldDigger initiates fraudulent transactions from the victim’s banking app to the attacker. In addition, the fraudster can see the content of the victim’s screen. When the victim opens a banking app from the configuration list, the malware uses the Accessibility service to steal the credentials from the login page. In addition, the fraudster can see the content of all SMS messages that are sent to the user and steal the 2FA SMS messages. GoldDigger is also capable of displaying an overlay dialog on the screen, with content dynamically retrieved from its C&C server. Code analysis suggests this dialog presents a phishing page mimicking a targeted bank’s login screen to harvest victim credentials. This approach is consistent with traditional overlay-based phishing attacks that are commonly used in mobile banking malware. A unique capability of GoldDigger, is its ability to run a targeted app in a virtual environment, per C&C demand. A virtual environment application in Android is an app that creates an isolated runtime environment inside the device (within the scope of the virtual app itself), where other apps can be installed and executed independently from the main OS environment. Inside the virtual environment, system API calls can be intercepted and modified by the virtualization framework. For example, if an app calls While virtual environments can be used for legitimate features like app cloning, financial malware often abuse them for fraudulent activities. The malware can intercept and modify all API calls made by the targeted app within the virtual environment, enabling it to bypass detection mechanisms and spoof device identifiers or account information. In addition, the attacker obtains full visibility into its runtime behavior, enabling real-time interception of credentials and sensitive data. In the GoldDigger malware, the C&C sends the package name of the app that needs to be running inside the virtual environment, and a service in the malware handles the virtualization. While some of the service logic is implemented within the GoldDigger malware, part of the functionality is missing and may be delivered via the C&C server or another application. At the time of writing, we were unable to retrieve the missing component. Here, the GoldDigger manifest references the package name of the missing virtualization component: In a normal Android flow, an app communicates with the real Android system services through Binder IPC. From here, it receives the actual device state, such as the real list of installed applications. However, in a virtualized environment things work differently. API calls are redirected through a virtualization layer that intercepts and modifies responses, returning fake or filtered information to apps running inside the virtual space. Our analysis of the GoldDigger sample, led to the identification of the Binder communication layer (IThirdPartyService, Proxy and Stub interfaces) used to communicate with the virtualization engine. However, the actual virtualization service and the fake system API logic appear to be missing and are likely implemented in the external net.yy.vwork component. To communicate with the attacker’s C&C server during its ongoing operations, GoldDigger uses the WebSocket protocol. Each request contains a token generated by the C&C and is received from the malware’s first registration. The requests and responses are encrypted with standard AES and a key embedded within the malware code. The malware sends “keep-alive” requests to the C&C system and parses the response, which is returned as a JSON file containing a command number and relevant parameters. Each command comes with code, triggering a malware capability. To protect yourself, you should regularly review your installed applications and promptly remove any that appear unfamiliar or suspicious. Remaining proactive and cautious will help mitigate risks posed by this evolving attack paradigm. In this blog, we’ve analyzed a new version of the GoldDigger malware. We’ve examined the malware’s virtualization capabilities and their potential use in mobile banking fraud. In addition to these virtualization capabilities, we’ve seen how GoldDigger also leverages overlay attacks and the abuse of the Android Accessibility service to facilitate fraudulent actions. The IBM Trusteer lab will continue to monitor and research the malware to track its ongoing evolution and emerging capabilities. IBM Trusteer helps you detect fraud and malware, authenticate users and establish identity trust across the omnichannel customer journey. Hundreds of leading organizations rely on IBM Trusteer to help secure their customers’ digital journeys and support business growth. Special thanks to Camila Sablotny for her valuable help with the investigation. Join security leaders who rely on the Think Newsletter for curated news on AI, cybersecurity, data and automation. Learn fast from expert tutorials and explainers—delivered directly to your inbox twice weekly. See the IBM Privacy Statement.

August 12, 2026

Emerging market debt remains resilient worldwide; Latin America leads with +12.6% YTD

Emerging market debt remains resilient worldwide; Latin America leads with +12.6% YTD Emerging market debt remains resilient as uncertainty tests markets Emerging market debt remains resilient as uncertainty tests markets Strong investor demand is helping performance overall, while divergence continues between commodity-exporting economies and those exposed to oil supply disruption. Despite the recent mild correction, emerging markets debt (EMD) continues to demonstrate resilience amid exceptionally uncertain global macroeconomic, monetary and geopolitical backdrops. This resilience is reflected in the sustained inflows into the asset class, as shown in the chart below. Improving demand from foreign investors has helped maintain the strong outperformance recorded over the past three years. This favourable performance trajectory has also remained firmly in place despite recent renewed upward pressure on developed market bond yields. ...

August 11, 2026

Investors boost emerging market debt performance globally; Angola bonds >8% yield

Investors boost emerging market debt performance globally; Angola bonds >8% yield Emerging market debt remains resilient as uncertainty tests markets Emerging market debt remains resilient as uncertainty tests markets Strong investor demand is helping performance overall, while divergence continues between commodity-exporting economies and those exposed to oil supply disruption. Despite the recent mild correction, emerging markets debt (EMD) continues to demonstrate resilience amid exceptionally uncertain global macroeconomic, monetary and geopolitical backdrops. This resilience is reflected in the sustained inflows into the asset class, as shown in the chart below. Improving demand from foreign investors has helped maintain the strong outperformance recorded over the past three years. This favourable performance trajectory has also remained firmly in place despite recent renewed upward pressure on developed market bond yields. ...

August 11, 2026

Andrea Nahles besucht Papenburg zum Infoaustausch mit der Ems-Achse; Drei Projekte vorgestellt, Allianz der Willigen stärkt Vernetzung regionaler Angebote

Andrea Nahles besucht Papenburg zum Infoaustausch mit der Ems-Achse; Drei Projekte vorgestellt, Allianz der Willigen stärkt Vernetzung regionaler Angebote Andrea Nahles Fan der Ems-Achse - Emsachse Andrea Nahles Fan der Ems-Achse Vorstandsvorsitzende der Bundesagentur für Arbeit zum Info-Austausch in Papenburg Papenburg. Ein dickes Lob aus berufenem Munde hat jetzt die Wachstumsregion Ems-Achse erhalten. Keine Geringere als die Vorstandsvorsitzende der Bundesagentur für Arbeit, Andrea Nahles, ist zu einem Informationsaustausch in die Geschäftsstelle in Papenburg gekommen. „Ich reise gerade durch Deutschland, um gute Nachrichten zu sammeln.“ ...

August 11, 2026

Emerging market debt remains resilient in global markets; Inflows drive continued outperformance over 3 years

Emerging market debt remains resilient in global markets; Inflows drive continued outperformance over 3 years Emerging market debt remains resilient as uncertainty tests markets Emerging market debt remains resilient as uncertainty tests markets Strong investor demand is helping performance overall, while divergence continues between commodity-exporting economies and those exposed to oil supply disruption. Despite the recent mild correction, emerging markets debt (EMD) continues to demonstrate resilience amid exceptionally uncertain global macroeconomic, monetary and geopolitical backdrops. This resilience is reflected in the sustained inflows into the asset class, as shown in the chart below. Improving demand from foreign investors has helped maintain the strong outperformance recorded over the past three years. This favourable performance trajectory has also remained firmly in place despite recent renewed upward pressure on developed market bond yields. ...

August 11, 2026

Egypt to host CAF U-23 Africa Cup of Nations 2027 in Egypt

Egypt to host CAF U-23 Africa Cup of Nations 2027 in Egypt Football: Egypt confirmed as hosts for CAF men’s U-23 Africa Cup of Nations 2027 Football: Egypt confirmed as hosts for CAF men’s U-23 Africa Cup of Nations 2027 Neither the dates nor the host cities have been announced yet for the tournament. Egypt will host the 2027 CAF U-23 Africa Cup of Nations (AFCON) , CAF announced on Monday (10 August). ...

August 11, 2026

FEI World Championships Aachen 2026 in Aachen, Germany schedule, all results and LA28 qualifier live; 27 NOCs can secure LA28 team quotas

FEI World Championships Aachen 2026 in Aachen, Germany schedule, all results and LA28 qualifier live; 27 NOCs can secure LA28 team quotas Equestrian: FEI World Championships Aachen 2026: Schedule, all results and how to watch LA28 qualifier live FEI World Championships Aachen 2026: Schedule, all results and how to watch LA28 qualifier live If there’s one equestrian event to watch in 2026, it’s the FEI World Championships Aachen. Discover the full schedule, all results, LA28 qualification stakes and how to follow the action live. ...

August 11, 2026

Morocco v Cameroon semi-final Moulay El Hassan Stadium, Rabat; All four semi-finalists booked for Brazil World Cup

Morocco v Cameroon semi-final Moulay El Hassan Stadium, Rabat; All four semi-finalists booked for Brazil World Cup Women’s Africa Cup of Nations 2026: Semi-final preview, schedule and how to watch Women’s Africa Cup of Nations 2026: Semi-final preview, schedule and how to watch Read on for the key things you need to know ahead of Algeria v Malawi and Morocco v Cameron on Wednesday (12 August) in the semi-finals of WAFCON 2026. ...

August 11, 2026

New champion crowned at WAFCON 2026 in Morocco; first-time champion guaranteed

New champion crowned at WAFCON 2026 in Morocco; first-time champion guaranteed Women’s Africa Cup of Nations 2026: A new era and a new champion for women’s football in Africa Women’s Africa Cup of Nations 2026: A new era and a new champion for women’s football in Africa A new name will be engraved on the WAFCON trophy for just the fourth time in the competition’s history, when the final is played on the 16th of August. ...

August 11, 2026

Alexandra Ștefania UȚĂ 400m Hurdles Women Final Oregon; record amended for BIB 930

Alexandra Ștefania UȚĂ 400m Hurdles Women Final Oregon; record amended for BIB 930 PLACE BIB NAME DATE of BIRTH RESULT RACE ANALYSIS 400m Hurdles Women - Final Oregon (USA) 5-9 August 2026 REVISED BIB 930 RECORD AMENDED 9 August 2026 28° C 32 % TEMPERATURE HUMIDITY START TIME 13:32 100 m 1 200 m 2 300 m 3 PB 1 930 Alexandra Ștefania UȚĂ 55.33 6 Oct 07 ROU 13.14 (1) 1 13.14 26.17 (1) 2 13.03 40.38 (1) 3 14.21 14.95 PB 2 948 Tumi RAMOKGOPA 55.88 27 Aug 07 RSA 13.40 (2) 1 13.40 26.79 (3) 2 13.39 41.14 (2) 3 14.35 14.74 NU20R 3 660 Eleni IAKOVAKI 55.99 15 Apr 09 GRE 13.62 (6) 1 13.62 26.89 (6) 2 13.27 41.55 (4) 3 14.66 14.44 NU20R 4 1068 Mariam KAREEM 56.27 25 Jan 08 UAE 13.82 (7) 1 13.82 27.54 (8) 2 13.72 41.96 (7) 3 14.42 14.31 PB 5 620 Rebekka FEIRLE 56.39 30 Jan 07 GER 13.46 (3) 1 13.46 26.87 (5) 2 13.41 41.44 (3) 3 14.57 14.95 6 818 Rania EL HAMDAOUI 57.89 5 Sep 08 MAR 14.14 (8) 1 14.14 27.45 (7) 2 13.31 42.05 (8) 3 14.60 15.84 7 348 Kei-Mahri HANNA 58.17 9 Jan 08 BAH 13.53 (5) 1 13.53 26.77 (2) 2 13.24 41.77 (5) 3 15.00 16.40 8 1065 Duru Iklim KADANALI 58.32 28 Sep 07 TUR 13.52 (4) 1 13.52 26.84 (4) 2 13.32 41.77 (6) 3 14.93 16.55 772 Shevaughn THOMAS DNF 28 Aug 07 JAM 14.67 (9) 1 14.67 AT-400H-W-f–1–.RS5..v2 Timing by SEIKO Issued at 14:30 on Sunday, 09 August 2026 WORLD ATHLETICS PARTNERS ...

August 11, 2026