私のコード出力に適した列を定義しようとしています。問題は、列の要素の1つが空の場合、または文字制限を超えると、後続の列要素が置き換えられることです。
VULDB-ID LEVEL CVE TITLE
122215 LOW CVE-2015-9261 BusyBox up to 1.27.1 ZIP File decompress_gunzip.c null pointer dereference
119934 MEDIUM CVE-2018-1000517 BusyBox wget memory corruption
119917 MEDIUM CVE-2018-1000500 BusyBox SSL Certificate Validator certificate validation
96755 LOW CVE-2016-2147 BusyBox up to 1.24.x DHCP Client integer overflow
94808 MEDIUM null BusyBox up to 1.23.1/1.4.x cmdline arp_main IFNAME memory corruption
93993 MEDIUM CVE-2016-6301 BusyBox NTP Packet networking/ntpd.c recv_and_process_client_pkt resource management
私はテーブルを出力するために次のコードを使用しています
title=$(jq -r .entry.title result.json 2>/dev/null)
cve=$(jq -r .source.cve.id result.json 2>/dev/null)
id=$(jq -r .entry.id result.json 2>/dev/null)
level=$(jq -r .vulnerability.risk.name result.json 1> level.tmp 2> /dev/null)
paste <(tput smul; printf %s"VULDB-ID"; tput rmul) <(tput smul; printf %s"LEVEL"; tput rmul) <(tput smul; printf %s"CVE"; tput rmul;) <(echo) <(tput smul; printf %s"TITLE"; tput rmul)
paste <(echo "$id") <(echo) <(cat level.tmp) <(echo "$cve") <(echo "$title") | column -t -s "\"" -L
データは次のjsonファイルから抽出されます。
{
"entry": {
"id": "122215",
"title": "BusyBox up to 1.27.1 ZIP File decompress_gunzip.c null pointer dereference",
"timestamp": {
"create": "1532670117",
"change": "1583845511"
}
},
"vulnerability": {
"risk": {
"value": "1",
"name": "low"
}
},
"advisory": {
"date": "1532556000"
},
"source": {
"cve": {
"id": "CVE-2015-9261"
}
}
},
{
"entry": {
"id": "119934",
"title": "BusyBox wget memory corruption",
"timestamp": {
"create": "1530081876",
"change": "1582365028"
}
},
"vulnerability": {
"risk": {
"value": "2",
"name": "medium"
}
},
"advisory": {
"date": "1529971200"
},
"source": {
"cve": {
"id": "CVE-2018-1000517"
}
}
},
{
"entry": {
"id": "119917",
"title": "BusyBox SSL Certificate Validator certificate validation",
"timestamp": {
"create": "1530080858",
"change": "1582358574"
}
},
"vulnerability": {
"risk": {
"value": "2",
"name": "medium"
}
},
"advisory": {
"date": "1529971200"
},
"source": {
"cve": {
"id": "CVE-2018-1000500"
}
}
},
{
"entry": {
"id": "96755",
"title": "BusyBox up to 1.24.x DHCP Client integer overflow",
"timestamp": {
"create": "1486665130",
"change": "1597250919"
}
},
"vulnerability": {
"risk": {
"value": "1",
"name": "low"
}
},
"advisory": {
"date": "1486598400"
},
"source": {
"cve": {
"id": "CVE-2016-2147"
}
}
},
{
"entry": {
"id": "94808",
"title": "BusyBox up to 1.23.1\/1.4.x cmdline arp_main IFNAME memory corruption",
"timestamp": {
"create": "1483348691",
"change": "1564047629"
}
},
"vulnerability": {
"risk": {
"value": "2",
"name": "medium"
}
},
"advisory": {
"date": "1483228800"
}
},
{
"entry": {
"id": "93993",
"title": "BusyBox NTP Packet networking\/ntpd.c recv_and_process_client_pkt resource management",
"timestamp": {
"create": "1481373506",
"change": "1561216351"
}
},
"vulnerability": {
"risk": {
"value": "1",
"name": "medium"
}
},
"advisory": {
"date": "1481241600"
},
"source": {
"cve": {
"id": "CVE-2016-6301"
}
}
},
今私の質問は
- 列を直接定義する必要がありますか?では、どうすればよいですか?
- 欠けている熱をきれいに印刷するより簡単でエレガントな方法はありますか?
ベストアンサー1
大丈夫、解決策を見つけました。以下のように「タブ」を区切り記号として使用しています。
paste <(echo "$id") <(cat level.tmp) <(echo "$cve") <(echo "$title") | column -t -s$'\t' -L --table-columns ${vulid},${level},${cveid},${titleout}
これにより、次の出力が提供されます。
VULDB-ID LEVEL CVE TITLE
122215 LOW CVE-2015-9261 BusyBox up to 1.27.1 ZIP File decompress_gunzip.c null pointer dereference
119934 MEDIUM CVE-2018-1000517 BusyBox wget memory corruption
119917 MEDIUM CVE-2018-1000500 BusyBox SSL Certificate Validator certificate validation
96755 LOW CVE-2016-2147 BusyBox up to 1.24.x DHCP Client integer overflow
94808 MEDIUM null BusyBox up to 1.23.1/1.4.x cmdline arp_main IFNAME memory corruption
93993 MEDIUM CVE-2016-6301 BusyBox NTP Packet networking/ntpd.c recv_and_process_client_pkt resource management
今唯一の疑いは、このアプローチが将来のシナリオの出力に問題を引き起こす可能性があることです。これを行うよりエレガントな方法はありますか?