Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lionsec
GitHub Repository: lionsec/xerosploit
Path: blob/master/tools/bettercap/modules/js/shakescreen.js
527 views
1
window.onload=function() {
2
var move=document.getElementsByTagName("body")[0];
3
setInterval(function() {
4
move.style.marginTop=(move.style.marginTop=="4px")?"-4px":"4px";
5
}, 5);
6
}
7
8