bmt 0.1.1 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bmt/item.rb +3 -1
- data/lib/bmt/step.rb +3 -2
- data/lib/bmt/version.rb +1 -1
- data/lib/data/0.1/mappings/templates.json +17 -0
- data/lib/data/0.1/mappings/templates.schema.json +62 -0
- data/lib/data/0.1/methodologies/binaries.json +252 -0
- data/lib/data/0.1/methodologies/mobile_android.json +514 -0
- data/lib/data/0.1/methodologies/mobile_ios.json +452 -0
- data/lib/data/0.1/methodologies/network.json +207 -0
- data/lib/data/0.1/methodologies/template.json +32 -6
- data/lib/data/0.1/methodologies/website_testing.json +324 -101
- data/lib/data/0.1/schema.json +12 -2
- metadata +8 -2
@@ -11,22 +11,29 @@
|
|
11
11
|
"key": "koala",
|
12
12
|
"title": "Check that you have a Koala",
|
13
13
|
"description": "# Does it look like one?\nIt is easy to find out.\n",
|
14
|
+
"type": "checklist",
|
14
15
|
"items": [
|
15
16
|
{
|
16
17
|
"key": "marsupial",
|
17
18
|
"title": "Is it a marsupial?",
|
18
|
-
"
|
19
|
+
"caption": "Marsupials are obviously mammalian and have a pouch on their underside",
|
20
|
+
"description": "Check for the pouch",
|
21
|
+
"tools": "Eyes",
|
19
22
|
"vrt_category": "insecure_data_storage"
|
20
23
|
},
|
21
24
|
{
|
22
25
|
"key": "diet",
|
23
26
|
"title": "Make sure it eats eucalyptus",
|
24
|
-
"
|
27
|
+
"caption": "Almost no other animal can eat eucalyptus leaves, so this is a good diagnostic",
|
28
|
+
"description": "Take some eucalyptus branches, remove some leaves and try to feed the alleged koala",
|
29
|
+
"tools": "Leaves and Branches"
|
25
30
|
},
|
26
31
|
{
|
27
32
|
"key": "behavior",
|
28
33
|
"title": "Does it sleep the whole day?",
|
29
|
-
"
|
34
|
+
"caption": "Usually sleeps on trees",
|
35
|
+
"description": "The alleged Koala should sleep the whole day if provided a tree.",
|
36
|
+
"tools": "Trees, Dawn"
|
30
37
|
}
|
31
38
|
]
|
32
39
|
},
|
@@ -34,23 +41,42 @@
|
|
34
41
|
"key": "kangaroo",
|
35
42
|
"title": "Ensure you have a kangaroo",
|
36
43
|
"description": "Does it look like one?",
|
44
|
+
"type": "checklist",
|
37
45
|
"items": [
|
38
46
|
{
|
39
47
|
"key": "marsupial",
|
40
48
|
"title": "Is it a marsupial?",
|
41
|
-
"
|
49
|
+
"caption": "Marsupials are obviously mammalian but possess a pouch on their underside",
|
50
|
+
"description": "Check for the pouch",
|
51
|
+
"tools": "Eyes"
|
42
52
|
},
|
43
53
|
{
|
44
54
|
"key": "tail",
|
45
55
|
"title": "Does it have a long tail?",
|
46
|
-
"
|
56
|
+
"caption": "Kangaroos use their thick tail as a balance when jumping, and can use it as a support to rear up on when kicking",
|
57
|
+
"description": "Use the meter to measure the tail, it should be pretty long",
|
58
|
+
"tools": "Meter"
|
47
59
|
},
|
48
60
|
{
|
49
61
|
"key": "jump",
|
50
62
|
"title": "Does it jump around?",
|
51
|
-
"
|
63
|
+
"caption": "Over very short distances kangaroos will use their forepaws to balance on the ground and swing their legs forward. For longer distance movement, their jumping locomotion is unmistakeable.",
|
64
|
+
"description": "Free the Kangaroo in a field and notice that it will start jumping. Bonus point to use a Trampoline.",
|
65
|
+
"tools": "Field, Trampoline"
|
52
66
|
}
|
53
67
|
]
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"key": "upload_logs",
|
71
|
+
"title": "Upload logs",
|
72
|
+
"description": "This should include all associated traffic associated to the in-scope targets.",
|
73
|
+
"type": "large_upload"
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"key": "executive_summary",
|
77
|
+
"title": "Executive summary",
|
78
|
+
"description": "The executive summary should be written with a high-level view of both risk and business impact. It should be concise and clear, therefore it is important to use plain English. This ensures that non-technical readers can gain insight into security concerns outlined in your report.",
|
79
|
+
"type": "executive_summary"
|
54
80
|
}
|
55
81
|
]
|
56
82
|
}
|