Login through SFTP using username and password


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Login through SFTP using username and password
# 1  
Old 11-06-2010
Login through SFTP using username and password

Hi All,

I want to login to a server through SFTP by giving username and password, in an automated script.
I know that this can be done through public key authentication, but my requirement is to login ONLY through username and password.

I am using GNU/Linux server.

Please advise me !!! Thanks much....
# 2  
Old 11-06-2010
Was this requirement forced down your throat by crazed management? I've heard 'security' used as an excuse for the complete and total lack of it far too many times; storing passwords in plaintext form is a very bad idea. It's extremely hard to protect them.

If you absolutely have to, the 'expect' tool may help you, but it's a kludge.
# 3  
Old 11-06-2010
use an expect script or setup a ssh keys.
# 4  
Old 11-08-2010
Hi

Actually, i have a script which blocks an IP, which is trying to connect to a server making invalid login attempts.And these attempts are made n number of times in a single minute. This is causing in high CPU consumption and is causing problem to the valid users who are connecting to that server

To test this script, i want an other script which can make login attempts to a server continuosly and this should be through SFTP and that is the reason i need to give the password in the script.

Please please give me an idea to do this..

Thanks much !!!
# 5  
Old 11-08-2010
It sounds like what you really need is firewall to block your problem SFTP connections. You said you're using Linux, look into the firewall that comes with it. (which I think is iptables - I don't use linux firewalls so I'm not 100% certain anymore).
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Login failed username password is incorrect

Hi all, For one of our server (Windows 2008R2), we sometimes will received "login failed username password is incorrect" when login in as domain account (the username & password is correct). Only after a reboot of the server (using local account), we can login without the above error. Can... (2 Replies)
Discussion started by: beginningDBA
2 Replies

2. UNIX for Advanced & Expert Users

Change login password for SFTP Only ID

Hi All, I have an SFTP server where there are user id's created for vendors and given only SFTP access for them (eg: given below) jim.tran:x:10040:10008:abc.def@ghi.com:/dropbox:/bin/false They cannot login to the server via SSH and can only do an SFTP. These users are set up as jailed... (1 Reply)
Discussion started by: nathsaba
1 Replies

3. Shell Programming and Scripting

Password less login for sftp

Hi, I am using public key authentication for login into a remote sftp server (password less login). so i have set up a password less login according to this link . i have copied the content of my .pub file to remote server's authorized_keys2 file. i want to find out whether my .pub file... (2 Replies)
Discussion started by: Little
2 Replies

4. UNIX for Dummies Questions & Answers

Script to log in SFTP server [with username, password]

Hi, everyone, I am trying to write a script to login automatically using username and password to an sftp server (the key authentication has been disabled so I cannot use that method). I tried to search online for a solution and found a way using "expect" but my boss does not want me to use... (4 Replies)
Discussion started by: warmboy610
4 Replies

5. Red Hat

Chroot sftp users, remote sftp login shows wrong timestamp on files

Hello, I have a weird issue, I have RHEL 5.7 running with openssh5.2 where sftpgroup OS group is chroot. I see the difference difference in timestamp on files, when I login via ssh and SFTP, I see four hour difference, is something missing in my configuration. #pwd... (8 Replies)
Discussion started by: bobby320
8 Replies

6. Shell Programming and Scripting

Username and password

Hi I am new to using unix and am struggling with a script i am writing. What i am trying to do is get a user to enter a username, check the original file i created with username and pin to see if their is a corresponding entry. Next ask the user to enter the pin and see if this matches... (5 Replies)
Discussion started by: somersetdan
5 Replies

7. Shell Programming and Scripting

SFTP with '@' in username

Hi All, Good morning !! I have to connect to a sftp server using following details, 1) username contains "@" as part of it. eg: xyz@abc@servername 2) We have to use password to connect to the server. Could you please advise the solution for this? Thanks in advance Regards, Mohan (1 Reply)
Discussion started by: mohanpadamata
1 Replies

8. UNIX for Advanced & Expert Users

SFTP username

Hi , I have an issue with sftp username as i have @ character in the username. eg: username=abc@123 when i do as below, sftp abc@123@servername # Its taking only 123@servername . Also, i tried following options, sftp abc\@123@servername sftp 'abc\@123'@servername Please... (2 Replies)
Discussion started by: mohanpadamata
2 Replies

9. UNIX for Dummies Questions & Answers

How can i hide username/password

hi all, i run sqlplus command on unix(HP-UX) like "sqlplus username/password@serverA @deneme.sql" but when someone run "ps -ef | grep sqlplus", it can see my username and password :( How can i hide username and password. thanx. (1 Reply)
Discussion started by: temhem
1 Replies

10. Shell Programming and Scripting

username password in script

Can we write a script to telnet to a unix server from unix with the username and password hardcoded in the script?? something like ssh a@b -p password ??? (5 Replies)
Discussion started by: roshanjain2
5 Replies
Login or Register to Ask a Question