search for: hosts_deny

Displaying 3 results from an estimated 3 matches for "hosts_deny".

2001 Dec 28
1
(patch) memory leak in loadparm.c
...bsDefaultInitialized = True; +#define maybe_init(x) if (sDefault.x != NULL) sDefault.x = strdup(sDefault.x) + maybe_init(name); + maybe_init(path); + maybe_init(comment); + maybe_init(lock_file); + maybe_init(uid); + maybe_init(gid); + maybe_init(hosts_allow); + maybe_init(hosts_deny); + maybe_init(auth_users); + maybe_init(secrets_file); + maybe_init(exclude); + maybe_init(exclude_from); + maybe_init(include); + maybe_init(include_from); + maybe_init(log_format); + maybe_init(refuse_options); + maybe_init(dont_compress); +#undef maybe_init + } }...
2001 Dec 03
2
Bug in rsyncd 2.5.0 while handling config file string values
...; (gdb) p sDefault $3 = {name = 0x0, path = 0x0, comment = 0x0, lock_file = 0x8076813 "/var/run/rsyncd.lock", read_only = 1, list = 1, use_chroot = 1, transfer_logging = 0, ignore_errors = 0, uid = 0x807680c "nobody", gid = 0x807680c "nobody", hosts_allow = 0x0, hosts_deny = 0x0, auth_users = 0x0, secrets_file = 0x0, strict_modes = 1, exclude = 0x0, exclude_from = 0x0, include = 0x0, include_from = 0x0, log_format = 0x80767f3 "%o %h [%a] %m (%u) %f %l", refuse_options = 0x0, dont_compress = 0x80767c0 "*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.b...
2009 Aug 26
1
denyhosts configuration
...p being added perday when the total is many more than that. My config is below, i've gone over it and am not seeing what i missed. Suggestions welcome. I was also wondering if denyhosts can block other types of robot attacks such as smtp or port 80? Thanks. Dave. SECURE_LOG = /var/log/secure HOSTS_DENY = /etc/hosts.deny PURGE_DENY = 1w BLOCK_SERVICE = sshd DENY_THRESHOLD_INVALID = 2 DENY_THRESHOLD_VALID = 10 DENY_THRESHOLD_ROOT = 1 DENY_THRESHOLD_RESTRICTED = 1 WORK_DIR = /var/lib/denyhosts SUSPICIOUS_LOGIN_REPORT_ALLOWED_HOSTS=YES HOSTNAME_LOOKUP=NO LOCK_FILE = /var/lock/subsys/denyhosts ADMIN_...