-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpanic-attacker.toml.example
More file actions
49 lines (36 loc) · 1 KB
/
panic-attacker.toml.example
File metadata and controls
49 lines (36 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# SPDX-License-Identifier: PMPL-1.0-or-later
# panic-attacker configuration file example
# Copy to panic-attacker.toml and customize
[xray]
# Default verbosity for X-Ray scans
verbose = false
# Include hidden files in analysis
include_hidden = false
# Minimum lines for a file to be considered
min_lines = 10
[attack]
# Default attack intensity
# Options: light, medium, heavy, extreme
intensity = "medium"
# Default attack duration in seconds
duration = 60
# Attack axes to use by default
# Options: cpu, memory, disk, network, concurrency, time
axes = ["cpu", "memory", "concurrency"]
# Run attacks in parallel
parallel = false
[report]
# Default output format
# Options: terminal, json, yaml
format = "terminal"
# Use colored output
colors = true
# Show per-file breakdown in verbose output
per_file = true
[thresholds]
# Minimum robustness score to pass (0-100)
min_robustness_score = 50.0
# Maximum weak points before failing
max_weak_points = 10
# Fail on critical severity weak points
fail_on_critical = true