Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Malware / Trojaner / Viren3 Cyber Threats That Defined the Summer of 2026(24.09.2026 um 16:44 Uhr)
IT Security NachrichtenMeta testet menschliche Assistenten für Muse(24.09.2026 um 17:09 Uhr)
IT Security NachrichtenTui Airlines nehmen Vertriebsplattform von Airxelerate in Betrieb(24.09.2026 um 13:32 Uhr)
Malware / Trojaner / Viren3 Cyber Threats That Defined the Summer of 2026(24.09.2026 um 16:44 Uhr)
IT Security NachrichtenMeta testet menschliche Assistenten für Muse(24.09.2026 um 17:09 Uhr)
IT Security NachrichtenTui Airlines nehmen Vertriebsplattform von Airxelerate in Betrieb(24.09.2026 um 13:32 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

A Path Not Taken

I’ve been a software engineer for nearly thirty years, primarily working on large-scale high-performance distributed systems. The complexity of these systems is both amazing and frustrating. They are typically a collection of highly s…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

I’ve been a software engineer for nearly thirty years, primarily working on large-scale high-performance distributed systems. The complexity of these systems is both amazing and frustrating. They are typically a collection of highly specialized, custom-built modules or a complex integration of disparate COTS/FOSS products. Sometimes they are both.



As these systems grow and evolve, so does the institutional knowledge that is required to maintain, fix and enhance them. Shifting markets, political fluctuations and employee attrition/movement result in a loss of this institutional knowledge. Corporations typically back-fill positions with fresh-talent without realizing or acknowledging that it takes most people months or years to master the complex systems.



Much of the complexity in these systems can be attributed to microprocessor architecture. Microprocessors operate sequentially; they load/execute/store and branch/return billions of times per second, but always follow the instruction counter. Consequently, programming languages function in the same fashion. Modern microprocessor architectures can process instructions in parallel using multiple cores, but the code itself is still sequential. Modern operating systems also support concurrent/parallel processing using processor cores and software threading, but again the code is still sequential.



I’ve noticed a limiting pattern over the years: Our code repeatedly collects data elements to be used as input arguments, calls a function and inspects the results upon return. The code collects the data elements by possibly calling other functions, and we must collect all of the input data elements before we can invoke the function. This is sufficient in many cases, but what if the input data elements arrive asynchronously in an event-driven system? Then our code repeatedly polls until the asynchronous event occurs. This polling impacts efficiency and defeats parallelism. For example, if we must poll for multiple independent data elements, we are stacking these polling loops and not taking advantage of the intermediate time for other processing. Sure, we can put the polling on a separate thread, but then we need additional concurrency controls and IPC to coordinate the threads.



My colleagues and I started imagining what programming would look like if:




  • Data elements could arrive at any time, in any order.

  • The same data element could arrive at different functions at the same time.

  • Functions could get executed asynchronously when all data elements were available.

  • The location and number of function instances were dynamic.

  • A standard and consistent architecture made software easier to understand and maintain.



Although we arrived at these questions purely from experience, it turns out they weren’t entirely novel. For example, Kahn Process Networks (KPNs) were introduced in the 1970’s for signal processing. Flow-Based Programming (FBP), also introduced in the 1970’s, is another example where asynchronous processes consume data chunks that arrive over data streams.



Our notion was centered around Cells that process Stimuli arriving over Synapses. Cells could be connected, even multiply-connected, in any fashion by synapses. The synapses would transmit stimuli locally or remotely, and cell location would be transparent to the system. Stimuli would traverse the vast network of cells and synapses, triggering Activators in interested cells. Cells could host multiple activators that could be independent or interrelated. We referred to the construction of cellular systems as Cellular Programming.



While my colleagues chose to focus on a cellular operating system, I wanted to prove (or disprove) that the idea is generally useful. I could imagine the applications in distributed, event-driven, real-time systems, but could it be applied to general computing? There was only one way to find out; I had to build a framework for cellular programming. Over many years I would experiment, discuss and re-write my framework while overcoming the challenges in solving general computing tasks. Performance in a cellular system is paramount, so sophisticated protocols for discovery, subscription and routing were created and honed. Finally, cells were designed to consume minimal resources, especially while waiting for stimuli.



I would finally present the framework called NeuPaths to the software community in 2025. I suffered from a “Field of Dreams” fantasy, as if just publishing the framework would result in its discovery. Unfortunately there has been little interest so far. I shouldn’t be surprised. There is no single, tangible definition of what the framework is. People ask me what it does; I can only respond “anything you want.” It doesn’t solve a particular problem in a particular domain. It presents a new way to solve problems in any domain. This is why I invite everyone to experiment with cellular programming. I am hoping for collaboration, creativity and invention.



I invite you to explore and create with NeuPaths, available on GitHub: https://github.com/commence-software/NeuPaths

SOC Incident Playbook: Remote Code Execution (RCE) Defense
title: Detect Exploitation - A Path Not Taken
id: 64eb3888-25ee-4f34-ab5d-97be1f637962
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "A Path Not Taken" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich A Path Not Taken.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten A Path Not Taken

Thematisch verwandte Begriffe: Path, Taken · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-97360 | HFS2 version 2.4.0 and earlier contains an unauthenticated arbitrary fil…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick