Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/modules/exploits/local_host/signed_applet_dropper/applet/SM.java
1154 views
1
/*
2
* Copyright (c) 2006-2025 Wade Alcorn - [email protected]
3
* Browser Exploitation Framework (BeEF) - https://beefproject.com
4
*
5
* author: antisnatchor
6
*/
7
import java.security.*;
8
public class SM extends SecurityManager {
9
@Override
10
public void checkPermission(Permission perm) {
11
return;
12
}
13
}
14