Files
beef/modules/exploits/local_host/signed_applet_dropper/applet/SM.java
wheatley f33e2698a0 MAINTAINABILITY: 2257 update copyright 2022 (#2259)
* 2257 updated copyright date
2021-12-31 09:48:08 +10:00

13 lines
325 B
Java
Executable File

/*
* Copyright (c) 2006-2022 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;
}
}