Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/modules/debug/test_cors_request/config.yaml
1154 views
1
#
2
# Copyright (c) 2006-2025 Wade Alcorn - [email protected]
3
# Browser Exploitation Framework (BeEF) - https://beefproject.com
4
# See the file 'doc/COPYING' for copying permission
5
#
6
beef:
7
module:
8
test_cors_request:
9
enable: true
10
category: "Debug"
11
name: "Test CORS Request"
12
description: "Test the beef.net.cors.request function by retrieving a URL."
13
authors: ["bcoles"]
14
# http://caniuse.com/cors
15
target:
16
working: ["ALL"]
17
not_working:
18
# CORS is partially supported on IE 8 & 9
19
IE:
20
min_ver: 6
21
max_ver: 7
22
O:
23
min_ver: 1
24
max_ver: 11
25
C:
26
min_ver: 1
27
max_ver: 3
28
S:
29
min_ver: 1
30
max_ver: 3
31
F:
32
min_ver: 1
33
max_ver: 3
34
35