Steve Grubb wrote:
Was the file name < 255 bytes?
Yes .. it was 71 chars long
in my case
if (req->pathlen >= PATH_MAX)
goto audit_receive_watch_exit;
Looks like it should allow only 4095 byte names through.
Since the strlen() of what I passed it is 4095, it should go through ..I
believe ..
- Loulwa