Merge pull request #188 from rommelfs/master

btc wallet and transaction object templates
pull/190/head
Alexandre Dulaunoy 2019-07-10 20:56:17 +02:00 committed by GitHub
commit 7291c719d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 90 additions and 0 deletions

View File

@ -0,0 +1,49 @@
{
"requiredOneOf": [
"wallet-address",
"value_BTC",
"time"
],
"attributes": {
"transaction-number": {
"description": "A Bitcoin transaction number in a sequence of transactions",
"ui-priority": 0,
"misp-attribute": "integer"
},
"time": {
"description": "Date and time of transaction",
"ui-priority": 0,
"disable_correlation": true,
"misp-attribute": "datetime"
},
"value_BTC": {
"description": "Value in BTC at date/time displayed in field 'time'",
"ui-priority": 0,
"disable_correlation": true,
"misp-attribute": "float"
},
"value_EUR": {
"description": "Value in EUR with conversion rate as of date/time displayed in field 'time'",
"ui-priority": 0,
"disable_correlation": true,
"misp-attribute": "float"
},
"value_USD": {
"description": "Value in USD with conversion rate as of date/time displayed in field 'time'",
"ui-priority": 0,
"disable_correlation": true,
"misp-attribute": "float"
},
"btc-address": {
"description": "A Bitcoin transactional address",
"ui-priority": 0,
"disable_correlation": true,
"misp-attribute": "btc"
}
},
"version": 1,
"description": "An object to describe a Bitcoin transaction. Best to be used with bitcoin-wallet.",
"meta-category": "financial",
"uuid": "B7341729-5A8A-439F-A775-6D814DA3C7B5",
"name": "btc-transaction"
}

View File

@ -0,0 +1,41 @@
{
"requiredOneOf": [
"wallet-address"
],
"attributes": {
"wallet-address": {
"description": "A Bitcoin wallet address",
"ui-priority": 0,
"misp-attribute": "btc"
},
"balance_BTC": {
"description": "Value in BTC at date/time displayed in field 'time'",
"ui-priority": 0,
"disable_correlation": true,
"misp-attribute": "float"
},
"balance_EUR": {
"description": "Value in EUR with conversion rate as of date/time displayed in field 'time'",
"ui-priority": 0,
"disable_correlation": true,
"misp-attribute": "float"
},
"balance_USD": {
"description": "Value in USD with conversion rate as of date/time displayed in field 'time'",
"ui-priority": 0,
"disable_correlation": true,
"misp-attribute": "float"
},
"time": {
"description": "Date and time of lookup/conversion",
"ui-priority": 0,
"disable_correlation": true,
"misp-attribute": "datetime"
}
},
"version": 1,
"description": "An object to describe a Bitcoin wallet. Best to be used with bitcoin-transactions.",
"meta-category": "financial",
"uuid": "22910C83-DD0E-4ED2-9823-45F8CAD562A4",
"name": "btc-wallet"
}