Hi Andreas,

In the release candidate code, in the file
core/controllers/deamons/proxy.py, in the class SSLConnectionFile, i found
that the buffer to read was fixed on 4096 instead of the amount given as a
parameter.
We use it to transport signed SAML requests which are bigger then 4096.
shouldn't it be the amount parameter?

    def read( self, amount ):
        if self._readBuf == '':
-            self._readBuf = self._sslCon.recv(4096)
+            self._readBuf = self._sslCon.recv(amount)

        result, self._readBuf = self._readBuf[0:amount],
self._readBuf[amount:]
        return result


Greetz,

David
------------------------------------------------------------------------------
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
_______________________________________________
W3af-develop mailing list
W3af-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/w3af-develop

Reply via email to