.dist file goes to etc/

This commit is contained in:
Michel Oosterhof 2018-07-20 14:39:49 +04:00
parent 369497005f
commit b584287e3a
3 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ For Python dependencies, see requirements.txt
## Files of interest:
* `cowrie.cfg` - Cowrie's configuration file. Default values can be found in `cowrie.cfg.dist`
* `cowrie.cfg` - Cowrie's configuration file. Default values can be found in `etc/cowrie.cfg.dist`
* `data/fs.pickle` - fake filesystem
* `data/userdb.txt` - credentials allowed or disallowed to access the honeypot
* `dl/` - files transferred from the attacker to the honeypot are stored here

View File

@ -42,4 +42,4 @@ def readConfigFile(cfgfile):
return parser
CONFIG = readConfigFile(("cowrie.cfg.dist", "etc/cowrie.cfg", "cowrie.cfg"))
CONFIG = readConfigFile(("etc/cowrie.cfg.dist", "etc/cowrie.cfg", "cowrie.cfg"))