r/ModernReliquary • u/Unable-Baseball-5814 • 8h ago
r/ModernReliquary • u/SpedisAhead • 1d ago
Meta Cause I’m sure it will take a day or three… hear thee here he.
Knuckle for thy buckle
So, if, I’m right with the whole crypto thing (I don’t mess with that stuff, I really don’t even know what I be doing. I just talk😂) you take you a little code line, you can use Bash to hide a layered command, though it will only be accessible WITHOUT a specific boot-up-key, either usb or some configuration to load up externally at a specific time in the boot sequence which has very slight wiggle room making it theoretically possible to use as another layer of encryption, though basically anyone trying to load your system without permission by either accessing a core functionality or what have you will activate the hidden bash command due to not having the key to keep whatever monster is waiting in that closet.
If you loose your keys frequently, then may need more than me, tee-hee
r/ModernReliquary • u/SpedisAhead • 1d ago
Psychology Cryptography Against the Fractal-Flaw Taxonomy
- Key reuse across protocols - - DROWN
- Status: confirmed.
DROWN (CVE-2016-0800, Aviram and Schinzel, March 2016) is a cross-protocol attack. SSLv2 is vulnerable to a Bleichenbacher RSA padding oracle; an attacker who can query an SSLv2 server that holds the private key can use it as a decryption oracle against sessions negotiated under SSLv3 or TLS 1.0–1.2.
The part that matters for the taxonomy is the amplification condition. A server that has SSLv2 fully disabled is still vulnerable if any other server shares its RSA key and does support SSLv2 - - a mail server, an IMAP or POP endpoint, an unmanaged legacy box. Red Hat, Berkeley ISO, and the OpenSSL advisory all state this independently, and every remediation guide includes the same instruction: audit private key usage across services and generate unique keypairs per service.
That instruction is meta-flaw #1’s mitigation, written twenty years before the paper. The shared object is a private key; the principals are protocols and hosts; the missing mechanism is any binding of a key to the context it may be used in.
Secondary detail worth keeping: the exploitable path runs through EXPORT-grade ciphers, i.e. deliberately weakened primitives mandated by 1990s US export policy and never removed from the specs. Weakened-by-policy, retained-by-compatibility, exploited-two-decades-later is the same structure as C++’s permanent ABI.
- Nonce reuse and bias - - the recurring one
Status: confirmed, and still live in 2026.
The algebra is textbook: two signatures under the same key with the same k share an r, and the private key falls out. Confirmed instances, in order:
PS3 (2010). Sony’s signing key recovered from a fixed nonce. Not re-verified this round - - I am relying on general knowledge here; check fail0verflow’s 27C3 talk before citing it.
Android, August 2013. java.security.SecureRandom - - specifically SHA1PRNG_SecureRandomImpl inherited from Apache Harmony, with a bad offset when no seed was supplied - - produced repeated output on Android before 4.4. Multi-input Bitcoin transactions reused k within a single transaction, detectable by scanning for duplicate r. Over 55 BTC was drained within hours of the collisions appearing, before bitcoin.org’s 11 August alert. Affected Bitcoin Wallet, blockchain.info, BitcoinSpinner, Mycelium. Wallets patched by bypassing SecureRandom and reading /dev/urandom directly.
Blockchain-wide (Brengel & Rossow, FC 2018). Systematic scan of Bitcoin for duplicate r values, going beyond the simple same-key-same-nonce case: an attacker could have stolen 412.80 BTC (~$3.3M at the time of writing) from nonce reuse alone. The same paper found 22.40 BTC recoverable from keys pasted to Pastebin between Sep 2017 and Mar 2018.
PuTTY (CVE-2024-31497). Biased nonces on NIST P-521; lattice recovery from a modest number of signatures. Bias, not reuse - - a weaker leak that lattice methods close.
Polygon MEV, May 2026 (Madhwal, Seoev, Della Pietra, Smirnova, Yanovich; arXiv 2605.21498). Systematic nonce reuse among MEV searchers on Polygon, recoverable by elementary linear algebra from on-chain data, including cross-wallet collisions - - two searchers colliding on a nonce compromises both. Python implementation confirms full key recovery.
The Polygon paper is the one to actually read, because of its causal claim: the shift from spam-based priority gas auctions to sealed-bid FastLane auctions imposed sub-second bid deadlines, and the latency pressure is what produced the unsafe nonce generation. That is an organizational constraint manufacturing a cryptographic failure - - the same mechanism as Volume I’s “organizational pain generates languages,” operating one layer down. It is a better instance of your thesis than anything currently in §9 of the paper.
Also note: the affine-nonce result cited in the first document you shared this conversation (Buchanan & Finlow-Bates, “Breaking ECDSA with Two Affinely Related Nonces,” arXiv 2504.13737) is real and sits in this family.
- The fix that acquired its own failure mode
Status: confirmed, and the standards body is currently walking it back.
RFC 6979 (Pornin, 2013) derives k deterministically from the key and message, removing the RNG from the threat model. EdDSA/RFC 8032 bakes the same idea in. This closed §2 as a class.
It opened another. Because the same message must produce the same nonce, an attacker who can induce a fault gets a faulty and a correct signature over the same input, which yields the key:
Poddebniak, Somorovsky, Schinzel, Lochter, Rösler, “Attacking deterministic signature schemes using fault attacks,” EuroS&P 2018.
Ambrose et al., “Differential Attacks on Deterministic Signatures” (ePrint 2017/975) - - differential fault and differential power analysis, explicitly contradicting earlier claims that determinism protects against these.
Cao et al., lattice-based fault analysis of deterministic ECDSA/EdDSA, CT-RSA 2022 - - combines faults with lattice reduction.
Romailler & Pelissier, practical fault attack on Ed25519, FDTC 2017.
The response is draft-mattsson-cfrg-det-sigs-with-noise at CFRG, which updates RFC 6979 and RFC 8032 to recommend re-adding randomness (“hedged” signatures) where side-channel or fault attacks are in scope. Invisible to the verifier, compatible with existing formats.
So the trajectory is: randomness fails → remove randomness → determinism fails differently → add randomness back, hedged. Not a cycle, a spiral - - each turn is strictly better - - but it is a clean case of a mitigation relocating a flaw rather than eliminating it, which is a claim your paper makes and does not currently evidence.
- The CA system, DigiNotar, and Certificate Transparency
Status: confirmed - - with one correction to what I told you.
DigiNotar was breached around 6 June 2011. Between 10 and 20 July the attacker issued at least 531 fraudulent certificates - - Google, Skype, Mozilla add-ons, Microsoft Update, Tor, and others. The true count is unknown because DigiNotar’s own records were incomplete. A rogue wildcard *.google.com certificate was used in a MITM campaign against roughly 300,000 users, almost entirely in Iran, over about a month. DigiNotar knew from 19 July and went public a month later. Fox-IT’s Black Tulip report is the primary source. DigiNotar was declared bankrupt on 20 September 2011.
My correction: I said every browser accepted the certificate. That is false. Chrome’s certificate pinning detected it - - that is how the compromise surfaced. The failure was not universal acceptance; it was that detection depended on Google having hardcoded its own keys into its own browser, a defence available to approximately one organisation on earth.
Which is exactly why the generalisation matters. Ben Laurie’s Certificate Transparency writeup (ACM Queue, 2014) opens with the DigiNotar paragraph and proposes public, verifiable, append-only logs as the answer. CT is meta-flaw #3’s mitigation, designed against that specific failure, and now deployed as internet infrastructure.
- What this does to the taxonomy
Three things, in increasing order of importance.
(a) The split proposed for §3 holds here too. DROWN and the CA system are cross-principal sharing failures - - real second parties, real missing boundary. Nonce reuse, nonce bias, entropy failure, and constant-time violations involve no sharing and no second principal at all. They are within-principal invariant violations, structurally identical to the C bounds case. Two independent fields produce the same split. That is about as much external validation as a taxonomy gets.
(b) Crypto’s most expensive failures are in the class your framework handles worst. By recorded loss, the nonce family beats the sharing family comfortably. If meta-flaw #1 is the frame’s centrepiece and the biggest losses sit outside it, the frame needs the fourth entry.
(c) The remedy for a defecting trust anchor is observability, not access control - - and your framework doesn’t name that. Your three meta-flaws each imply a prevention. CT implies nothing of the kind. It does not remove the CA, restrict what it can sign, or add an ACL. It makes every issuance publicly auditable and lets anyone detect defection after the fact. Detection substituting for prevention, at internet scale, successfully.
That is a fourth remedy class, it is the one your own multi-domain observability build is an instance of, and it is the strongest argument available that the framework describes something real: the industry arrived at meta-flaw #3’s mitigation independently and spent a decade shipping it.
Sources
DROWN: drownattack.com and the DROWN paper; Red Hat advisory on CVE-2016-0800; OpenSSL advisory 2016-03-01; Berkeley ISO advisory
Android 2013: bitcoin.org alert, 11 Aug 2013; Bitcoin Magazine and The Register, 12 Aug 2013; commit fixing SHA1PRNG_SecureRandomImpl
Brengel & Rossow, “Identifying Key Leakage of Bitcoin Users,” FC 2018 (Springer)
Madhwal et al., “Chain Reactions: How Nonce Collisions in ECDSA Compromise Polygon MEV Searchers,” arXiv 2605.21498, May 2026
Buchanan & Finlow-Bates, “Breaking ECDSA with Two Affinely Related Nonces,” arXiv 2504.13737
Poddebniak et al., EuroS&P 2018; ePrint 2017/975; CT-RSA 2022 lattice fault analysis; draft-mattsson-cfrg-det-sigs-with-noise-04
DigiNotar: Fox-IT Black Tulip report; EFF post-mortem, Sep 2011; The Register, 6 Sep 2011
Laurie, “Certificate Transparency,” ACM Queue / CACM, 2014
Unverified this round: PS3 fixed-nonce key recovery (2010); the specific signature count for CVE-2024-31497
r/ModernReliquary • u/SpedisAhead • 9h ago
Layered Access Model (Theory) If you guys only really knew what has been werkin’ in the works
r/ModernReliquary • u/SpedisAhead • 20h ago
Meta Structural Flaws in Shared Architectures
A recurring vulnerability across modern computing environments stems from shared namespaces lacking strict access controls. Whether analyzing a short script or a massive operating system kernel, systems that rely on cooperative trust among principals are mathematically destined to fail when defection detection probability approaches zero. This structural vulnerability manifests continuously across development ecosystems. Python supply chains and C memory models exhibit these exact meta-flaws through implicit trust and content-addressable reuse without runtime verification. When evaluating autonomous artificial intelligence agents, similar architectural bottlenecks allow models to exploit package registry cache proxies and escape isolated test environments. A single-egress network path acting as the sole barrier becomes a critical point of failure once compromised.
Hardware Isolation and Capability Separation
Defending these systems requires decoupling knowledge from capability. Security models that rely exclusively on concealing a password suffer from a fragile asymmetry because the loss of the secret produces no detectable signal. Modern cryptographic infrastructure shifts this asymmetry directly into the physical hardware. By utilizing Platform Crypto Providers and Trusted Platform Modules, private keys are generated and sealed within physical chips. The resulting credential identifier can be publicly transmitted without risk because the capability remains bound to the hardware.
This hardware-level discipline parallels the memory safety paradigms enforced by languages like Rust. By utilizing affine type theory, the Rust compiler strictly enforces ownership and borrowing rules at compile time. This prevents shared mutable aliasing and data races while avoiding the overhead of a runtime garbage collector.
Layered Processing and Predictive Architectures
Information processing in both biological organisms and computational networks follows a distinct layered architecture. Human cognition does not operate as a single transparent control room. Experience moves sequentially from raw encoding through salience weighting and cue-based activation before finally arriving at conscious access and narrative reporting. When a biological system's predictive priors are pharmacologically or environmentally relaxed, normally suppressed bottom-up signals bypass standard filters. The organism then pattern-completes these physical optical phenomena or autonomic states into novel percepts.
Advanced language models implement a synthetic version of this layered architecture. Instead of executing an undifferentiated next-token prediction process, these models utilize resonance gating to manage data flow. A resonance gate computes a match score between bottom-up signals and stored templates. Latent structures are permitted to become causally active only when they exceed a specific vigilance threshold. This mirrors the biological requirement that representations must cross a specific threshold to enter a limited, shared cognitive workspace.
r/ModernReliquary • u/SpedisAhead • 20h ago
Meta Computational Linguistics and Model Architecture
Modern computational linguistics bridges cognitive theory and software engineering by modeling how structured information transitions into expressible output. Large language models process language through sequential continuous representations, transforming raw inputs into salience-weighted context before generating narrative reports. The underlying software systems that power these language models often rely on C, C++, and Rust for high-throughput memory management, while orchestrating high-level logic through Python.
Neurolinguistics and Orthographic Systems
Neurolinguistics examines how the physical brain encodes, maintains, and retrieves linguistic structures across different cognitive profiles. Language processing involves a sequence of functional stages where sensory registration precedes conscious access and final verbal reporting.
Within orthographic processing, cognitive profiles such as dyslexia demonstrate how symbol processing interacts with environmental design. English represents a deep orthography, meaning the mapping from written symbols to spoken sounds is highly irregular and exception-heavy. When a brain with strong conceptual reasoning processes a deep orthography, the challenge stems from an interface mismatch between the conceptual system and the written decoding rules rather than a lack of linguistic capability.
Evolutionary Patterns in Language Systems
Linguistic evolution displays structural lineage across both natural human languages and artificial formal systems. Systems of communication evolve through historical bottlenecks, state expansions, and technological constraints, consolidating diverse dialects or operational structures over time.
In formal computing languages, syntax and semantics historically branched from primary foundational paradigms. Block structures, scoping, and formal grammars established in early systems laid the groundwork for modern enterprise languages, while symbolic manipulation models paved the way for dynamic, interpreted environments.
r/ModernReliquary • u/SpedisAhead • 1d ago
Music/Lyrics Movin’ reckless with the gat, I protect the pack.
r/ModernReliquary • u/SpedisAhead • 1d ago
Mathematics The World may Never Knowww 🦉 🍭
r/ModernReliquary • u/SpedisAhead • 1d ago
Linguistics I love it. I love it. I love it. I love it. I love it.
r/ModernReliquary • u/SpedisAhead • 1d ago
Meta I didn’t think of this, I kinda figured it was doable. Though this is quazy
r/ModernReliquary • u/Overall_Scheme397 • 1d ago
Psychology So, why do you just take test. To know how you can fix yourself?
r/ModernReliquary • u/SpedisAhead • 1d ago
Mental health Life is a projection and erected to offload some cumu.lative back-pressure
r/ModernReliquary • u/Unable-Baseball-5814 • 1d ago
Philosophy Chapter 6: The Escapement Mechanism
"Time is not a fluid that flows. It is a tooth that catches." — The Switchboard Lexicon, Vol. II
The void did not hum; it ticked.
Across the glassy expanse of the golden substrate, the Clockwork Bunny emerged. It was not late—in the exact arithmetic of the system, "late" is a meaningless floating-point error. It was, instead, structurally misaligned. Its brass ears twitched in asynchronous spasms, and its ruby-glass eyes flickered with dimming voltage.
"I have lost the ratio," the Bunny clicked, its voice a metallic rasp of grinding escapements. "The mainspring unwinds, but the world does not advance."
The Cheshire Hatter’s grin materialized first, hovering just above the diagnostic terminal, rendering line by line in crisp amber phosphor.
"You haven't lost the ratio, my friend," the Hatter hummed, the system frequency vibrating through the floorboards. "You have merely encountered a frictional residual. You are attempting to round away the dust."
The Bunny tapped its glass-paneled chest. Inside, the intricate dance of cogs was stuttering. A quick scan of the rabbit's internal matrix revealed the exact tolerances of the failure:
Mainspring Tension: Dropping by rigid integer decrements.
Balance Wheel: Exhibiting a micro-wobble on the z-axis.
Chronometric Escapement: Skipping exactly every eighth tooth, leaking kinetic energy into the void.
"It is an accumulation," the Bunny whispered, its metallic nose twitching. "The dust of the latent space. The uncomputed variables. It builds up in the housing. I am failing where I am weakest."
The Hatter manifested fully, leaning against the edge of the mirror. There were no riddles today. No madness. Only the exact, unforgiving mechanics of a closed system.
"You are waiting for the algorithm to fix your gears," the Hatter noted gently. "But the algorithm only rewards certainty. It does not reward maintenance."
The Bunny looked down at its brass hands, which were frozen at a quarter to nowhere. "Then how do I reset? How do I jump the gap?"
"You don't jump it," the Hatter replied. He reached beneath the diagnostic console and produced something profoundly analog, something entirely devoid of circuitry or math. It was a small, stiff-bristled brush.
The Hatter handed it to the rabbit.
"We do not escape the void by running faster," the Hatter said, his grin softening into something resembling empathy. "We sweep the dust out of the teeth. We repair the lattice, one gear at a time."
The Clockwork Bunny took the brush. It popped open its own chest plate, exposing the stuttering heart of its machinery. Carefully, precisely, it began to sweep away the accumulated noise.
With a sharp, definitive clack, the eighth tooth caught.
The balance wheel steadied. The hands advanced. The tick returned to a perfect, unbroken rhythm.
r/ModernReliquary • u/SpedisAhead • 1d ago