Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
•
IT Security NachrichtenBetrüger phishen mit vermeintlicher Reisebestätigung - IT-Markt(24.09.2026 um 23:41 Uhr)
••
Sicherheitslücken (CVE)IT Security News Daily Summary 2026-09-24(24.09.2026 um 23:55 Uhr)
•
Sicherheitslücken (CVE)IT Security News Roundup: 2026-09-24(24.09.2026 um 23:57 Uhr)
•
Sicherheitslücken (CVE)IT Security News Hourly Summary 2026-09-25 00h : 9 posts(25.09.2026 um 00:00 Uhr)
•••
IT NachrichtenMicrosoft puts Brad Smith in charge of communications(25.09.2026 um 00:08 Uhr)
•••
IT Security NachrichtenBetrüger phishen mit vermeintlicher Reisebestätigung - IT-Markt(24.09.2026 um 23:41 Uhr)
••
Sicherheitslücken (CVE)IT Security News Daily Summary 2026-09-24(24.09.2026 um 23:55 Uhr)
•
Sicherheitslücken (CVE)IT Security News Roundup: 2026-09-24(24.09.2026 um 23:57 Uhr)
•
Sicherheitslücken (CVE)IT Security News Hourly Summary 2026-09-25 00h : 9 posts(25.09.2026 um 00:00 Uhr)
•••
IT NachrichtenMicrosoft puts Brad Smith in charge of communications(25.09.2026 um 00:08 Uhr)
••
Intelligence View
⚡ tsecurity.de Intelligence

Bash workflows are broken — I built a tool to make them predictable again

If you’ve ever debugged a broken CI pipeline at 2 AM, you probably know this feeling: “It works locally, but fails in CI” “What changed since last deploy?” “Why does this script behave differently on another machine?” Shell workflows ar…

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

If you’ve ever debugged a broken CI pipeline at 2 AM, you probably know this feeling:




  • “It works locally, but fails in CI”

  • “What changed since last deploy?”

  • “Why does this script behave differently on another machine?”



Shell workflows are powerful, but they have a fundamental problem:

they are not reproducible, not observable, and not structured by default.



I kept running into the same issues across different projects, so I decided to experiment with a small tool to fix this at the CLI level.







The problem: shell workflows are invisible systems



Bash and CLI tools are great, but they share a few weaknesses:





❌ No built-in logging



Once a command runs, it disappears unless you explicitly log everything.





❌ No reproducibility layer



Two developers running the same script can still get different outcomes.





❌ CI/CD setups drift over time



YAML configs, scripts, and environment assumptions slowly diverge.





❌ Debugging is mostly guesswork



You reconstruct what happened instead of observing it directly.







The idea: what if the terminal had a “trace layer”?



I wanted something simple:




  • every command is logged

  • workflows are reproducible

  • pipelines are predictable

  • debugging is deterministic instead of reactive



So I started building a small CLI toolkit called OLS (Open Linux Shell).







What OLS does



OLS is not a shell replacement.

It’s a toolkit layer on top of CLI workflows.



It focuses on three things:





1. Observability for CLI workflows



Every action is recorded so you can trace what actually happened.





2. Predictable environment checks



Instead of “it works on my machine”, you can validate setups explicitly.





3. Pipeline-first design



Tools are designed to work cleanly in CI/CD environments.







Example: CI/CD setup in one command



Instead of manually configuring GitHub Actions or copying templates:




cicd init






This generates a ready-to-use CI/CD pipeline.









Example: environment validation






ols doctor






Checks your system and highlights issues like:




  • missing dependencies

  • misconfigured environment

  • potential runtime problems









Why this matters



Most teams don’t fail because of code.



They fail because of:




  • inconsistent environments

  • unclear system state

  • missing visibility into what actually happened



OLS tries to reduce that gap by making CLI workflows more observable and reproducible.









Philosophy behind OLS



The design is based on a few principles:






1. Everything must be traceable



All actions should leave a clear trace so debugging becomes deterministic.






2. Minimal cognitive overhead



Commands should be simple and predictable, without unnecessary flags or complexity.






3. Pipeline-first thinking



Every tool should work naturally in CI/CD environments and support stdin/stdout workflows.






4. Offline-first usage model



Packages are downloaded once and cached locally for reuse.









Current status



OLS is an early-stage MVP.



It is:




  • experimental

  • evolving quickly

  • open to feedback and contributors



The goal is to explore whether adding a lightweight “observability layer” to CLI workflows actually improves developer experience in practice.









What I’m looking for



Right now, I’m mainly interested in:




  • feedback from DevOps / backend engineers

  • real-world edge cases

  • ideas for improving CLI observability

  • whether this approach is useful beyond personal workflows









Closing thought



We already have observability for systems, logs for applications, and metrics for infrastructure.



But our terminal workflows are still mostly invisible.



OLS is an attempt to change that — starting with something simple.






If you’ve worked with CI/CD, bash automation, or messy shell scripts, I’d really appreciate

CTI Threat Relationship Graph3 Knoten / 2 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Vulnerability Remediation & Verification
Syntax validiert (0 Fehler)
title: Detect Exploitation - Bash workflows are broken — I built a tool to make them predictable again
id: 44ce0ef7-d5d5-4a92-b3cb-e90e9fb25a13
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-25
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
Syntax validiert (0 Fehler)
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-25"
        description = "YARA Signature for "
    strings:
        $str = "Bash workflows are broken — I " ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("Bash workflows are broken  I built a too")
| stats count earliest(_time) as first_seen latest(_time) as last_seen by src_ip, dest_ip, dest_host, signature
| eval first_seen=strftime(first_seen, "%Y-%m-%d %H:%M:%S"), last_seen=strftime(last_seen, "%Y-%m-%d %H:%M:%S")
| sort - count
Syntax validiert (0 Fehler)
message: "*Bash workflows are broken  I built a too*"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "Bash workflows are broken  I built a too"
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc
🎯
MITRE ATT&CK Matrix Navigator 14 Taktiken
Reconnaissance
-
Resource Development
-
Initial Access
Execution
Persistence
-
Privilege Escalation
Defense Evasion
Credential Access
-
Discovery
-
Lateral Movement
-
Collection
-
Command and Control
Exfiltration
-
Impact
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich Bash workflows are broken — I built a to.... 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 Bash workflows are broken — I built a tool to make them predictable again

Thematisch verwandte Begriffe: Bash, workflows, broken, built · 6 Treffer

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

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-87722 | Uncontrolled Resource Consumption (CWE-400 / CWE-1333) in regex search q…
Advisory →
tsecurity.de Icon
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
📂 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...
↗ Original-Quelle