File size: 299 Bytes
47855e3
 
 
 
 
 
1
2
3
4
5
6
7
import pickle
# Loader PoC - loads the weaponized model file and fires the payload on the default path.
# Reproduction for huntr: run with the real library's default load path.
with open(r"evil_savefig.pkl", "rb") as f:
    pickle.load(f)   # fires the payload
print("loaded - payload fired")