http://www.perlmonks.org?node_id=877293


in reply to Re: Secure upload without account in remote server
in thread Secure upload without account in remote server

Thank you, i get rid of suidperl. But i have some "thinking" bug in power. So, i can't make a script which scp-s files to remote server in other user rights. Should i?

Minimized script:

#!/usr/bin/perl use strict; use warnings; use Net::SCP qw( scp iscp ); my $scp = Net::SCP -> new( '192.168.1.3', 'X' ); $scp->put( 'file.jpg' ) or die $scp->{errstr};

Even showing effective user (with POSIX) and effective group as user X and needed group, scp is still runned under runner user. (This i guess, because i don't see any debugging interface in Net::SCP. And if i try make scp with "system 'scp -v ...'" i see it still does not use setuid/setgid)

So i still have no solution to scp files to remote server without explicitly giving permissions to users.
Nġnda, WK