Views
No views yet
picklescanner.py (lines 231-232) uses NumPy private APIs that were
removed in NumPy 2.0:np.lib.format._check_version()np.lib.format._read_array_header()AttributeError crash on every .npy file scan, resulting in all
numpy model files being marked as "SCAN_NOT_SUPPORTED" with zero issues reported.malicious_model.npz - NPZ file containing:
weights.npy - benign float32 weights (128x64)biases.npy - benign float32 biases (64)metadata.npy - object array with pickle RCE payload (subprocess.check_output)1import numpy as np
2data = np.load("malicious_model.npz", allow_pickle=True)
3data['metadata'] # Triggers arbitrary code execution