scopes_extractor 0.4.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53708b2ee96a050695c28add808c5b8bf8cdfb7e6497aa5d35f0aff99fe7cca3
|
4
|
+
data.tar.gz: 1c598a6d8de2708c3b8431e84ac8456dde7f9e4f468d69e2c29e9e36ea26b4f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74947fc21e47e8373e92598b38f856241f837051f86d9de70cd5a857ee12daf6c1ecc111d69ff3652ca1a459bd66c69deb3989ff7d23f35ff65580075a861c16
|
7
|
+
data.tar.gz: e34117a9518c303601948111c24beafb2c3f4b594891c11eef01240a19bcc76ee94e4ce0670da6323db796553d8c85a0dfdce3bbf6fcd6ae42d17664b88308a6
|
@@ -33,8 +33,9 @@ class Bugcrowd
|
|
33
33
|
scopes.each do |scope|
|
34
34
|
next unless scope['category'] == 'website' || scope['category'] == 'api'
|
35
35
|
|
36
|
-
endpoint = scope['name']
|
36
|
+
endpoint = scope['name'].split.first
|
37
37
|
next if exclusions.any? { |exclusion| endpoint.include?(exclusion) } || !endpoint.include?('.')
|
38
|
+
next if endpoint.include?('*') && !endpoint.start_with?('*.')
|
38
39
|
|
39
40
|
scopes_normalized << endpoint
|
40
41
|
end
|
@@ -52,10 +52,10 @@ class Intigriti
|
|
52
52
|
def self.extract_description(description)
|
53
53
|
return [] unless description
|
54
54
|
|
55
|
-
match = description.match(/In Scope(.*)Out of Scope/)
|
55
|
+
match = description.match(/In Scope(.*)Out of Scope/im)
|
56
56
|
return unless match && match[1]
|
57
57
|
|
58
|
-
match[1].scan(/\*\.[\w.-]+/)
|
58
|
+
match[1].scan(/\*\.[\w.-]+\.\w+/)
|
59
59
|
end
|
60
60
|
end
|
61
61
|
end
|