Skip to content

Commit 67d1d50

Browse files
Proofpoint typo fix
1 parent 1d65d99 commit 67d1d50

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

analyzers/ProofPoint/ProofPoint_Lookup.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
2-
"name": "ProofPoint_Lookup",
2+
"name": "Proofpoint_Lookup",
33
"version": "1.0",
44
"author": "Emmanuel Torquato",
55
"url": "https://github.com/CERT-BDF/Cortex-Analyzers",
66
"license": "AGPL-V3",
7-
"description": "Check URL, file, SHA256 against ProofPoint forensics",
7+
"description": "Check URL, file, SHA256 against Proofpoint forensics",
88
"dataTypeList": ["url", "file", "hash"],
9-
"baseConfig": "ProofPoint",
9+
"baseConfig": "Proofpoint",
1010
"config": {
1111
"service": "query",
1212
"max_tlp": 1,
1313
"check_tlp": true
1414
},
15-
"command": "ProofPoint/proofpoint_lookup.py",
15+
"command": "Proofpoint/proofpoint_lookup.py",
1616
"configurationItems": [
1717
{
1818
"name": "url",

analyzers/ProofPoint/proofpoint_lookup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
from requests.auth import HTTPBasicAuth
88
import time
99

10-
class ProofPointForensicsAnalyzer(Analyzer):
10+
class ProofpointForensicsAnalyzer(Analyzer):
1111

1212
def __init__(self):
1313
Analyzer.__init__(self)
14-
self.service = self.get_param('config.service', None, 'ProofPoint service is missing')
14+
self.service = self.get_param('config.service', None, 'Proofpoint service is missing')
1515
self.url = self.get_param('config.url', 'https://tap-api-v2.proofpoint.com', None)
16-
self.apikey = self.get_param('config.apikey', None, 'ProofPoint apikey is missing')
17-
self.secret = self.get_param('config.secret', None, 'ProofPoint secret is missing')
16+
self.apikey = self.get_param('config.apikey', None, 'Proofpoint apikey is missing')
17+
self.secret = self.get_param('config.secret', None, 'Proofpoint secret is missing')
1818
self.verify = self.get_param('config.verifyssl', True, None)
1919
if not self.verify:
2020
from requests.packages.urllib3.exceptions import InsecureRequestWarning
@@ -24,7 +24,7 @@ def summary(self, raw):
2424

2525
taxonomies = []
2626
level = "info"
27-
namespace = "ProofPoint"
27+
namespace = "Proofpoint"
2828
predicate = "Category"
2929
value = "\"Unknown\""
3030

@@ -104,4 +104,4 @@ def run(self):
104104
self.unexpectedError(e)
105105

106106
if __name__ == '__main__':
107-
ProofPointForensicsAnalyzer().run()
107+
ProofpointForensicsAnalyzer().run()

thehive-templates/ProofPoint_Lookup_1_0/long.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@
77
{{content.errorMessage}}
88
</div>
99
</div>
10-
<div class="report-ProofPoint" ng-if="success">
10+
<div class="report-Proofpoint" ng-if="success">
1111
<div ng-if="content.known == true">
1212
<style>
13-
.report-ProofPoint dl {
13+
.report-Proofpoint dl {
1414
margin-bottom: 2px;
1515
}
1616
.smaller {
1717
width: 25%;
1818
}
1919
</style>
2020
<div class="panel panel-info">
21-
<div class="panel-heading"><strong>ProofPoint Report</strong></div>
21+
<div class="panel-heading"><strong>Proofpoint Report</strong></div>
2222
<div ng-if="content.reports && content.reports.length > 0">
2323
<div class="panel-body">
2424
<dl class="dl-horizontal">
@@ -89,11 +89,11 @@
8989
</div>
9090
<div ng-if="content.known == false">
9191
<div class="panel panel-info">
92-
<div class="panel-heading"><strong>ProofPoint Report</strong></div>
92+
<div class="panel-heading"><strong>Proofpoint Report</strong></div>
9393
<div class="panel-body">
9494
<dl class="dl-horizontal">
9595
<dt>Last analysis date</dt>
96-
<dd>Data Unknown by ProofPoint</dd>
96+
<dd>Data Unknown by Proofpoint</dd>
9797
</dl>
9898
</div>
9999
</div>

0 commit comments

Comments
 (0)