Displaying 6 results from an estimated 6 matches for "namebase".
Did you mean:
name_base
2015 Sep 07
2
Dovecot and IPA
Kanwar Ranbir Sandhu skrev den 2015-09-07 19:29:
> I tried it for shits and giggles: no change. :( I'm still seeing the
> same problem.
dovecot is buildt with security in mind...
using namebased gid or uid is not secure
it might just still works, but its not secure
2017 Mar 14
4
[Bug 1130] New: Better handling DNS names in nft ruleset
https://bugzilla.netfilter.org/show_bug.cgi?id=1130
Bug ID: 1130
Summary: Better handling DNS names in nft ruleset
Product: nftables
Version: unspecified
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: nft
Assignee: pablo at netfilter.org
2015 Sep 07
4
Dovecot and IPA
Kanwar Ranbir Sandhu skrev den 2015-09-07 18:02:
> args = uid=virtual gid=virtual home=/var/spool/mail/%d/%n/
uid and gid must be nummeric just like output from id
id virtual
make the args have same info
2015 Sep 07
0
Dovecot and IPA
Am 2015-09-07 um 19:47 schrieb Benny Pedersen:
> Kanwar Ranbir Sandhu skrev den 2015-09-07 19:29:
>
>> I tried it for shits and giggles: no change. :( I'm still seeing the
>> same problem.
>
> dovecot is buildt with security in mind...
>
> using namebased gid or uid is not secure
>
> it might just still works, but its not secure
Benny, where did you learn all this?
--
peter
2001 May 14
2
openssh-2.9p1
Hi,
1. I think you should apply the attached patch to openssh-2.9p1,
otherwise ssh-keyscan on linux boxes with glibc-2.1 will experience enormous
timeout delays.
2. Is there a program like ssh-keyscan for the Version2 (dsa and rsa) keys??
regards
Peter Breitenlohner <peb at mppmu.mpg.de>
-------------- next part --------------
diff -ur openssh-2.9p1.orig/ssh-keyscan.c
2001 Jul 27
0
Updated ssh-keyscan patch for ssh2 support
...ion structure for each file descriptor. The state
@@ -54,11 +74,13 @@
int c_plen; /* Packet length field for ssh packet */
int c_len; /* Total bytes which must be read. */
int c_off; /* Length of data read so far. */
+ int c_keytype; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
char *c_namebase; /* Address to free for c_name and c_namelist */
char *c_name; /* Hostname of connection for errors */
char *c_namelist; /* Pointer to other possible addresses */
char *c_output_name; /* Hostname of connection for output */
char *c_data; /* Data read from this fd */
+ Kex *c_kex; /* The...