You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
737 B
JSON

{
"functions": {
"file-read": [
{
"description": "The read file content is corrupted by randomizing the order of NUL terminated strings.",
"code": "shuf -z \"[file]\"\n"
}
],
"file-write": [
{
"description": "The written file content is corrupted by adding a newline.",
"code": "shuf -e DATA -o \"[file]\"\n"
}
],
"suid": [
{
"description": "The written file content is corrupted by adding a newline.",
"code": "./shuf -e DATA -o \"[file]\"\n"
}
],
"sudo": [
{
"description": "The written file content is corrupted by adding a newline.",
"code": "sudo shuf -e DATA -o \"[file]\"\n"
}
]
}
}