cracker-trap
v1.0.9
Published
Detect if web developer tools is open to hardening apps
Downloads
30
Maintainers
Readme
Cracker Trap
Detect if web developer tools is opened and change natural flow of webapps, you can override to redirect to another web page, show an alert or limit your own code.
Demo
- Basic: https://bioverflow.github.io/tools/cracker-trap/basic/index.html
- Message: https://bioverflow.github.io/tools/cracker-trap/alert/index.html
- Redirect: https://bioverflow.github.io/tools/cracker-trap/redirect/index.html
Install
CDN
- https://cdn.rawgit.com/bioverflow/cracker-trap/29aa09f8/build/cracker-trap.min.js
- https://bundle.run/[email protected]/build/cracker-trap.min.js
- https://cdn.jsdelivr.net/npm/[email protected]/build/cracker-trap.min.js
- https://unpkg.com/[email protected]/build/cracker-trap.min.js
Yarn
$ yarn add cracker-trap
NPM
$ npm install --save cracker-trap
Usage
Always use cracker-trap.min.js file, which is in the build folder
<!-- 1) Insert on your own declarations-->
<script src="YOUR_ASSETS_PATH/cracker-trap/build/cracker-trap.min.js"></script>
<!-- 2) Use after declaration -->
<script>
/// Single usage
// checking if developer tools it's open
console.log('is developer tools open?: ', window.devtools.open);
// if DevTools is opened detect their orientation
console.log('DevTools orientation?: ', window.devtools.orientation);
// if DevTools is undocked from main page
console.log('DevTools is undocked?: ', window.devtools.undocked);
/// Listening event when state is change
// Get state when itself is changed
window.addEventListener('onDevToolsChange', function (e) {
console.log('is DevTools open?', e.detail.open);
console.log('DevTools orientation?', e.detail.orientation);
console.log('DevTools is undocked?: ', e.details.undocked);
});
</script>
Support
- Chrome DevTools
- Edge DevTools
- Firefox DevTools
- Opera DevTools
- Firebug
- Internet Explorer 11 DevTools
Standard
License
GPL-3.0 © Reverse Bytes