-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yml
37 lines (33 loc) · 1.51 KB
/
config.yml
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
## Logging configuration
logging:
file_only: false
out_path: 'logs'
level: 'DEBUG'
# Number of hours each log file should last before rolling over.
rollover_after_hours: 6
# Number of log files to keep before deleting old ones.
# 0 = no limit
max_log_files: 0
## Service spoofing configuration
services:
# Path to nmap-service-probes.
probe_file_location: 'nmap-service-probes'
############################################################################################################
## Re-enabling honeypot services is not recommended and will increase detection rate from shodan/nmap/etc ##
############################################################################################################
# List of service types to avoid spoofing.
# Defaults to 'honeypot' to reduce detection rates
# Items can be regular expressions and are case insensitive.
disabled_service_types: ['honeypot']
# List of product names to avoid spoofing.
# Defaults to patterns matching honeypots to reduce detection rates.
# Items can be regular expressions and are case insensitive.
disabled_product_names: ['.*honeypot.*', '.*honeyd.*', 'Dumbster fake smtpd', '.*nepenthes.*']
## Networking-related items
networking:
# Should be a port that does not have a service being spoofed on it, and is not being used currently.
real_port: 11337
# The maximum number of ports per spoofed service
max_ports_per_service: 10
# The maximum number of replies a spoofed service will make to a client
max_replies: 10