🔧 AI Nachrichten ChatGPT showing blank screen [Fix](05.09.2026 um 19:55 Uhr)
⚠️ Malware / Trojaner / VirenSofort deinstallieren: Diese 19 Browser-Erweiterungen sind mit Malware verseucht(06.09.2026 um 08:00 Uhr)
⚠️ Malware / Trojaner / VirenLumma Stealer – dllhost.exe Hollowing, C2 Domains & Payload Extraction(01.09.2026 um 17:19 Uhr)
🔧 AI Nachrichten Simcha Kosman AMA: Owning ChatGPT's Secure Sandbox(03.09.2026 um 07:41 Uhr)
⚠️ Malware / Trojaner / VirenThe Gentlemen Ransomware Analysis: Go Obfuscated(04.09.2026 um 12:05 Uhr)
⚠️ Malware / Trojaner / VirenTengu, a Mirai-style Linux and IoT botnet(06.09.2026 um 15:27 Uhr)
🔧 AI Nachrichten ChatGPT showing blank screen [Fix](05.09.2026 um 19:55 Uhr)
⚠️ Malware / Trojaner / VirenSofort deinstallieren: Diese 19 Browser-Erweiterungen sind mit Malware verseucht(06.09.2026 um 08:00 Uhr)
⚠️ Malware / Trojaner / VirenLumma Stealer – dllhost.exe Hollowing, C2 Domains & Payload Extraction(01.09.2026 um 17:19 Uhr)
🔧 AI Nachrichten Simcha Kosman AMA: Owning ChatGPT's Secure Sandbox(03.09.2026 um 07:41 Uhr)
⚠️ Malware / Trojaner / VirenThe Gentlemen Ransomware Analysis: Go Obfuscated(04.09.2026 um 12:05 Uhr)
⚠️ Malware / Trojaner / VirenTengu, a Mirai-style Linux and IoT botnet(06.09.2026 um 15:27 Uhr)

🔧 Programmierung 🕛 kürzlich 5 Min Lesezeit
0

KEIBIDROP: Every tool just works

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht

We connected two machines with KEIBIDROP and ran every program we could think of on the shared virtual folder. Compilers, version control, video processing, databases, scripting languages, security scanners. Everything worked. File integrity held across every operation.



KEIBIDROP presents the peer's files through the operating system's filesystem interface. Programs do not know the files are remote. They read and write to a folder. The data arrives from the other machine over an encrypted channel.






How the shared folder works between two machines



Machine A adds files to the shared folder. They appear on Machine B within a second. Machine B opens them, compiles them, processes them, and saves the output back to the shared folder. Machine A sees the output immediately. No upload, no download, no sync button. Both machines read and write to the same folder in real time, over an encrypted peer-to-peer connection.



We tested this with 45+ programs. Alice writes source code, Bob compiles it. Bob writes analysis results, Alice reads them. Alice has a video, Bob creates thumbnails from it. Every tool that reads files from a folder works. The programs do not know the files are on another machine.






Build tools











































Tool Test Result
git Clone repo, run git status and git log from the other side Works
make (C) Compile 87 source files inside the shared folder Works
cargo (Rust) cargo build --release on the shared folder Works
go build Init module, build binary on the shared folder Works
swiftc Compile Swift program on the shared folder Works
xelatex Compile LaTeX slides across mounts Works





Media tools




























Tool Test Result
ffprobe Inspect 192 MB video from peer's folder Works
ffmpeg Extract clip, create thumbnail grid from peer's video Works
ImageMagick Read PNG, resize, identify 2048x5568 tileset Works





Data and databases











































Tool Test Result
SQLite Create DB on one side, JOIN query from the other Works
SQLite (multi-table) RPG save with players + inventory, JOIN from peer Works
jq Write JSON on one side, parse from the other Works
Python csv Write CSV, read with DictReader from peer Works
Node.js Write file on one side, read from the other Works
Jupyter Write .ipynb on one side, parse from the other Works





Languages











































Tool Test Result
Python Write module on Alice, import from Bob Works
Perl SHA256 hash with Digest::SHA across mounts Works
Ruby JSON + Digest::MD5 across mounts Works
Node.js npm install on one side, require from the other Works
Bash Write script on one side, execute from the other Works
Swift Compile and run across mounts Works





File operations











































Tool Test Result
zip / unzip Zip repo on one side, unzip on the other Works
tar / gzip Create archive, extract on the other side Works
rsync --checksum Checksummed copy from shared folder Works
dd 1 MB + 100 MB random data, SHA256 verified both sides Works
split + cat Split file on one side, reassemble on the other Works
base64 Encode on one side, decode on the other, hash match Works





Integrity verification











































Tool Test Result
sha256 Same file hashed from both sides Identical
sha512 Same file hashed from both sides Identical
openssl dgst SHA256 digest from both sides Identical
md5 (bulk) All 71 .c files hashed, aggregate compared Identical
diff Source files compared across mounts Identical
crc32 CRC32 checksum from both sides Identical





Security tools

































Tool Test Result
golangci-lint Lint Go source from peer's mount Works
gosec Security scan from peer's mount Works
openssl enc/dec AES-256-CBC encrypt on one side, decrypt from the other Works
exiftool Read image metadata from peer's file Works





Collaborative workflows



The shared folder is bidirectional. Both sides can write. Two people can each handle a different step of the same project.






































Workflow Alice does Bob does Result
C compilation Writes main.c + headers Compiles from his view Alice runs the binary Bob built
LaTeX slides Writes .tex source Compiles PDF with xelatex Alice opens the PDF Bob produced
Data pipeline Writes 100-row CSV Runs Python analysis, writes JSON Alice reads Bob's results
Video processing Has a 190 MB video Creates thumbnail grid with ffmpeg Alice sees the thumbnails





Large files






































Test Size Result
100 MB random file, SHA256 from both sides 100 MB Identical
192 MB video, ffprobe from peer's mount 192 MB Works
ffmpeg transcode: Bob processes Alice's video, output appears on Alice 192 MB in, 153 KB out Works
50 files written by Alice, aggregate hash verified by Bob 50 files Identical
71 source files tar'd, extracted on other side, all hashes verified 71 files All match





What does not work




















Operation Reason
Symlinks / hardlinks Not implemented. Tools like uv, npm with bin links fail. Use --no-bin-links or install outside the shared folder.
Execute binaries from mount (macOS) macOS blocks execution from FUSE mounts. Copy the binary locally first. Linux does not have this restriction.





How it works



KEIBIDROP presents the peer's files through the OS filesystem interface (FUSE on macOS/Linux, WinFsp on Windows). Every program that reads files through standard system calls works without modification. The file metadata syncs when the connection establishes. File contents stream on demand as programs read them. The encryption overhead is under 2%.



The connection is end-to-end encrypted with post-quantum cryptography (ML-KEM-1024 + X25519). No server stores your files.




  • Install:

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 35%
🟡 In Evaluierung 20%
🟢 Keine Auswirkung 10%
Spannende Innovation 35%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
2 Quellen
Creator Panel – One Creator, Full Production: Der neue Creator Workflow
1 Quelle
ChatGPT showing blank screen [Fix]
1 Quelle
Sofort deinstallieren: Diese 19 Browser-Erweiterungen sind mit Malware verseucht
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten KEIBIDROP: Every tool just works

Thematisch verwandte Begriffe: KEIBIDROP, Every, tool, just · 6 Treffer

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 ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...