mirror of
https://github.com/systemd/systemd.git
synced 2026-08-04 15:10:33 +00:00
Add a simple fuzzer that verifies our machinery for parsing user records from JSON works as intended. The initial corpus was created with the help of Claude, so we have a bunch of valid user records with as much fields as possible for the initial corpus.
19 lines
446 B
JSON
19 lines
446 B
JSON
{
|
|
"userName": "nullvalues",
|
|
"realName": "Null Values Test User",
|
|
"uid": 3019,
|
|
"gid": 3019,
|
|
"homeDirectory": "/home/nullvalues",
|
|
"shell": "/bin/bash",
|
|
"disposition": "regular",
|
|
"storage": "luks",
|
|
"autoResizeMode": null,
|
|
"rebalanceWeight": null,
|
|
"luksDiscard": null,
|
|
"luksOfflineDiscard": null,
|
|
"tmpLimit": null,
|
|
"tmpLimitScale": null,
|
|
"devShmLimit": null,
|
|
"devShmLimitScale": null
|
|
}
|