Files
beef/modules/exploits/local_host/signed_applet_dropper/applet/SM.java
jcrew99 486a9bb329 Update copyright 2023 (#2675)
* updated copyright

* reverted gemfile lock changes
2022-12-31 15:36:07 +10:00

13 lines
325 B
Java
Executable File

/*
* Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - http://beefproject.com
*
* author: antisnatchor
*/
import java.security.*;
public class SM extends SecurityManager {
@Override
public void checkPermission(Permission perm) {
return;
}
}