Select a sample or paste your own code. The sandbox simulates the IFDS analysis and returns a finding with a full taint witness.
# app/views/uploads.py
from flask import request, send_file
import os
UPLOAD_DIR = "/var/uploads"
def download(req):
name = req.args["file"]
path = os.path.join(UPLOAD_DIR, name)
return send_file(path)Note: This sandbox simulates the IFDS analysis. In production, scanipy runs a full code-property graph construction over your repository, replays only the affected slice on incremental commits, and signs every finding with a provenance chain.
Connect your SCM in a minute. No agents, no infrastructure changes.