You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Track the crash rate for the individual syscalls and rate limit the
execution of those which happen too often.
For determining the most unsafe syscalls, let's keep a sliding window of
the last executed progs on every instance.
* If a program has been evicted from the sliding window, it's safe
enough.
* If an instance crashed, all programs in the window are under
suspicion.
For preventing the execution of banned syscalls, let's add a special
(skip) call parameter that is understood by the executor.
The parameter is not supposed to leak into the corpus, so add
appropriate assertions.
0 commit comments