mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-09 07:45:00 -04:00
Added simple formatting to output
This commit is contained in:
parent
788d58bb09
commit
7c5cf0ef7c
1 changed files with 4 additions and 3 deletions
|
@ -46,9 +46,10 @@ Locality: ${csr.subject.getField("L").value}
|
||||||
State: ${csr.subject.getField("ST").value}
|
State: ${csr.subject.getField("ST").value}
|
||||||
Country: ${csr.subject.getField("C").value}
|
Country: ${csr.subject.getField("C").value}
|
||||||
EmailAddress: ${csr.subject.getField("E").value}
|
EmailAddress: ${csr.subject.getField("E").value}
|
||||||
Subject Alternative Names: ${subjectAltNames.map(function (name) {
|
SubjectAltNames: ${subjectAltNames.map(function (name) {
|
||||||
return name;
|
return "DNS: " + name;
|
||||||
})}`;
|
}).join("\n\t")}`;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue