Displaying 20 results from an estimated 700 matches similar to: "signals and RFC4254"
2010 Jun 14
5
cooked mode sessions
Picking up on a couple really old threads (e.g.
http://osdir.com/ml/ietf.secsh/2001-09/msg00003.html ) I've finally gotten
around to this. The EXTPROC support on Linux is missing, but you can find
kernel patches for that here
http://lkml.org/lkml/2010/6/11/403
I've also fixed up the netkit telnet / telnetd code to work with EXTPROC /
LINEMODE on Linux, those patches are here
2010 Jun 17
1
Small bug in mux_master_read_cb()
I'm looking at the code from CVS as of May 21. The statement to allocate the
mux state is allocating the size of a pointer, instead of the size of the
struct being pointed to. The bug is benign in the original code because the
struct has only an int element inside it, but it would corrupt memory if the
struct were to be extended.
Simple fix here:
diff --git a/mux.c b/mux.c
index
2016 Feb 16
0
[PATCH] fish: reset the console on ^Z RHBZ#1213844
Patch registers SIGTSTP hook where it sends reset terminal color
control sequence.
---
fish/fish.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 72 insertions(+)
diff --git a/fish/fish.c b/fish/fish.c
index d26f8b3..b579898 100644
--- a/fish/fish.c
+++ b/fish/fish.c
@@ -73,6 +73,11 @@ static void cleanup_readline (void);
static char *decode_ps1 (const char
2009 Oct 26
2
[LLVMdev] disassembly/decompiling
Hi, just read the LLVM 2.6 release announcement, the bit about llvm-mc caught
my attention. I've been looking for a tool to disassemble x86 object files
into an IR and then reassemble them into x86_64 object code. The immediate use
for them would be to convert driver blobs that some vendors provide for their
hardware (e.g. the Lucent modem driver) so they can be used in a 64 bit
kernel.
2010 Aug 19
0
Linemode again
My Linux kernel patches for linemode support have been pulled into the 2.6.36
release stream, so I figure it's time to finish up the work on openssh, bash,
tcsh, readline, libedit, and anything else that comes along. As I last wrote here
http://wiki.github.com/hyc/OpenSSH-LINEMODE/
I've got a few open issues remaining...
First, I re-organized muxed session handling such that all
2023 Aug 06
1
Packet Timing and Data Leaks
Damien Miller wrote:
> On Thu, 3 Aug 2023, Chris Rapier wrote:
>
>> Howdy all,
>>
>> So, one night over beers I was telling a friend how you could use the timing
>> between key presses on a type writer to extract information. Basically, you
>> make some assumptions about the person typing (touch typing at so many words
>> per second and then fuzzing the
2023 Aug 07
1
Packet Timing and Data Leaks
Thorsten Glaser wrote:
> On Sun, 6 Aug 2023, Howard Chu wrote:
>
>> The keystroke timing issue would be solved by adding LINEMODE support as I did back in 2010.
>> https://lists.mindrot.org/pipermail/openssh-unix-dev/2010-June/028732.html
>
> Local line editing by using GNU libreadline? *shudder* No, thanks.
I also ported it to use libedit instead, but readline is more
2009 Sep 08
1
Support for merging LPK and hpn-ssh into mainline openssh?
> From: Damien Miller <djm () mindrot ! org>
> Date: 2009-02-17 4:22:05
> Message-ID: alpine.BSO.2.00.0902171519190.1946 () fuyu ! mindrot ! org
> On Tue, 17 Feb 2009, Peter Lambrechtsen wrote:
>
>> On Tue, Feb 17, 2009 at 3:18 PM, Damien Miller <djm at mindrot.org> wrote:
>> > I don't think there are any plans to merge the LPK patch. We
2009 Sep 08
3
OpenSSH and keystroke timings
Old news, but ... http://lwn.net/Articles/298833/
I first posted about this back in 2001 and it's still not resolved:
http://osdir.com/ml/ietf.secsh/2001-09/msg00000.html
1) high latency networks are a reality that will never go away. In fact they
will only become more prevalent since distributed networks continue to grow
broader but (surprise) the speed of light remains a constant.
2)
2009 Oct 27
0
[LLVMdev] disassembly/decompiling
Howard Chu wrote:
> Chris Lattner wrote:
>>
>> On Oct 26, 2009, at 1:00 AM, Howard Chu wrote:
>>
>>> Hi, just read the LLVM 2.6 release announcement, the bit about llvm-
>>> mc caught
>>> my attention. I've been looking for a tool to disassemble x86 object
>>> files
>>> into an IR and then reassemble them into x86_64 object
2009 Oct 27
4
[LLVMdev] disassembly/decompiling
Chris Lattner wrote:
>
> On Oct 26, 2009, at 1:00 AM, Howard Chu wrote:
>
>> Hi, just read the LLVM 2.6 release announcement, the bit about llvm-
>> mc caught
>> my attention. I've been looking for a tool to disassemble x86 object
>> files
>> into an IR and then reassemble them into x86_64 object code. The
>> immediate use
>> for them would be
2023 Jul 22
1
Ten second intermittent delay on login
Nico Kadel-Garcia wrote:
> On Thu, Jul 20, 2023 at 1:49?PM Johnnie W Adams <jxadams at ualr.edu> wrote:
>>
>> Hi, folks,
>>
>> We're experiencing an odd ten-second delay intermittently when logging
>> into any of our Linux boxes which authenticate against LDAP. Here's where
>> it happens:
>>
>> Jul 13 11:54:23 console2
2016 Mar 08
1
[PATCH] fish: reset the console on ^Z RHBZ#1213844
Patch registers SIGTSTP hook where it sends reset terminal color
control sequence using write and fsync.
Handler is installed only if signal is not being ignored.
Patch uses rl_free_line_state and rl_cleanup_after_signal to unhook
readline from terminal, then it calls original TSTP handler using
approach in URL below and again hooks readline using
rl_reset_after_signal.
Handling is based on code
2010 Jan 11
0
[PATCH] Fix arm signals
Following example from usr/include/arch/i386/klibc/archsignal.h:
The in-kernel headers for arm still have libc5
crap in them. Reconsider using <asm/signal.h>
when/if it gets cleaned up; for now, duplicate
the definitions here.
Signed-off-by: Jon Ringle <jon at ringle.org>
---
usr/include/arch/arm/klibc/archsignal.h | 112 ++++++++++++++++++++++++++++++-
1 files changed, 110
2009 Feb 19
1
NUT 2.4.1 crashes on FreeBSD - additional info
Hi Volker,
I forward your request to the user list since I don't currently have much
time to process it.
quickly testing 2.4.1, I wasn't able to reproduce it.
a question: was it working with the exact same context/config with 2.2.2?
cheers,
Arnaud
--
Linux / Unix Expert R&D - Eaton - http://www.eaton.com/mgeops
Network UPS Tools (NUT) Project Leader -
2001 Jan 02
0
ogg123: close_dsp_on_suspend and next_on_SIGUSR1 patches submission
Hi,
A developper of MandrakeSoft needed for some reason to ameliorate ogg123
in a way: with the patch when you issue a Ctrl+Z (suspending the app) the
dsp is freed. Ofcourse the app can still continue when SIGCONT is
received.
Apparently he chose to separate the actual code into more functions.
Please note that this code uses local functions, it thus needs gcc to
compile.
-=-=--
---
2016 Feb 16
2
[PATCH] fish: reset the console on ^Z RHBZ#1213844
Patch registers SIGTSTP hook where it sends reset terminal color control
sequence.
Maros Zatko (1):
fish: reset the console on ^Z RHBZ#1213844
fish/fish.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 72 insertions(+)
--
2.5.0
2020 Aug 27
0
[klibc:master] alpha: Fix definitions of _NSIG and struct sigaction
Commit-ID: 1cd11aaed1dece773c6b1ce2e99a0fe98b51321e
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=1cd11aaed1dece773c6b1ce2e99a0fe98b51321e
Author: Ben Hutchings <ben at decadent.org.uk>
AuthorDate: Thu, 27 Aug 2020 01:58:19 +0100
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Thu, 27 Aug 2020 03:51:11 +0100
[klibc] alpha: Fix definitions of
2015 Jan 07
2
discussion about keystroke timing attacks against SSH on the cryptography ML
Hi folks.
FYI:
There's a discussion[0] about keystroke timing attacks against SSH going
on on the cryptography mailing list.
Would be interesting to hear the opinion of some OpenSSH folks what
SSH/OpenSSH is doing against this and what could maybe be don in
addition.
Especially since the main idea behind the attack is obviously not
limited to the initial authentication phase when a password
2014 Jul 28
0
[Announce] Samba 4.1.10 Available for Download
=====================================================================
"When your work speaks for itself,
don't interrupt."
Henry J. Kaiser
=====================================================================
Release Announcements
---------------------
This is the latest stable release of Samba 4.1.
Changes since 4.1.9:
--------------------
o Michael Adam