Displaying 18 results from an estimated 18 matches for "targetshouldbedirectori".
Did you mean:
targetshouldbedirectory
2005 Sep 25
0
[Bug 1091] targetshouldbedirectory not set for remote wildcards
http://bugzilla.mindrot.org/show_bug.cgi?id=1091
Summary: targetshouldbedirectory not set for remote wildcards
Product: Portable OpenSSH
Version: 3.8.1p1
Platform: All
OS/Version: Linux
Status: NEW
Keywords: low-hanging-fruit
Severity: normal
Priority: P3
Component: scp
AssignedTo:
2006 Apr 18
0
[Bug 1091] targetshouldbedirectory not set for remote wildcards
http://bugzilla.mindrot.org/show_bug.cgi?id=1091
------- Comment #1 from djm at mindrot.org 2006-04-18 15:07 -------
We have this "half right" now, in that
scp hosta:foo hosta:bar /tmp/abc
will check that /tmp/abc is a directory, but there is no way to know a priori
that :
scp hosta:* /tmp/abc
will yield multiple files. I suppose we could modify sink() to raise an error
on the
2004 Aug 31
1
[PATCH] supporting a remote scp path option in scp
Hi there,
I've written some enhancements to scp.c and pathnames.h to enable the scp
to arbitrarily set the remote scp path.
(eg $ scp -e /usr/bin/scp foo user at bar:foo)
I did read the "scp: command not found" FAQ entry but I'm not quite sure
why we can't do this, unless it's because enhancements to scp are no
longer a priority. Any other reason why it "is the
2006 May 14
1
scp patch to delete source files after copy
At work we have a large collection of scripts to move log
and config files around. These depend on commercial (F-Secure)
ssh/scp, as it supports the -u option to delete the source file
after (successful) copying. That is the sole reason we can't
run openssh on our 150+ unix boxes.
I have attached a patch below, which adds the -u option to
delete the source file after copying, provided there
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
2010 Nov 19
3
File Offsets for SCP (patch)
I don't know if anyone would be interested in this but I'm including a
patch to allow for offsets when transferring files with SCP.
It's pretty simple and assumes the user knows what they are doing (for
example, if transferring with a wild card the offset would apply to all
files). -A is the number of bytes offset from the beginning of the
files. -Z is the number of bytes inset
2002 Jul 13
0
[PATCH]: scp program improved
Hi,
I have made a patch which improves scp utility. It adds two new features:
rate limit and resume support. With rate limit it's possible to limit
transfer speed. Resume allows to continue file transfer where it was last
interrupted. Also the progress meter was improved.
Here is my patch, please send comments about it and what I can do better
if there is something to fix.
---
2019 Jan 19
2
Status of SCP vulnerability
Hello,
I would like to request an update of the progress regarding fixes for the recently disclosed SCP vulnerability (CVE-2018-20685, CVE-2019-6111, CVE-2019-6109, CVE-2019-6110)
It has been stated that CVE-2018-20685 has been patched in november but there are currently no information available on the progress of patches regarding the other CVEs.
Will there be a patched release any time soon?
2001 Oct 16
6
program-prefix does not work
the configure option --program-prefix does not work although it is
listed in teh configure --help output.
The attached patch fixes these issues:
1) program prefix is not substituted in configure
2) program prefix is not present in Makefile
3) scp requires use of a known "scp" program
-- bryan
diff -cr openssh-2.9.9p2.orig/Makefile.in openssh-2.9.9p2/Makefile.in
***
[Bug 1768] New: scp: wrong error message when destination directory ends with a slash and is missing
2010 May 09
0
[Bug 1768] New: scp: wrong error message when destination directory ends with a slash and is missing
https://bugzilla.mindrot.org/show_bug.cgi?id=1768
Summary: scp: wrong error message when destination directory
ends with a slash and is missing
Product: Portable OpenSSH
Version: -current
Platform: All
URL: https://bugs.launchpad.net/bugs/18757
OS/Version: All
Status: NEW
Severity: normal
2007 Nov 24
1
undocumented scp server-side arguments -dft
Hi,
When implementing forced-commands using authorized-keys, I realized
that scp (when run at the server end) arguments -d, -f and -t are not
documented on the man page.
scp.c:
...
/* Server options. */
case 'd':
targetshouldbedirectory = 1;
break;
case 'f': /*
2001 May 12
4
Erase the source file open; specify a tempfile name option
I'm curious how to go about submitting a suggestion that affects both
the original BSD version and the portable release. A few days ago I
sent off a BSD-relative patch to openssh at openssh.com. Is this the right
thing to do? I didn't hear anything back, but it's only been 3 days, so
I'm probably just being too antsy.
In the meantime, maybe someone else out there would like to
2006 Jan 20
1
Bug: Copying several files to non-directory.
Dear openssh people,
Here's something to try:
$ echo a >a
$ echo b >b
$ echo c >c
$
$ scp a b c
$
$ echo $?
1
$ cat a b c
a
b
b
Ouch! Also, for comparison:
$ cp a b c
cp: copying multiple files, but last argument `c' is not a directory
Try `cp --help' for more information.
$ rcp a b c
rcp: c: Not a directory.
$
Note that the cp behavior is specified in SuSv2.
2000 Aug 12
0
[PATCH] scp -S support
[Please Cc: me, I'm not on the list]
fsh (http://www.lysator.liu.se/fsh/) is a program that keeps
an ssh tunnel open and multiplexes multiple batch sessions
through that single connection, avoiding slower public key
crypto for things like cvs.
fsh includes an utility called fcp that can multiplex file
copies through this single connection. It relies on scp for
the actual file copying,
2005 May 24
1
scp remote-to-remote implementation
(Please when replying include my email since i'm not subscribe to this list)
Hello all,
I always wanted to be able to copy from one remote location to another
from a master server/workstation using something like:
scp [-r] server1:/path/to/dir server2:/path/to/dir2
And have scp "know" that i mean to copy from server1 to localhost and
from localhost to server2 or something of that
2000 Aug 24
0
patch for a few things
This isn't related to the snapshot, but mention of it reminded me to submit
these changes.
I added a few things, and made a couple small changes; here's a list of
what the patch includes:
- adds a "-1" argument to ssh and ssh.1 to force protocol1, similar to
the existing "-2" argument.
- adds "-1" and "-2" to scp and scp.1 as well.
- adds
2016 Jan 19
6
FWD: [patch] scp + UTF-8
Hi,
Martijn sent the following patch to me in private and agreed that i post
it here.
In any other program in OpenBSD base, i'd probably agree with the
basic approach. Regarding OpenSSH, however, i worry whether wcwidth(3)
can be used. While wcwidth(3) is POSIX, it is not ISO C. Does
OpenSSH target platforms that don't provide wcwidth(3)? If so,
do you think the problem can be solved
2003 Oct 08
4
OS/390 openssh
Hello Steve, Hello OpenSSH-portable developers,
I am building OpenSSH for our (EBCDIC-based) BS2000 mainframe
operating system, and I noticed you do the same for OS/390.
Because my initial ssh port was based on IBM's OSS port (ssh-1.2.2
or some such), I thought it was fair enough to help with a little
co-operation; we might come up with a unified EBCDIC patch which could
be contributed to