Skip to content

Commit 7006ed9

Browse files
committed
Merge branch 'main' of github.com:MISP/misp-objects
2 parents 90cc2df + 76c334d commit 7006ed9

3 files changed

Lines changed: 53 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ for a specific attribute. An optional **to_ids** boolean field to disable the ID
283283
- [objects/irc](https://github.com/MISP/misp-objects/blob/main/objects/irc/definition.json) - An IRC object to describe an IRC server and the associated channels.
284284
- [objects/ja3](https://github.com/MISP/misp-objects/blob/main/objects/ja3/definition.json) - JA3 is a new technique for creating SSL client fingerprints that are easy to produce and can be easily shared for threat intelligence. Fingerprints are composed of Client Hello packet; SSL Version, Accepted Ciphers, List of Extensions, Elliptic Curves, and Elliptic Curve Formats. https://github.com/salesforce/ja3.
285285
- [objects/ja3s](https://github.com/MISP/misp-objects/blob/main/objects/ja3s/definition.json) - JA3S is JA3 for the Server side of the SSL/TLS communication and fingerprints how servers respond to particular clients. JA3S fingerprints are composed of Server Hello packet; SSL Version, Cipher, SSLExtensions. https://github.com/salesforce/ja3.
286+
- [objects/ja4-plus](https://github.com/MISP/misp-objects/blob/main/objects/ja4-plus/definition.json) - JA4 is a technique for creating network fingerprints that are easy to produce and can be easily shared for threat intelligence. https://github.com/FoxIO-LLC/ja4/blob/main/technical_details/README.md.
286287
- [objects/jarm](https://github.com/MISP/misp-objects/blob/main/objects/jarm/definition.json) - Jarm object to describe an TLS/SSL implementation used for malicious or legitimate use-case.
287288
- [objects/keybase-account](https://github.com/MISP/misp-objects/blob/main/objects/keybase-account/definition.json) - Information related to a keybase account, from API Users Object.
288289
- [objects/language-content](https://github.com/MISP/misp-objects/blob/main/objects/language-content/definition.json) - The Language Content object represents text content for objects represented in languages other than that of the original object. Language content may be a translation of the original object by a third-party, a first-source translation by the original publisher, or additional official language content provided at the time of creation. STIX 2.1 ref 7.1.

objects/ja4-plus/definition.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"attributes": {
3+
"description": {
4+
"description": "Description of the JA4+ fingerprint including scope, collection or specific notes which could help an analyst to reproduce the calculation.",
5+
"misp-attribute": "text",
6+
"ui-priority": 1
7+
},
8+
"ip-src": {
9+
"description": "IP address related to this JA4+ fingerprint.",
10+
"misp-attribute": "ip-src",
11+
"multiple": true,
12+
"ui-priority": 1
13+
},
14+
"ja4-fingerprint": {
15+
"description": "A JA4+ fingerprint as defined by the JA4+ standard in textual format.",
16+
"misp-attribute": "text",
17+
"ui-priority": 1
18+
},
19+
"ja4-type": {
20+
"description": "One of the JA4+ type expressed as short name.",
21+
"misp-attribute": "text",
22+
"sane_default": [
23+
"JA4",
24+
"JA4S",
25+
"JA4H",
26+
"JA4L",
27+
"JA4X",
28+
"JA4SSH",
29+
"JA4T",
30+
"JA4TS",
31+
"JA4TScan"
32+
],
33+
"ui-priority": 1
34+
}
35+
},
36+
"description": "JA4 is a technique for creating network fingerprints that are easy to produce and can be easily shared for threat intelligence. https://github.com/FoxIO-LLC/ja4/blob/main/technical_details/README.md",
37+
"meta-category": "network",
38+
"name": "ja4-plus",
39+
"required": [
40+
"ja4-fingerprint",
41+
"ja4-type"
42+
],
43+
"uuid": "2c15c75e-e7db-4b62-8d17-633e7571818f",
44+
"version": 2
45+
}

objects/phishing/definition.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@
1414
"misp-attribute": "text",
1515
"ui-priority": 1
1616
},
17+
"ip": {
18+
"description": "IP address of the phishing website",
19+
"misp-attribute": "ip-dst",
20+
"multiple": true,
21+
"ui-priority": 1
22+
},
1723
"online": {
1824
"description": "If the phishing is online and operational, by default is yes",
1925
"disable_correlation": true,
@@ -113,5 +119,5 @@
113119
"url"
114120
],
115121
"uuid": "2dad6f9d-d425-4217-8fda-0b0a2d815307",
116-
"version": 6
122+
"version": 7
117123
}

0 commit comments

Comments
 (0)