bug-wget
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Bug-wget] Wget - acess list bypass / race condition PoC


From: Giuseppe Scrivano
Subject: Re: [Bug-wget] Wget - acess list bypass / race condition PoC
Date: Sun, 21 Aug 2016 18:23:52 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux)

Hi Eli,

Eli Zaretskii <address@hidden> writes:

>> From: Giuseppe Scrivano <address@hidden>
>> Date: Sun, 21 Aug 2016 15:26:58 +0200
>> Cc: "address@hidden" <address@hidden>,
>>      Dawid Golunski <address@hidden>,
>>      "address@hidden" <address@hidden>
>> 
>>  #else /* def __VMS */
>> -          *fp = fopen (hs->local_file, "wb");
>> +          if (opt.delete_after
>> +            || opt.spider /* opt.recursive is implicitely true */
>> +            || !acceptable (hs->local_file))
>> +            {
>> +              *fp = fdopen (open (hs->local_file, O_CREAT | O_TRUNC | 
>> O_WRONLY, S_IRUSR | S_IWUSR), "wb");
>> +            }
>
> For this to work on MS-Windows, the 'open' call should use O_BINARY,
> in addition to the other flags.  Otherwise, the "b" in "wb" of
> 'fdopen' will be ignored by the MS runtime.

thanks for the review, I am going to amend it to the patch.

Giuseppe



reply via email to

[Prev in Thread] Current Thread [Next in Thread]