Canstralian commited on
Commit
5596009
·
verified ·
1 Parent(s): d38adcf

Create prompts.py

Browse files
Files changed (1) hide show
  1. prompts.py +19 -0
prompts.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PROMPTS = {
2
+ "open_ports": (
3
+ "Analyze the following network scan report and identify open ports and their associated vulnerabilities. "
4
+ "Suggest best practices to secure these ports: [Insert network scan report]."
5
+ ),
6
+ "outdated_software": (
7
+ "Given this list of installed software and services, identify outdated versions and known vulnerabilities. "
8
+ "Provide recommendations for updates or patches to mitigate risks: [Insert software and service list]."
9
+ ),
10
+ "default_credentials": (
11
+ "Scan the following system configurations for any use of default credentials. Provide a list of affected services "
12
+ "and recommendations for securing these credentials: [Insert system configuration details]."
13
+ ),
14
+ "misconfigurations": (
15
+ "Evaluate the provided system configuration for potential misconfigurations. Highlight risks and provide "
16
+ "recommendations for secure setup: [Insert system configuration details]."
17
+ ),
18
+ # Add more prompts as necessary
19
+ }