LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-18-2006, 05:27 PM   #1
cabe
LQ Newbie
 
Registered: Aug 2006
Posts: 18

Rep: Reputation: 0
Webapp that emulates FTP?


I like to share files with my friends and sometimes like to access my computer back home when I'm on the road. I've been using FTP for this with some success, but problems occur when a good FTP client isn't avaliable on the machine I'm using. Some of my friends aren't the most computer savvy, either, so they'll even use IE to access my ftp..

Im wondering if there is any webapp that I can run on my webserver that will emulate FTP functionality. This would make my files a LOT more accessable. Come on guys, there's got to be something like this out there!
 
Old 09-18-2006, 05:39 PM   #2
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
In any web browser, you can just enter the URL with ftp:// instead of http:// to access an FTP server.
 
Old 09-18-2006, 05:40 PM   #3
cabe
LQ Newbie
 
Registered: Aug 2006
Posts: 18

Original Poster
Rep: Reputation: 0
Just found this:
http://www.rejetto.com/hfs/

I guess that's similar to what I'm looking for, except it doesn't run under Linux :-P. I'm also using Apache, so I'd like to find a webapp that will run under Apache with the functionality of the above program. Anyone have any ideas?
 
Old 09-18-2006, 05:43 PM   #4
cabe
LQ Newbie
 
Registered: Aug 2006
Posts: 18

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by macemoneta
In any web browser, you can just enter the URL with ftp:// instead of http:// to access an FTP server.
That's true, but there is no secure login that way, and uploading files becomes a problem if using Firefox for example. It would be nice to find a HTTP webapp that looks like ftp, but with secure login, and an upload button to allow uploading files.
 
Old 09-18-2006, 05:51 PM   #5
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
There is no such thing as secure login using FTP. All passwords are transmitted as clear text, which is the reason you should only use FTP for anonymous access.

For secure file transfer, you can use sftp, provided as part of the OpenSSH package. There are many packages that provide nice GUIs for sftp, for any platform. It is built into the desktops on most Linux distributions (for example, in Gnome Places->Connect to Server).
 
Old 09-18-2006, 06:19 PM   #6
cabe
LQ Newbie
 
Registered: Aug 2006
Posts: 18

Original Poster
Rep: Reputation: 0
I'm looking for a HTTP webapp that looks and works like a FTP client. This way, my friends don't have to download special programs to access my shared files. Letting them use the browser they already have is a lot more simple than telling them "go download this ftp client" and then teaching them how to use it every time I want to send a file.
 
Old 09-18-2006, 07:09 PM   #7
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
The problem with using a web app is that you have to trust the server providing the applet, otherwise you open yourself to a man in the middle harvesting of your host, userid and password.

Your Linux and Mac friends are all set (their OS comes with sftp support), but for your Windows friends I recommend WinSCP.

Alternatively, you can set-up a WebDAV service under Apache. That should be accessible to all.
 
Old 09-18-2006, 11:09 PM   #8
cabe
LQ Newbie
 
Registered: Aug 2006
Posts: 18

Original Poster
Rep: Reputation: 0
I think a php ftp client is what's going to work best for me. One client, net2ftp (www.net2ftp.com) looks ok.. Hopefully I can keep looking around and find something a bit more aesthetic.
 
Old 09-18-2006, 11:21 PM   #9
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
Really? You think giving your server name, along with a valid login and password to a random web site in Belgium is OK? Why not just post the information here, it will save a lot of time in getting your system rooted.
 
Old 09-18-2006, 11:43 PM   #10
cabe
LQ Newbie
 
Registered: Aug 2006
Posts: 18

Original Poster
Rep: Reputation: 0
No, I don't think it's ok, which is why I'm going to run the web ftp client on my own web server. I'd never give out my login/pass to that (or any similar) site.
 
Old 09-18-2006, 11:44 PM   #11
rickh
Senior Member
 
Registered: May 2004
Location: Albuquerque, NM USA
Distribution: Debian-Lenny/Sid 32/64 Desktop: Generic AMD64-EVGA 680i Laptop: Generic Intel SIS-AC97
Posts: 4,250

Rep: Reputation: 62
Maybe you should check out the AllPeers Firefox plugin.
 
Old 09-18-2006, 11:57 PM   #12
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
Look, it doesn't mean anything to me if your machine gets compromised, other than people will point and laugh and blame Linux.

At least protect the page that has the ftp login with SSL, so everything is not being transmitted in clear text. Remember that the userid and password will move from the web server to the ftp server in clear (readable) text, and protect that path with encryption as well, if it's on a different machine. Also remember that an ftp server that is Internet accessible is a very easy target. Make the logins and passwords highly secure (mixed case, numbers and special characters). You should probably consider moving the ftp server to a non-standard (non-privileged) high port number as well.

Good luck.
 
Old 09-19-2006, 12:15 AM   #13
Wim Sturkenboom
Senior Member
 
Registered: Jan 2005
Location: Roodepoort, South Africa
Distribution: Ubuntu 12.04, Antix19.3
Posts: 3,794

Rep: Reputation: 282Reputation: 282Reputation: 282
Quote:
Originally Posted by cabe
I like to share files with my friends and sometimes like to access my computer back home when I'm on the road. I've been using FTP for this with some success, but problems occur when a good FTP client isn't avaliable on the machine I'm using. Some of my friends aren't the most computer savvy, either, so they'll even use IE to access my ftp..
Any machine I have seen since Win95 was introduced has a good FTP client. It's called ftp and runs from the command line
For your friends who use a browser, just advise them on a FTP client.

Quote:
Originally Posted by macemoneta
There is no such thing as secure login using FTP. All passwords are transmitted as clear text, which is the reason you should only use FTP for anonymous access.

For secure file transfer, you can use sftp, provided as part of the OpenSSH package. There are many packages that provide nice GUIs for sftp, for any platform. It is built into the desktops on most Linux distributions (for example, in Gnome Places->Connect to Server).
Although I agree on the comment on security, sftp does not seem to be the most user friendly solution if you want to jail the user to his/her home directory. After reading up on that, I found an alternative in vsftpd with SSL. It only took me a bit of time to find a client for windows.
 
Old 09-19-2006, 12:27 AM   #14
cabe
LQ Newbie
 
Registered: Aug 2006
Posts: 18

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by macemoneta
Look, it doesn't mean anything to me if your machine gets compromised, other than people will point and laugh and blame Linux.

At least protect the page that has the ftp login with SSL, so everything is not being transmitted in clear text.
That's what I plan to do.
Quote:
Originally Posted by macemoneta
Remember that the userid and password will move from the web server to the ftp server in clear (readable) text, and protect that path with encryption as well, if it's on a different machine.
Good thing it's on the same machine.
Quote:
Originally Posted by macemoneta
Also remember that an ftp server that is Internet accessible is a very easy target.
Good thing it's not internet accessable.
Quote:
Originally Posted by macemoneta
Make the logins and passwords highly secure (mixed case, numbers and special characters).
My admin login will of course have a secure p/w, while my friends will use something easy for them to remember. That account will only have read access, and only in specified directories. I take that back, that account will have write access in a single uploads directory.
Quote:
Originally Posted by macemoneta
Good luck.
Thanks!
 
Old 09-19-2006, 12:35 AM   #15
cabe
LQ Newbie
 
Registered: Aug 2006
Posts: 18

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Wim Sturkenboom
Any machine I have seen since Win95 was introduced has a good FTP client. It's called ftp and runs from the command line
For your friends who use a browser, just advise them on a FTP client.
The problem is that my friends don't know what the command line is. Recommending a FTP clint has not worked for the most part. Some of them aren't even willing to download a FTP client. For the ones who have been, I've had to walk them through the whole procedure of installing it only to have them give up and use a web browser anyway. Then they complain when they can't get Firefox to download a whole directory at once.

My goal is something that's totally self explanatory and idiot proof. It seems my friends' preferred method of accessing my shared files is a web browser, and since web browsers do http better than ftp, I believe my solution is going to involve a webserver.

Last edited by cabe; 09-19-2006 at 12:41 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
when I use ftp://user@ftp.blah.com it works. But when I type just ftp.blah.com says.. hunterhunter Linux - General 15 03-05-2014 09:12 AM
3d desktop or bumptop "emulates real wold document behaviour" Gogul General 7 06-27-2006 03:19 AM
FTP Server Up and running... how do I hide ftp users from local login screen? joe1031 Mandriva 2 03-18-2005 04:24 PM
problem with ftp on mandrake 10.1 Official, ftp speeds system wide (anybody noticed?) equinox Mandriva 15 11-10-2004 02:07 PM
how can I restrict ftp users listing files from a pure-ftp server adrianmak Linux - Networking 2 12-31-2002 08:23 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 05:12 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration