-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
UpstreamUpstream bug in a libraryUpstream bug in a librarychecksecchecksec related issuechecksec related issue
Description
Checksec's JSON should contain a key which is the filepath:
~/Projets/oswatcher/tools/checksec/checksec --output=json --file=/usr/bin/xz | jq .
{
"/usr/bin/xz": {
"relro": "full",
"canary": "yes",
"nx": "yes",
"pie": "yes",
"rpath": "no",
"runpath": "no",
"symbols": "no",
"fortify_source": "yes",
"fortified": "5",
"fortify-able": "8"
}
}
However, some files are indexed by a file
key, and not by their filepath:
~/Projets/oswatcher/tools/checksec/checksec --output=json --file=klibc-usBAintlt99f0TITo98H_trqH2c.so | jq .
{
"file": {
"relro": "no",
"canary": "no",
"nx": "no",
"pie": "no",
"rpath": "no",
"runpath": "no",
"symbols": "no",
"fortify_source": "no",
"fortified": "0",
"fortify-able": "0"
}
}
Metadata
Metadata
Assignees
Labels
UpstreamUpstream bug in a libraryUpstream bug in a librarychecksecchecksec related issuechecksec related issue