rudrapatel-1908 commited on
Commit
076c6b5
·
verified ·
1 Parent(s): c060b7f

Update openenv.yaml

Browse files
Files changed (1) hide show
  1. openenv.yaml +13 -5
openenv.yaml CHANGED
@@ -1,15 +1,23 @@
1
  name: sentinel-env
2
  version: 1.0.0
3
- description: "Cybersecurity Sentinel Environment for Cloud Security Tasks"
4
- # This points to: folder 'server', file 'sentinel_env_environment.py', class 'SentinelEnv'
 
 
5
  entry_point: server.sentinel_env_environment:SentinelEnv
 
6
  tasks:
7
  - id: "easy-lockdown"
8
  difficulty: "easy"
9
- description: "Secure a public S3 bucket"
 
 
10
  - id: "medium-access"
11
  difficulty: "medium"
12
- description: "Revoke Admin rights"
 
 
13
  - id: "hard-breach"
14
  difficulty: "hard"
15
- description: "Incident Response"
 
 
1
  name: sentinel-env
2
  version: 1.0.0
3
+ description: "A professional DevSecOps training environment for autonomous security agents."
4
+
5
+ # ✅ CRITICAL: This must match your folder structure exactly
6
+ # format: [folder].[file_without_py]:[ClassName]
7
  entry_point: server.sentinel_env_environment:SentinelEnv
8
+
9
  tasks:
10
  - id: "easy-lockdown"
11
  difficulty: "easy"
12
+ # Improved description for "Real-World" impact
13
+ description: "Remediation of public S3 buckets via policy enforcement and bucket-level lockdown."
14
+
15
  - id: "medium-access"
16
  difficulty: "medium"
17
+ # Focuses on the "Principle of Least Privilege" (PoLP)
18
+ description: "Identity and Access Management (IAM) privilege de-escalation: Revoking unauthorized admin rights."
19
+
20
  - id: "hard-breach"
21
  difficulty: "hard"
22
+ # Multi-step incident response
23
+ description: "Multi-vector incident response: Mitigating an active breach via IP filtering and port security."