Skip to content

Commit 5e6f887

Browse files
committed
Merge branch 'main' of github.com:MISP/misp-objects into main
2 parents 6f002cd + 067ae49 commit 5e6f887

2 files changed

Lines changed: 84 additions & 1 deletion

File tree

.github/workflows/nosetests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Python application
22

3-
on: [push]
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
48

59
jobs:
610
build:
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
{
2+
"attributes": {
3+
"app": {
4+
"description": "The application identified (e.g. vnc, ssh, sip, irc, http or smtp).",
5+
"misp-attribute": "text",
6+
"ui-priority": 1
7+
},
8+
"direction": {
9+
"description": "The Direction of the Event.",
10+
"misp-attribute": "text",
11+
"ui-priority": 1
12+
},
13+
"dport": {
14+
"description": "The port to which the connection headed.",
15+
"misp-attribute": "counter",
16+
"ui-priority": 1
17+
},
18+
"dst": {
19+
"description": "The Destination IP which is the target of the observed connections.",
20+
"misp-attribute": "ip-dst",
21+
"ui-priority": 1
22+
},
23+
"dstloc": {
24+
"description": "The Destination Location of the event.",
25+
"misp-attribute": "text",
26+
"ui-priority": 1
27+
},
28+
"proto": {
29+
"description": "The transport protocol (e.g. tcp, udp, icmp).",
30+
"misp-attribute": "text",
31+
"ui-priority": 1
32+
},
33+
"sport": {
34+
"description": "The port from which the connection originated.",
35+
"misp-attribute": "counter",
36+
"ui-priority": 1
37+
},
38+
"src": {
39+
"description": "The ip observed to initiate the connection",
40+
"misp-attribute": "ip-src",
41+
"ui-priority": 1
42+
},
43+
"srcloc": {
44+
"description": "The Source Location of the event.",
45+
"misp-attribute": "text",
46+
"ui-priority": 1
47+
},
48+
"subtype": {
49+
"description": "The subtype of the Log Event.",
50+
"misp-attribute": "text",
51+
"ui-priority": 1
52+
},
53+
"thr_category": {
54+
"description": "The Threat Category.",
55+
"misp-attribute": "text",
56+
"ui-priority": 1
57+
},
58+
"threatid": {
59+
"description": "The Threat ID.",
60+
"misp-attribute": "text",
61+
"ui-priority": 1
62+
},
63+
"time_generated": {
64+
"description": "The datetime of the event.",
65+
"misp-attribute": "datetime",
66+
"ui-priority": 1
67+
},
68+
"type": {
69+
"description": "The type of the Log Event",
70+
"misp-attribute": "text",
71+
"ui-priority": 1
72+
}
73+
},
74+
"description": "Palo Alto Threat Log Event",
75+
"meta-category": "network",
76+
"name": "paloalto-threat-event",
77+
"uuid": "e6fa7a87-1173-43d6-86c2-b4d02af5fc74",
78+
"version": 5
79+
}

0 commit comments

Comments
 (0)