bmt 0.8.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/bmt/version.rb +1 -1
- data/lib/data/0.1/methodologies/ai_llm.json +515 -278
- data/lib/data/0.1/methodologies/api_testing.json +24 -52
- data/lib/data/0.9/mappings/templates.json +17 -0
- data/lib/data/0.9/mappings/templates.schema.json +62 -0
- data/lib/data/0.9/methodologies/active_directory.json +426 -0
- data/lib/data/0.9/methodologies/ai_llm.json +280 -0
- data/lib/data/0.9/methodologies/api_testing.json +687 -0
- data/lib/data/0.9/methodologies/binaries.json +252 -0
- data/lib/data/0.9/methodologies/internal_network.json +454 -0
- data/lib/data/0.9/methodologies/mobile_android.json +514 -0
- data/lib/data/0.9/methodologies/mobile_ios.json +452 -0
- data/lib/data/0.9/methodologies/network.json +207 -0
- data/lib/data/0.9/methodologies/template.json +83 -0
- data/lib/data/0.9/methodologies/website_testing.json +1078 -0
- data/lib/data/0.9/schema.json +124 -0
- metadata +21 -8
- /data/lib/data/{0.1 → 0.9}/methodologies/hardware_testing.json +0 -0
@@ -0,0 +1,124 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
3
|
+
"title": "Methodology Taxonomy",
|
4
|
+
"description": "A Taxonomy of methodologies with suggested steps and items to follow",
|
5
|
+
"definitions": {
|
6
|
+
"metadata": {
|
7
|
+
"type": "object",
|
8
|
+
"properties": {
|
9
|
+
"title": {
|
10
|
+
"type": "string",
|
11
|
+
"pattern": "^[ a-zA-Z0-9\\-+()\/,.<&:]*$"
|
12
|
+
},
|
13
|
+
"description": {
|
14
|
+
"type": "string"
|
15
|
+
},
|
16
|
+
"release_date": {
|
17
|
+
"type": "string",
|
18
|
+
"format": "date-time"
|
19
|
+
},
|
20
|
+
"vrt_version": {
|
21
|
+
"type": "string",
|
22
|
+
"pattern": "^\\d+\\.\\d+(\\.\\d+)?$",
|
23
|
+
"minLength": 3
|
24
|
+
}
|
25
|
+
},
|
26
|
+
"required": [
|
27
|
+
"title",
|
28
|
+
"description",
|
29
|
+
"release_date"
|
30
|
+
]
|
31
|
+
},
|
32
|
+
"item": {
|
33
|
+
"type": "object",
|
34
|
+
"properties": {
|
35
|
+
"key": {
|
36
|
+
"type": "string",
|
37
|
+
"pattern": "^[a-z0-9_]*$",
|
38
|
+
"minLength": 3
|
39
|
+
},
|
40
|
+
"title": {
|
41
|
+
"type": "string",
|
42
|
+
"pattern": "^[ a-zA-Z0-9\\-+()\/,.<\\?&:]*$",
|
43
|
+
"minLength": 3
|
44
|
+
},
|
45
|
+
"caption": {
|
46
|
+
"type": "string"
|
47
|
+
},
|
48
|
+
"description": {
|
49
|
+
"type": "string"
|
50
|
+
},
|
51
|
+
"tools": {
|
52
|
+
"type": "string"
|
53
|
+
},
|
54
|
+
"vrt_category": {
|
55
|
+
"type": "string",
|
56
|
+
"pattern": "^[a-z_]*$"
|
57
|
+
}
|
58
|
+
},
|
59
|
+
"required": [
|
60
|
+
"key",
|
61
|
+
"title",
|
62
|
+
"caption"
|
63
|
+
]
|
64
|
+
},
|
65
|
+
"step": {
|
66
|
+
"type": "object",
|
67
|
+
"properties": {
|
68
|
+
"key": {
|
69
|
+
"type": "string",
|
70
|
+
"pattern": "^[a-z_]*$",
|
71
|
+
"minLength": 3
|
72
|
+
},
|
73
|
+
"title": {
|
74
|
+
"type": "string",
|
75
|
+
"pattern": "^[ a-zA-Z0-9\\-+()\/,.<&:]*$",
|
76
|
+
"minLength": 3
|
77
|
+
},
|
78
|
+
"description": {
|
79
|
+
"type": "string"
|
80
|
+
},
|
81
|
+
"type": {
|
82
|
+
"type": "string",
|
83
|
+
"enum": ["checklist", "large_upload", "executive_summary"]
|
84
|
+
},
|
85
|
+
"items": {
|
86
|
+
"type": "array",
|
87
|
+
"items": {
|
88
|
+
"$ref": "#/definitions/item"
|
89
|
+
}
|
90
|
+
}
|
91
|
+
},
|
92
|
+
"required": [
|
93
|
+
"key",
|
94
|
+
"title",
|
95
|
+
"description",
|
96
|
+
"type"
|
97
|
+
]
|
98
|
+
}
|
99
|
+
},
|
100
|
+
"type": "object",
|
101
|
+
"required": [
|
102
|
+
"metadata",
|
103
|
+
"content"
|
104
|
+
],
|
105
|
+
"properties": {
|
106
|
+
"metadata": {
|
107
|
+
"$ref": "#/definitions/metadata"
|
108
|
+
},
|
109
|
+
"content": {
|
110
|
+
"type": "object",
|
111
|
+
"properties": {
|
112
|
+
"steps": {
|
113
|
+
"type": "array",
|
114
|
+
"items": {
|
115
|
+
"$ref": "#/definitions/step"
|
116
|
+
}
|
117
|
+
}
|
118
|
+
},
|
119
|
+
"required": [
|
120
|
+
"steps"
|
121
|
+
]
|
122
|
+
}
|
123
|
+
}
|
124
|
+
}
|
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bmt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Federico Tagliabue
|
8
8
|
- Andy White
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-09-
|
12
|
+
date: 2025-09-15 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
|
-
description:
|
14
|
+
description:
|
15
15
|
email:
|
16
16
|
- federico.tagliabue@bugcrowd.com
|
17
17
|
- arcwhite@arcwhite.org
|
@@ -30,7 +30,6 @@ files:
|
|
30
30
|
- lib/data/0.1/methodologies/ai_llm.json
|
31
31
|
- lib/data/0.1/methodologies/api_testing.json
|
32
32
|
- lib/data/0.1/methodologies/binaries.json
|
33
|
-
- lib/data/0.1/methodologies/hardware_testing.json
|
34
33
|
- lib/data/0.1/methodologies/internal_network.json
|
35
34
|
- lib/data/0.1/methodologies/mobile_android.json
|
36
35
|
- lib/data/0.1/methodologies/mobile_ios.json
|
@@ -38,6 +37,20 @@ files:
|
|
38
37
|
- lib/data/0.1/methodologies/template.json
|
39
38
|
- lib/data/0.1/methodologies/website_testing.json
|
40
39
|
- lib/data/0.1/schema.json
|
40
|
+
- lib/data/0.9/mappings/templates.json
|
41
|
+
- lib/data/0.9/mappings/templates.schema.json
|
42
|
+
- lib/data/0.9/methodologies/active_directory.json
|
43
|
+
- lib/data/0.9/methodologies/ai_llm.json
|
44
|
+
- lib/data/0.9/methodologies/api_testing.json
|
45
|
+
- lib/data/0.9/methodologies/binaries.json
|
46
|
+
- lib/data/0.9/methodologies/hardware_testing.json
|
47
|
+
- lib/data/0.9/methodologies/internal_network.json
|
48
|
+
- lib/data/0.9/methodologies/mobile_android.json
|
49
|
+
- lib/data/0.9/methodologies/mobile_ios.json
|
50
|
+
- lib/data/0.9/methodologies/network.json
|
51
|
+
- lib/data/0.9/methodologies/template.json
|
52
|
+
- lib/data/0.9/methodologies/website_testing.json
|
53
|
+
- lib/data/0.9/schema.json
|
41
54
|
homepage: https://github.com/bugcrowd/bmt-ruby
|
42
55
|
licenses:
|
43
56
|
- MIT
|
@@ -47,7 +60,7 @@ metadata:
|
|
47
60
|
source_code_uri: https://github.com/bugcrowd/bmt-ruby
|
48
61
|
bug_tracker_uri: https://github.com/bugcrowd/bmt-ruby/issues
|
49
62
|
rubygems_mfa_required: 'true'
|
50
|
-
post_install_message:
|
63
|
+
post_install_message:
|
51
64
|
rdoc_options: []
|
52
65
|
require_paths:
|
53
66
|
- lib
|
@@ -62,8 +75,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
75
|
- !ruby/object:Gem::Version
|
63
76
|
version: '0'
|
64
77
|
requirements: []
|
65
|
-
rubygems_version: 3.
|
66
|
-
signing_key:
|
78
|
+
rubygems_version: 3.5.3
|
79
|
+
signing_key:
|
67
80
|
specification_version: 4
|
68
81
|
summary: Ruby wrapper for Bugcrowd's Methodology Taxonomy
|
69
82
|
test_files: []
|
File without changes
|