Vincent Dauce

Results 51 comments of Vincent Dauce

Good catch! The fix was actually made for a big release that never got published, and I totally missed porting it to the current production version. I’ll make sure it’s...

Thank you for your feedback. Yes, it is possible to provide a method more secure than uniqid, but we need to determine which one to use as there are many...

Maybe we could use `hash('xxh128', $value)` https://securinglaravel.com/security-tip-stop-using-md5-and-sha-1/?ref=securing-laravel-newsletter

Thank you for reporting this bug. Indeed, I understand the issue you're facing with character encoding in HTML emails. Here are two possible solutions to address this problem: **Avoid UTF-8...

I have also encountered the `Facebook\WebDriver\Exception\UnknownCommandException` which does not seem to be properly caught. ``` In WebDriverException.php line 144: [Facebook\WebDriver\Exception\UnknownCommandException] Unable to find handler for (DELETE) /session/900d16a830dcd831ec90585c802587 8e Exception trace:...

Hello, Thanks for this very precise bug report. It appears that this email is not valid according to **RFC 2045**, since the `Content-Type` header is present but has no value,...

Thank you for reporting this issue. The issue is caused by PHP's **mailparse** extension incorrectly parsing `--Part--More` as a valid boundary. Per RFC 2046, only whitespace is allowed after `--boundary--`,...

It's string|array|false: - Most of the time, it's a string representing the raw header. - If the header is present multiple times, it's an array of strings. - Otherwise, it...