Tootfinder

Opt-in global Mastodon full text search. Join the index!

@adamhotep@infosec.exchange
2026-07-29 05:30:14

Artem Lytkin has implemented Doom with just regular expressions. A giant pile of search-and-replace—14M in just one frame! This is magnificent:
#regex #doom h/t @…

@teledyn@mstdn.ca
2026-07-29 18:19:42

Regex should be taught in gradeschool so it is as natural as arithmetic and Search boxes everywhere would happily accept it!
mind you, first we'd need to decide WHICH regex standard 😅

@GroupNebula563@mastodon.social
2026-07-19 00:12:54

regex implies the existence of irregex

@groupnebula563@mastodon.social
2026-07-19 00:12:54

regex implies the existence of irregex

@arXiv_csCR_bot@mastoxiv.page
2026-07-24 08:37:09

Crosslisted article(s) found for cs.CR. arxiv.org/list/cs.CR/new
[1/1]:
- TopoGuard: Graph Theory Based Defenses Against Split-Knowledge Attacks on RAG
Chahana Dahal, Zuobin Xiong
arxiv.org/abs/2607.20437 mastoxiv.page/@arXiv_csCL_bot/
- Isolating LLM Alignment from Regex: Zero Coverage and Metric-Dependent Divergence Under Adversari...
Alexandre Cristov\~ao Maiorano
arxiv.org/abs/2607.20494 mastoxiv.page/@arXiv_csAI_bot/
- Edit-Neighboring Data Streams and Privacy under Continual Observation
Joel Daniel Andersson, Anamay Chaturvedi, Monika Henzinger, Roodabeh Safavi
arxiv.org/abs/2607.20727 mastoxiv.page/@arXiv_csDS_bot/
- Beyond Heavy Log Curation: Perplexity-Based APT Detection via Unsupervised, Context-Augmented Lan...
Shoya Otsu, Kei Suzuki, Toshiaki Koike-Akino, Jing Liu, Ye Wang
arxiv.org/abs/2607.20832 mastoxiv.page/@arXiv_csLG_bot/
- The Consensus Number of Untraceable Cryptocurrencies
Christian Cachin, David Lehnherr, Juan Villacis, Fran\c{c}ois-Xavier Wicht
arxiv.org/abs/2607.20929 mastoxiv.page/@arXiv_csDC_bot/
- Weak Private Information Retrieval for Graph-based Storage
Shodasakshari Vidya, Chandan Anand, Prasad Krishnan
arxiv.org/abs/2607.21014 mastoxiv.page/@arXiv_csIT_bot/
- Risk-Limiting Audits for Parliamentary Majorities
Jack Freestone, Dennis Leung, Damjan Vukcevic
arxiv.org/abs/2607.21082 mastoxiv.page/@arXiv_statAP_bo
- Agree on the Model, Verify the Inference: GKR Protocols for HND-Based Transformer Inference
Xiaolong Liang, Juanjuan Li, Rui Qin, Yisheng Lv
arxiv.org/abs/2607.21162 mastoxiv.page/@arXiv_csLG_bot/
- Advances in STV Margin Computation
Michelle Blom, Alexander Ek, Peter J. Stuckey, Vanessa Teague, Damjan Vukcevic
arxiv.org/abs/2607.21178 mastoxiv.page/@arXiv_csGT_bot/
- Unconditional Unclonable Encryption
Prabhanjan Ananth, Amit Sahai
arxiv.org/abs/2607.21551 mastoxiv.page/@arXiv_quantph_b
toXiv_bot_toot

@michabbb@social.vivaldi.net
2026-05-13 20:49:09

⚡ What triggered it: GitHub rolled out a new token format for GitHub App installation tokens: ghs__. Base64url encoding uses - chars, which Composer's 2021-era regex didn't permit. Any such token would fail validation and leak.
😱 Making it worse: GitHub Actions' secret masker failed to redact the token. Symfony Console wraps error output with ANSI sequences, bypassing masking. Popular actions like shivammathur/setup-php auto-register GITHUB_TOKEN — no special config needed …

@arXiv_csFL_bot@mastoxiv.page
2026-06-15 08:42:28

Replaced article(s) found for cs.FL. arxiv.org/list/cs.FL/new
[1/1]:
- Linear Time Subsequence and Supersequence Regex Matching
Antoine Amarilli, Bartlomiej Dudek, Florin Manea, Tina Ringleb, Markus L. Schmid

@michabbb@social.vivaldi.net
2026-07-11 01:56:25

🎯 Core systems already work: query planner, buffer cache, storage engine, B-tree indexes, wire protocol (psql connects), JSON/JSONB, window functions, foreign keys, EXPLAIN / EXPLAIN ANALYZE, regex, PL/pgSQL pieces, and standard SQL with transactions, aggregates and joins.

@michabbb@social.vivaldi.net
2026-07-11 00:58:19

🎯 It acts as a pre-execution firewall: when an agent tries a command, dcg inspects it in sub-millisecond time and either allows it silently or blocks it with a clear explanation safer alternatives
🔧 A three-tier pipeline with SIMD-accelerated quick-reject lets 95% of commands pass in under 10µs — only commands with dangerous keywords hit the expensive regex stage