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
I'm not really sure if this should be a feature request or issue
When it's supposed to "crash the process" on browser, all it does it run document.documentElement.innerHTML = ''; which doesn't crash anything
maybe it could run an infinite loop to actually crash? like for(;;){while(1){}}
The text was updated successfully, but these errors were encountered:
An infinite loop can be easily stopped by just pressing the "Pause script execution" button in devtools.
There are better ways to crash a tab like spamming iframes. (this absolutely kills devtools if it runs for a few seconds)
@fuzzbuck The countermeasures is configurable by setting it a string, it can be a custom callback. This issue is related to the default behavior (no value provided) is incorrect. I like @Le0Developer 's code snippet and it will be the default behavior
I'm not really sure if this should be a feature request or issue
When it's supposed to "crash the process" on browser, all it does it run
document.documentElement.innerHTML = '';
which doesn't crash anythingmaybe it could run an infinite loop to actually crash? like
for(;;){while(1){}}
The text was updated successfully, but these errors were encountered: