-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
38 lines (32 loc) · 1.44 KB
/
Copy path.env.example
File metadata and controls
38 lines (32 loc) · 1.44 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
# RustNmap Test Configuration
# Copy this file to `.env` and customize the values for your test environment
# =============================================================================
# External Test Target Configuration
# =============================================================================
# IP address of the external test target for integration tests
# This target is used by scan_target_test.rs for real network testing
# Default: 127.0.0.1 (localhost)
TEST_TARGET_IP=192.168.15.113
# Ports to scan on the external test target (comma-separated)
# Default: 22,80,443,3389,8080
TEST_TARGET_PORTS=22,80,443,3389,8080
# =============================================================================
# Localhost Test Configuration
# =============================================================================
# Known open ports on localhost for testing
# These ports should have services listening on localhost
# Default: 22,8501
TEST_LOCAL_OPEN_PORTS=22,8501
# Known closed ports on localhost for testing
# These ports should NOT have services listening
# Default: 54321,65432
TEST_LOCAL_CLOSED_PORTS=54321,65432
# =============================================================================
# Test Timing Configuration
# =============================================================================
# Timeout for scan operations in seconds
# Default: 30
TEST_SCAN_TIMEOUT_SECS=30
# Maximum retries for discovery operations
# Default: 2
TEST_MAX_RETRIES=2