securitylab_nJuly 17, 2026🇷🇺Translated from Russian

50,000-Year-Old DNA Found in South African Teeth Where Heat Should Have Destroyed It

Ancient DNA is typically sought in cold environments where permafrost has protected remains from degradation for millennia. Low temperatures slow chemical reactions and microbial activity, allowing bones and teeth from permafrost regions to retain genetic material even after tens of thousands of years. Hot climates were long considered nearly hopeless for such research because high temperatures accelerate molecular breakdown, leaving only short, damaged fragments of the double helix.

However, a tooth discovered in South Africa has preserved DNA estimated to be around 50,000 years old. This represents the oldest genetic material from animals found south of the Sahara to date. The African continent contains numerous rich fossil sites, particularly in the coastal caves of South Africa, yet paleogeneticists have rarely examined local collections due to the time-consuming nature of analysis and the previous assumption of low success probability.

Scientists decided to test this pessimism by collecting 320 fossil bones and teeth from six caves and rock shelters along the southern coast. The remains belonged to six species of wild bovids, including antelopes and buffaloes, spanning ages from the recent past back to 110,000 years ago. Genetic analysis was performed on 144 samples using a primary method focused on short single-stranded DNA segments that survive long-term degradation, compared against traditional techniques designed for more intact double-stranded fragments.

In a normal state, a DNA molecule consists of two connected strands. After an organism dies, chemical bonds gradually break down, fragmenting the long molecule into numerous pieces. Older bones or teeth contain fewer intact sections, causing conventional methods to miss damaged fragments. The single-stranded approach processes the material differently by separating the remaining double-helix remnants in the lab, enabling construction of genetic libraries even from very short single chains and capturing fragments unsuitable for standard technology.

The difference proved significant: in some samples, the single-stranded method extracted 6.7 times more animal DNA than double-stranded analysis. While damage remained, the sensitive technique made previously unusable material viable. Ancient DNA was recovered from 65 of the 144 samples, achieving a 45% success rate — notably high for a warm region, especially given the age of some remains.

Most successful samples dated to the Holocene epoch, which began about 11,700 years ago and continues today. Younger bones and teeth retained more DNA and produced positive results more frequently. The authors recommend that future projects in South Africa begin with Holocene finds due to their higher success probability. Prior to this study, the oldest genome came from an extinct blue antelope in South Africa dated to roughly 9,300 years; the new work extends this boundary by tens of thousands of years.

Four particularly ancient teeth, aged between approximately 12,000 and 50,000 years, stood out. Three belonged to the extinct long-horned buffalo, while one came from a mountain reedbuck, an African antelope in the bovid family. The oldest specimen confirmed that viable DNA can persist in subtropical climates for tens of thousands of years, challenging the prior exclusion of low-latitude regions from paleogenetic studies.

Although success is not guaranteed in every ancient bone — fewer than half of the samples yielded results, mostly from the Holocene — the four older finds show that the preservation boundary extends much further than previously thought. This new methodology will allow more thorough examination of extensive African cave collections containing remains spanning tens of thousands of years, many of which have never been tested for DNA. Genetic data can reveal evolutionary relationships, population changes, and species extinctions, expanding such inquiries beyond cold regions to southern African remains as well.

Related articles

HabrOther

Step-Up Authentication vs 2FA: Implementing Additional Verification for Sensitive Operations in Corporate Systems

Traditional two-factor authentication secures only the initial login, leaving active sessions vulnerable to misuse during sensitive tasks such as accessing payroll data. Step-Up Authentication addresses this by requiring extra verification at the moment of critical actions rather than at login. The article details how one project moved beyond standard Identity Provider features in WSO2 by building a dedicated PIN-code service and gateway-2fa microservice. This approach uses signed cookies with TTL controls and JWT cross-checks to enforce elevated trust levels without disrupting normal user flows. The solution aligns with Zero Trust principles and was monitored via Matomo and ELK for usage and performance metrics. Key implementation considerations include balancing TTL duration, encrypting stored PINs, and conducting load testing before deployment.

AntiMalwareOther

Positive Technologies Adds Unified Console to PT X for Centralized Incident and Asset Management

Positive Technologies has introduced a single console within its PT X platform that combines incident management, asset control, and security posture assessment. Customers can now monitor attack attempts around the clock, view possible causes, track response status, and prioritize events without switching between multiple interfaces. The system lets organizations predefine which assets Positive Technologies may act upon and choose between manual customer response, automatic PT X actions, or approval-based workflows, with full audit reports generated afterward. A dedicated dashboard highlights coverage gaps by showing hosts protected by MaxPatrol EDR and flagging assets without agents installed. Machine learning capabilities have been expanded through a combination of large language models and classical ML to accelerate early attack detection and automate handling of low- and medium-severity incidents. Additional features include external perimeter analysis that reveals internet-facing resources from an attacker’s perspective and a bug-bounty-style cyber testing program that rewards researchers for identifying unacceptable events.

AntiMalwareOther

Meta Allows Over 50 Paid Ads Sexualizing Minors to Run on Facebook, Instagram, Messenger and Threads

Meta's advertising moderation systems failed to detect and remove more than 50 paid advertisements containing sexualized images of minors across its major platforms. The ads, some generated using generative AI tools, appeared on Facebook, Instagram, Messenger, and Threads over a nine-month period. Researchers at Tech Transparency Project identified that several of these advertisements remained active into early August. The content was not organic user posts but commercially purchased ads that bypassed Meta's review processes. The incident highlights ongoing weaknesses in automated and human moderation of paid promotional material involving prohibited themes. Tech Transparency Project emphasized that the scale and persistence of the ads point to systemic gaps in Meta's enforcement mechanisms for child safety policies.

AntiMalwareOther

Yandex Go Develops Custom DSL to Handle Complex Dynamic Ride Pricing Logic

Yandex Go has moved its ride pricing algorithm out of the main service code into a dedicated domain-specific language to avoid frequent deployments and tangled conditional logic. The pricing system accounts for geozones, demand surges, discounts, toll roads, extra stops, and special requirements such as transporting pets or sports equipment. Parameters are collected in parallel, dependencies are modeled as a graph, and requests run asynchronously on userver so that a single slow source does not break the entire calculation. Because rules change on average twice a week, keeping the logic in C++ would require rebuilding and redeploying 50 pods for roughly 40 minutes each time. The new DSL supports conditions, functions, immutable values, and fold operations instead of loops; rules are chained so each step receives the current price and metadata and returns an updated result. ANTLR 4 defines the grammar while the Z3 verifier ensures programs cannot produce invalid prices. The platform is already used by Yandex Taxi, Delivery, and the electric-vehicle charging service.