Giter VIP home page Giter VIP logo

filezilla's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

filezilla's Issues

DARK MAGIC: Did not install malware.

I think theres a problem. I downloaded and built this and it didn't install Malware! What is the meaning of this! How will I compromise my machine and get infected with ask.com without it!

(just kidding. Be good to see a build available in releases however)

i will edit source code filezilla and compile

i will edit source code filezilla and compile .
i install msys2 and dependencies all but when i run commande " make " i got error

make: *** No targets specified and no makefile found. Stop.

my question is how to i can make new .exe file from source code compile on msys2 ?
and how to i can find location code for login client event ?
and how to i can resolve this problem for make ?

thanks all my skype is tarraharshad if u can help me plz send me message. thanks

Not able to run configure script

After running autogen.sh script i ran the configure script and it showed me the error
checking for wxWidgets version >= 2.8.12 (--unicode=yes --universal=no)... yes (version 3.0.4)
checking for wxWidgets static library... no
configure: error: You need to use wxWidgets 2.8.x to compile this program.
if i have version 3.0.4 then why it is telling me to use 2.8.x
I have kali linux rolling as my os and i have wx-3.0/wx in my /usr/include

do not treat .. correctly

I tried to upload some files and folders. Those do not excess 10 MB, but it add a lot of files into the queue over 3 GB.
Then it used up the RAM and start to use swap, (using 8GB of memory in total).

I tried redo the process with some files and folder, same bug.
I tried to update the files manually (do not select folders) then it's fine.

It seems to recursively include all 'subfolders' including .. ...

Versions

Name Version
FileZilla 3.29.0
OS Archlinux
Kernel 4.14.8-1-ARCH

Submit to the Windows Store

Refer Filezilla Appx Package here.

Here is Desktop to Appx Guide to convert Win32/.NET apps to AppX Package.

I know Filezilla is simple without having install/uninstall problems that occur in some big applications but It is easy to let the store handle the update process than all by yourself. You can also upload the AppX Package to a http server (like you always do), no need to submit to the store if you prefer that way.

WinRT is maturing fast, in a few years it could very well replace Win32 . It is easier to install directly from the store and benefit from all its features like Crash Reporting , Feedback Hub , Analytics ,
Differential Downloads , etc...

Please consider the idea!
Thanks

Buffer overflow when wrongly using `memcpy`

len is the length of str, not including the null character. So the sizeof(data) is len. According to the reference of memcpy, we need to make sure the 1st parameter of memcpy is larger than strlen(2nd parameter)+1(1 means the null-character.) So we should change L1403 to char* data = new char[len+1]; data[len]=0;

To avoid overflows, the size of the array pointed by destination shall be long enough to contain the same C string as source (including the terminating null character), and should not overlap in memory with source.

const int len = strlen(str);
char* data = new char[len];
memcpy(data, str, len);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.