Displaying 20 results from an estimated 50000 matches similar to: "[Bug 424] New: scp mishandles files with spaces in names"
2003 Jan 03
0
[Bug 424] scp mishandles files with spaces in names
http://bugzilla.mindrot.org/show_bug.cgi?id=424
djm at mindrot.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From djm at mindrot.org 2003-01-03 15:16
2023 Nov 09
0
[Bug 424] scp mishandles files with spaces in names
https://bugzilla.mindrot.org/show_bug.cgi?id=424
Slaven Rezi? <slaven.rezic at idealo.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |slaven.rezic at idealo.de
--- Comment #5 from Slaven Rezi? <slaven.rezic at idealo.de> ---
(In reply to
2006 Feb 26
2
[Bug 1164] scp with spaces username no longer works
http://bugzilla.mindrot.org/show_bug.cgi?id=1164
Summary: scp with spaces username no longer works
Product: Portable OpenSSH
Version: 4.3p2
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: scp
AssignedTo: bitbucket at mindrot.org
ReportedBy: dtucker at
2005 Mar 03
2
[Bug 992] scp cannot handle filenames with spaces in them
http://bugzilla.mindrot.org/show_bug.cgi?id=992
Summary: scp cannot handle filenames with spaces in them
Product: Portable OpenSSH
Version: 3.9p1
Platform: All
OS/Version: All
Status: NEW
Keywords: patch
Severity: normal
Priority: P2
Component: scp
AssignedTo: openssh-bugs at mindrot.org
2012 Mar 06
1
Invalid user name: function okname() in scp.c
Hi OpenSSH developers
In the source file *scp.c* there is a function called *okname(char
*cp0)* that validates the entered username by using the scp command as
follows:
*
*[ Fragment scp.c start ]
...
int okname(char *cp0)
{
int c;
char *cp;
cp = cp0;
do {
c = (int)*cp;
if (c & 0200)
goto bad;
if (!isalpha(c) &&
2006 Jun 28
1
[Bug 1204] scp doesn't check that target is a directory
http://bugzilla.mindrot.org/show_bug.cgi?id=1204
Summary: scp doesn't check that target is a directory
Product: Portable OpenSSH
Version: 4.2p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: scp
AssignedTo: bitbucket at mindrot.org
ReportedBy:
2003 Sep 05
1
doing scp from java when file has spaces in it
Hi,
I am new to scp. I am trying to scp a file from local (m/c) to remote
through a java application running in Tomcat.
When I try to upload a file with no spaces in it, it works. But if spaces
are present (file name is : "Lots of spaces text .txt") it is not working.
Some of the things I tried are mentioned below and they failed.
scp [...options]
2006 Jul 03
2
[Bug 1205] scp back-slash escaping of spaces ignored after username@hostname: tag
http://bugzilla.mindrot.org/show_bug.cgi?id=1205
Summary: scp back-slash escaping of spaces ignored after
username at hostname: tag
Product: Portable OpenSSH
Version: 4.3p2
Platform: ix86
OS/Version: Linux
Status: NEW
Keywords: low-hanging-fruit
Severity: normal
Priority: P3
2016 Sep 20
4
[PATCH] Allow scp to copy files that start with a Windows drive name.
On Windows, ?scp C:/foo/bar remotehost:? will attempt to connect to
a remote host ?C? and access file ?/foo/bar?. There is currently no
syntax or flag to allow copying files that start with a drive name.
This patch changes the behaviour (only on Cygwin) by considering
that a single letter followed by a colon is a Windows drive name
and thus an absolute path. This is also more consistent with the
2003 Sep 16
1
[Bug 639] scp: wrong exit status
http://bugzilla.mindrot.org/show_bug.cgi?id=639
Summary: scp: wrong exit status
Product: Portable OpenSSH
Version: 3.6.1p2
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: scp
AssignedTo: openssh-bugs at mindrot.org
ReportedBy: koenig at
2000 Aug 18
0
[PATCH] Support symlinks in scp of openssh 2
I'm fond of the "-a" (archive) option of cp, and I'm a heavy user of
scp, so I guess it's inevitable that I would eventually add support
for "-a" to scp. :-) Actually, it's a "-L" flag for preserving
symlinks, and a "-a" flag that is shorthand for "-Lpr".
Please let me know if I'm not doing this right.... I made a great
2003 Sep 15
5
[Bug 638] scp: wrong exit status
http://bugzilla.mindrot.org/show_bug.cgi?id=638
Summary: scp: wrong exit status
Product: Portable OpenSSH
Version: 3.6.1p2
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: scp
AssignedTo: openssh-bugs at mindrot.org
ReportedBy: koenig at
2001 Feb 08
1
username check in scp
Hi
a fellow debian developer pointed it out to me, that ssh itself does not
check the username that is provided for login into a remote host, but
that scp checks it. I could verify that the current openssh code from
cvs still has a check for the username in scp.c but not in ssh.c. So I
created the attached small patch to remove the username check from scp.
I hope ?t's correct and that you
2004 Jan 06
2
BUG: scp -r follows symlinks
hey all
'scp -r ' follows symlinks. IMO this is a bug and should be changed - it:
a) hampers the use of scp. As it stands, I cannot use 'scp -r' because of this
behavior. If someone links to '/', or if I hit a recursive symlink, I'm screwed.
b) It is inconsistant with cp. When you 'cp -r' on a file, it does NOT follow the
symlink. When you scp
2002 Dec 03
1
scp "Bad address" errors with strange filesystem block sizes
When copying from a remote host to a local filesystem with a strange block
size, allocbuf() in scp.c seems to calculate an incorrect buffer size,
causing the copy loop in sink() to write past the end of the buffer.
For example, with smbfs, the optimal block size is negotiated when the
client connects to the server, and is rarely a power of two. In my case
it is 64560.
This loop in sink() keeps
2025 Feb 04
1
Possibility of scp --interactive option
Morgan, Iain (ARC-TN)[InuTeq, LLC] wrote:
> On Sun, 2 Feb 2025, Jochen Bern wrote:
>
> > On 01.02.25 22:30, Christoph Groth wrote:
> > > An --interactive option that behaves just like the one in cp would
> > > solve the issue for me. I would happily alias scp to
> > > scp --interactive. Is there any technical or other reason why scp
> > > does not
2002 Feb 20
2
feature request: add -a to scp for archive-style copy
This is a feature request for scp. scp has no easy option to copy
symlinks, etc. to reproduce a directory tree. The -r option follows
symlinks and reads the data out of device files when copying. A few
years ago, the -a option was added to normal cp, replacing the
cumbersome and arcane
(cd wherever1 ; tar cf - whatever) | (cd wherever2 ; tar xpf - )
with
cp -a wherever1/whatever wherever2
2012 Apr 17
2
[Bug 1998] New: Arbitrary command execution using SCP
https://bugzilla.mindrot.org/show_bug.cgi?id=1998
Bug #: 1998
Summary: Arbitrary command execution using SCP
Classification: Unclassified
Product: Portable OpenSSH
Version: 5.8p1
Platform: All
OS/Version: Linux
Status: NEW
Severity: security
Priority: P2
Component: scp
AssignedTo:
2025 Feb 03
1
Possibility of scp --interactive option
On Sun, 2 Feb 2025, Jochen Bern wrote:
> On 01.02.25 22:30, Christoph Groth wrote:
> > An --interactive option that behaves just like the one in cp would solve
> > the issue for me. I would happily alias scp to scp --interactive. Is
> > there any technical or other reason why scp does not have such an option
> > or something similar?
>
> Seeing that (the PUT
2025 Feb 01
1
Possibility of scp --interactive option
Hello,
Now that scp uses the sftp protocol, wouldn?t it be a good idea to add
an --interactive option ? la cp to it?
It seems to me that one common usage of scp is to make sure that the
files being copied are available on the remote machine, but without
overwriting anything (and certainly not silently). I find myself very
often in this situation, but judging by the number of questions about