mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 23:55:01 -04:00
365c5ba395
When doing multi-part formposts, libcurl used a pseudo-random value that was seeded with time(). This turns out to be bad for users who formpost data that is provided with users who then can guess how the boundary string will look like and then they can forge a different formpost part and trick the receiver. My advice to such implementors is (still even after this change) to not rely on the boundary strings being cryptographically strong. Fix your code and logic to not depend on them that much! I moved the Curl_rand() function into the sslgen.c source file now to be able to take advantage of the SSL library's random function if it provides one. If not, try to use the RANDOM_FILE for seeding and as a last resort keep the old logic, just modified to also add microseconds which makes it harder to properly guess the exact seed. The formboundary() function in formdata.c is now using 64 bit entropy for the boundary and therefore the string of dashes was reduced by 4 letters and there are 16 hex digits following it. The total length is thus still the same. Bug: http://curl.haxx.se/bug/view.cgi?id=1251 Reported-by: "Floris"
58 lines
1016 B
Plaintext
58 lines
1016 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP POST
|
|
</keywords>
|
|
</info>
|
|
|
|
# Server-side
|
|
<reply>
|
|
<data>
|
|
HTTP/1.1 100 Continue swsclose
|
|
Silly-header: yeeeees
|
|
|
|
</data>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
http
|
|
</server>
|
|
<name>
|
|
HTTP multipart formpost with only a 100 reply
|
|
</name>
|
|
<command>
|
|
http://%HOSTIP:%HTTPPORT/158 -F name=daniel
|
|
</command>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<strip>
|
|
^User-Agent:.*
|
|
^Content-Type: multipart/form-data.*
|
|
^-----------------------.*
|
|
</strip>
|
|
<protocol>
|
|
POST /158 HTTP/1.1
|
|
User-Agent: curl/7.11.2-CVS (i686-pc-linux-gnu) libcurl/7.11.2-CVS OpenSSL/0.9.6b ipv6 zlib/1.1.4 GSS
|
|
Host: %HOSTIP:%HTTPPORT
|
|
Accept: */*
|
|
Content-Length: 145
|
|
Expect: 100-continue
|
|
Content-Type: multipart/form-data; boundary=----------------------------4f12fcdaa3bc
|
|
|
|
------------------------------4f12fcdaa3bc
|
|
Content-Disposition: form-data; name="name"
|
|
|
|
daniel
|
|
------------------------------4f12fcdaa3bc--
|
|
</protocol>
|
|
<errorcode>
|
|
52
|
|
</errorcode>
|
|
</verify>
|
|
</testcase>
|