Jump to content
UBot Underground

Have You Tried Ftp In Ubot With Windows 8.1?


Recommended Posts

I have opened a bug http://tracker.ubotstudio.com/issues/596 but would like to know if anyone of you can confirm the problem. FTP is a key component in a bot I'm working on. It would be a bummer if it didn't work in the latest and "greatest" Windows :-)

 

My bot connects fine in Windows 7, but when I try the same under Windows 8.1 it fails to connect. 

Link to post
Share on other sites

I have opened a bug http://tracker.ubotstudio.com/issues/596 but would like to know if anyone of you can confirm the problem. FTP is a key component in a bot I'm working on. It would be a bummer if it didn't work in the latest and "greatest" Windows :-)

 

My bot connects fine in Windows 7, but when I try the same under Windows 8.1 it fails to connect. 

 

Does it not work in the compiled state or within the editing mode?

Link to post
Share on other sites

If you are really in a hurry then maybe $shell with response might be the solution for you, it comes with the communication plugin.
That way you can install another ftp client and use it as if you where using it trought the command line, other solution would be to install cURL and run $shell with response. Great thing about cURL is it supports almost all network protocols and you could even use proxies. So if you have no time to wait on Microsoft to fix it then this would get you forward with your project.

 

Here are a few cURL ftp examples you could run with $shell with response:

Get a FTP directory listing

curl ftp://username:password@example.com

To get the listing of a different directory append the directory name to the URL.

curl ftp://username:password@example.com/directory/

Upload a file to a remote directory using FTP

curl -T uploadfilename -u username:password ftp://sitename.com/myfile

The ‘uploadfilename’ file will be copied to the remote site and named ‘myfile’. If the destination filename is eliminated the file will be copied with the original name. By default the file will be copied to the root directory. To copy to some other directory specify the directory after the site name;e.g.

curl -T uploadfilename -u username:password ftp://sitename.com/directory/myfile

Edited by diskwizz
  • Like 1
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...