Displaying 20 results from an estimated 1200 matches similar to: "[PATCH] Updated gitignore to ignore sshd-session and sshd-auth targets"
2024 Oct 25
1
[PATCH] Memory leak fixed - when lauched as non-root user When we lauch sshd as non-root user, its still able to load public keys but fails to load private keys. So before exiting free the memory allocated for the public key
---
sshd.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sshd.c b/sshd.c
index dda8d9b77..cbdced5db 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1533,6 +1533,8 @@ main(int ac, char **av)
} else {
do_log2(ll, "Unable to load host key: %s",
options.host_key_files[i]);
+ sshkey_free(pubkey);
+ pubkey = NULL;
sensitive_data.host_keys[i] = NULL;
2024 Apr 11
1
[PATCH] sshsig: check hashalg before selecting the RSA signature algorithm
`ssh-keygen -Y sign` only selects the signing algorithm `rsa-sha2-512`
and this prevents ssh-agent implementations that can't support sha512
from signing messages.
An example of this is TPMs which mostly only really supports sha256
widely.
This change enables `ssh-keygen -Y sign` to honor the `hashalg` option
for the signing algorithm.
Signed-off-by: Morten Linderud <morten at
2024 Nov 26
1
[PATCH] sshsig: check hashalg before selecting the RSA signature algorithm
Sorry, this now been committed and will be in openssh-10.0
On Sat, 23 Nov 2024, Morten Linderud wrote:
> Hi,
>
> I sent this patch back inn april and I still have a need for this. Would it be
> possible to get any pointers how we can have `hashalg` selectable by `ssh-keygen -Y`?
>
> --
> Morten Linderud
> PGP: 9C02FF419FECBE16
>
> On Thu, Apr 11, 2024 at
2024 Nov 26
1
[PATCH] sshsig: check hashalg before selecting the RSA signature algorithm
Thank you!
There is now two " XXX maybe make configurable " in the top of the file that is
probably no longer relevant. Do you want a followup patch for that?
Cheers,
Morten Linderud
On Wed, Nov 27, 2024 at 08:25:15AM +1100, Damien Miller wrote:
> Sorry, this now been committed and will be in openssh-10.0
>
> On Sat, 23 Nov 2024, Morten Linderud wrote:
>
> > Hi,
2024 Nov 23
2
[PATCH] sshsig: check hashalg before selecting the RSA signature algorithm
Hi,
I sent this patch back inn april and I still have a need for this. Would it be
possible to get any pointers how we can have `hashalg` selectable by `ssh-keygen -Y`?
--
Morten Linderud
PGP: 9C02FF419FECBE16
On Thu, Apr 11, 2024 at 09:16:39PM +0200, Morten Linderud wrote:
> `ssh-keygen -Y sign` only selects the signing algorithm `rsa-sha2-512`
> and this prevents ssh-agent
2024 Nov 23
1
[PATCH] sshsig: check hashalg before selecting the RSA signature algorithm
There is no hash algorithm associated with SSH keys. The key format for RSA keys is always ?ssh-rsa?, and it is capable of being used with any of the available signature algorithms (ssh-rsa for SHA-1 and rsa-sha2-256 or rsa-sha2-512 for SHA-2).
See section 3 in https://www.rfc-editor.org/rfc/rfc8332:
rsa-sha2-256 RECOMMENDED sign Raw RSA key
rsa-sha2-512 OPTIONAL
2023 Oct 20
0
[PATCH] Clean up the regress directory with make clean
This patch removes the various keys and support files created during
make tests. It might not be as compact as it could be, and I'd be happy
to get comments on that, but it does work.
diff --git a/Makefile.in b/Makefile.in
index 70287f51f..0f1ef844d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -296,6 +296,45 @@ clean: regressclean
rm -f regress/misc/sk-dummy/*.o
rm -f
2024 Oct 29
5
[Bug 3748] New: "webauthn-sk-ecdsa-sha2-nistp256@openssh.com" signature type not supported from ssh agent
https://bugzilla.mindrot.org/show_bug.cgi?id=3748
Bug ID: 3748
Summary: "webauthn-sk-ecdsa-sha2-nistp256 at openssh.com"
signature type not supported from ssh agent
Product: Portable OpenSSH
Version: 9.7p1
Hardware: 68k
OS: Mac OS X
Status: NEW
Severity: enhancement
2009 Sep 11
1
[PATCH] .gitignore: Ignore a couple of auto-generate m4 scripts
---
.gitignore | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
index a6caaf9..ae3b16d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -45,6 +45,7 @@ daemon/install-sh
daemon/missing
daemon/names.c
daemon/stubs.c
+daemon/m4/stddef_h.m4
depcomp
.deps
df/virt-df.1
@@ -114,6 +115,7 @@ libtool
*.lo
localconfigure
ltmain.sh
+m4/gnulib-cache.m4
2011 Dec 23
1
[PATCH] gitignore: ignore the guestfs.* directory
Let git ignore the guestfs.* directorys.
Signed-off-by: Wanlong Gao <gaowanlong at cn.fujitsu.com>
---
.gitignore | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
index dcf2af1..4d4556e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -367,3 +367,4 @@ tools/virt-*.pl
/gnulib
.git-module-status
.guestfs-*
+guestfs.*
--
1.7.8
2020 Apr 25
2
[PATCH 1/3] Add private key protection information extraction to ssh-keygen
Add private key protection information extraction to shh-keygen using -v
option on top of -y option which is already parsing the private key.
Technically, the passphrase isn't necessary to do this, but it is the
most logical thing to do for me.
Adding this to -l option is not appropriate because fingerprinting is
using the .pub file when available.
An other idea is to add a new option, I
2018 Oct 22
2
[PATCH] ssh: Add missing openssl-compat.h where needed
OpenSSL_add_all_algorithms has been deprecated with 1.1. Compatibility
is needed.
Signed-off-by: Rosen Penev <rosenp at gmail.com>
---
ssh-keysign.c | 1 +
ssh_api.c | 2 ++
2 files changed, 3 insertions(+)
diff --git a/ssh-keysign.c b/ssh-keysign.c
index 744ecb4f..bcd1508c 100644
--- a/ssh-keysign.c
+++ b/ssh-keysign.c
@@ -40,6 +40,7 @@
#include <openssl/evp.h>
#include
2012 Jan 13
0
[PATCH].gitignore: ocaml: add xenlight.mli
I will be committing this shortly.
Ian.
From: Ian Jackson <ian.jackson@eu.citrix.com>
Subject: [PATCH] .gitignore: ocaml: add xenlight.mli
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
---
.gitignore | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
index 625ceee..297191e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -359,6
2012 Jan 04
0
Rails 313: .gitignore has absolute paths - correct?
I just installed 313 and ran ''rails new test''
I notice the .gitignore file has entries with ''/'' prepended. Is this
correct??
-joe
# See http://help.github.com/ignore-files/ for more about ignoring
files.
#
# If you find yourself ignoring temporary files generated by your text
editor
# or operating system, you probably want to add a global ignore
instead:
#
2006 Jul 16
1
[patch] klibc add toplevel .gitignore
start by ignoring make generated objects.
subdirectories need specific rules later.
makes git status more meaningfull.
Signed-off-by: maximilian attems <maks at sternwelten.at>
---
.gitignore | 11 +++++++++++
1 file changed, 11 insertions(+)
--- /dev/null 2006-07-14 10:57:32.128246500 +0200
+++ klibc.git/.gitignore 2006-07-16 20:29:39.000000000 +0200
@@ -0,0 +1,11 @@
+# NOTE!
2012 Nov 29
0
[PATCH] Add gtags and tags rune in gitignore.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
.gitignore | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/.gitignore b/.gitignore
index f6edc43..d849a4b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,6 +14,11 @@
*.spot
*.spit
TAGS
+GTAGS
+GRTAGS
+GPATH
+GSYMS
+tags
cscope.files
cscope.in.out
cscope.out
--
1.7.10.4
2009 Aug 08
0
[PATCH] gitignore: add *.sym
*.sym files are generated; ignore them.
Signed-off-by: Sebastian Herbszt <herbszt at gmx.de>
diff --git a/.gitignore b/.gitignore
index c786675..83632a9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,6 +20,7 @@
*.rej
*.s
*.sec
+*.sym
*.sys
*_bin.c
*~
2007 Jul 13
0
3 commits - configure.ac .gitignore libswfdec/swfdec_event.c libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_swf_instance.c
.gitignore | 2 +-
configure.ac | 2 +-
libswfdec/swfdec_event.c | 2 +-
libswfdec/swfdec_sprite_movie.c | 2 +-
libswfdec/swfdec_swf_instance.c | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
New commits:
diff-tree 0a9188fdb36edbe11775ca410f11551090cc7135 (from e20317c4a4d2b95516b6339bbd3dc89c5d0b777a)
Author: Benjamin Otte
2009 Aug 05
2
[PATCH] Add some newly-untracked files to .gitignore
---
.gitignore | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
index 147e1cb..dcea811 100644
--- a/.gitignore
+++ b/.gitignore
@@ -154,10 +154,21 @@ po/POTFILES
po/remove-potcdate.sed
po/stamp-it
po/stamp-po
+po/LINGUAS
+po/Makefile.in.in
+po/Makevars
+po/Rules-quot
+po/boldquot.sed
+po/en at boldquot.header
+po/en at quot.header
2012 Nov 13
0
[LLVMdev] [PATCH] .gitignore: add rules for a clean worktree
On Tue, Nov 13, 2012 at 6:02 PM, Ramkumar Ramachandra
<artagnon at gmail.com> wrote:
> Add several .gitignore rules to various directories to ensure a clean
> worktree after a default build.
Hi,
These gitignore lists require maintenance. Is is possible to express
the same set of filenames as patterns like '*.inc' in the root
gitigrore file, so that adding/removing a new