|
| 1 | +package evaluate |
| 2 | + |
| 3 | +var ( |
| 4 | + CategorySystemInfo = CategorySpec{ |
| 5 | + ID: "information.system", |
| 6 | + Title: "Information Gathering - System Info", |
| 7 | + DefaultProfiles: []string{ProfileBasic, ProfileExtended}, |
| 8 | + Order: 100, |
| 9 | + } |
| 10 | + CategoryServices = CategorySpec{ |
| 11 | + ID: "information.services", |
| 12 | + Title: "Information Gathering - Services", |
| 13 | + DefaultProfiles: []string{ProfileBasic, ProfileExtended}, |
| 14 | + Order: 200, |
| 15 | + } |
| 16 | + CategoryCommands = CategorySpec{ |
| 17 | + ID: "information.commands", |
| 18 | + Title: "Information Gathering - Commands and Capabilities", |
| 19 | + DefaultProfiles: []string{ProfileBasic, ProfileExtended}, |
| 20 | + Order: 300, |
| 21 | + } |
| 22 | + CategoryMounts = CategorySpec{ |
| 23 | + ID: "information.mounts", |
| 24 | + Title: "Information Gathering - Mounts", |
| 25 | + DefaultProfiles: []string{ProfileBasic, ProfileExtended}, |
| 26 | + Order: 400, |
| 27 | + } |
| 28 | + CategoryNetNamespace = CategorySpec{ |
| 29 | + ID: "information.netns", |
| 30 | + Title: "Information Gathering - Net Namespace", |
| 31 | + DefaultProfiles: []string{ProfileBasic, ProfileExtended}, |
| 32 | + Order: 500, |
| 33 | + } |
| 34 | + CategorySysctl = CategorySpec{ |
| 35 | + ID: "information.sysctl", |
| 36 | + Title: "Information Gathering - Sysctl Variables", |
| 37 | + DefaultProfiles: []string{ProfileBasic, ProfileExtended}, |
| 38 | + Order: 600, |
| 39 | + } |
| 40 | + CategoryDNS = CategorySpec{ |
| 41 | + ID: "information.dns", |
| 42 | + Title: "Information Gathering - DNS-Based Service Discovery", |
| 43 | + DefaultProfiles: []string{ProfileBasic, ProfileExtended}, |
| 44 | + Order: 700, |
| 45 | + } |
| 46 | + CategoryK8sAPIServer = CategorySpec{ |
| 47 | + ID: "discovery.k8s_api", |
| 48 | + Title: "Discovery - K8s API Server", |
| 49 | + DefaultProfiles: []string{ProfileBasic, ProfileExtended}, |
| 50 | + Order: 800, |
| 51 | + } |
| 52 | + CategoryK8sServiceAccount = CategorySpec{ |
| 53 | + ID: "discovery.k8s_sa", |
| 54 | + Title: "Discovery - K8s Service Account", |
| 55 | + DefaultProfiles: []string{ProfileBasic, ProfileExtended}, |
| 56 | + Order: 900, |
| 57 | + } |
| 58 | + CategoryCloudMetadata = CategorySpec{ |
| 59 | + ID: "discovery.cloud_metadata", |
| 60 | + Title: "Discovery - Cloud Provider Metadata API", |
| 61 | + DefaultProfiles: []string{ProfileBasic, ProfileExtended}, |
| 62 | + Order: 1000, |
| 63 | + } |
| 64 | + CategoryKernel = CategorySpec{ |
| 65 | + ID: "exploit.kernel", |
| 66 | + Title: "Exploit Pre - Kernel Exploits", |
| 67 | + DefaultProfiles: []string{ProfileBasic, ProfileExtended}, |
| 68 | + Order: 1100, |
| 69 | + } |
| 70 | + CategorySensitiveFiles = CategorySpec{ |
| 71 | + ID: "information.sensitive_files", |
| 72 | + Title: "Information Gathering - Sensitive Files", |
| 73 | + DefaultProfiles: []string{ProfileExtended, ProfileAdditional}, |
| 74 | + Order: 1200, |
| 75 | + } |
| 76 | + CategoryASLR = CategorySpec{ |
| 77 | + ID: "information.aslr", |
| 78 | + Title: "Information Gathering - ASLR", |
| 79 | + DefaultProfiles: []string{ProfileExtended, ProfileAdditional}, |
| 80 | + Order: 1300, |
| 81 | + } |
| 82 | + CategoryCgroups = CategorySpec{ |
| 83 | + ID: "information.cgroups", |
| 84 | + Title: "Information Gathering - Cgroups", |
| 85 | + DefaultProfiles: []string{ProfileExtended, ProfileAdditional}, |
| 86 | + Order: 1400, |
| 87 | + } |
| 88 | +) |
0 commit comments