Displaying 4 results from an estimated 4 matches for "entcmd".
Did you mean:
editcmd
2006 May 04
2
xmalloc(foo*bar) -> xcalloc(foo, bar) for Portable
Hi All.
While wandering in auth-pam.c I noticed that there's a few Portable-specific
escapees from the xmalloc(foo * bar) cleanup.
There's also a "probably can't happen" integer overflow in
ssh-rand-helper.c with the memset:
num_cmds = 64;
- entcmd = xmalloc(num_cmds * sizeof(entropy_cmd_t));
+ entcmd = xcalloc(num_cmds, sizeof(entropy_cmd_t));
memset(entcmd, '\0', num_cmds * sizeof(entropy_cmd_t));
Unless sizeof(entropy_cmd_t) is *really* big, it ought to safe :-)
Index: auth-pam.c
===================================...
2000 May 19
0
I present: The Elusive 'fixprogs' script
...the losers
#
$entscale = 50; # divisor for optional entropy measurement
sub usage {
return("Usage: $0 <command file>\n");
}
if (($#ARGV == -1) || ($#ARGV>1)) {
die(&usage);
}
# 'undocumented' option - run ent (in second param) on the output
if ($#ARGV==1) {
$entcmd=$ARGV[1]
} else {
$entcmd = ""
};
$infilename = $ARGV[0];
if (!open(IN, "<".$infilename)) {
die("Couldn't open input file");
}
$outfilename=$infilename.".out";
if (!open(OUT, ">$outfilename")) {
die("Couldn't open output f...
2001 Mar 11
4
prng_cmds/init_rng() question/patch
I have a need to provide ssh client binaries for use elsewhere on
several platforms, some without /dev/random support. I can't assume
that users will know how to install/run prngd or egd, so I was
planning to rely on the builtin prng code. However this require the
ssh_prng_cmds file to exist in a fixed location -- which would mean
making binaries which either look for it in . or other
2000 May 12
1
Patch: OpenSSH 2.1.0 under Solaris 8, Solaris 7 and other sys tems, too
> -----Urspr?ngliche Nachricht-----
> Von: Andre Lucas [SMTP:andre.lucas at dial.pipex.com]
> Gesendet am: Freitag, 12. Mai 2000 16:37
> An: Bladt Norbert
> Cc: 'Karsten Thygesen'; 'openssh-unix-dev at mindrot.org';
> 'carl at bl.echidna.id.au'
> Betreff: Re: Patch: OpenSSH 2.1.0 under Solaris 8, Solaris 7 and
> other systems, too
>
> Well