wvdongen

Results 10 issues of wvdongen

I'm using a text that contains a the following url: https://www.owasp.org/index.php/Cross-site_Scripting_(XSS). However, the wrong link is created because ")" is not matched in the regex. See screenshot: ![image](https://user-images.githubusercontent.com/1862615/59202526-f69aa600-8b9c-11e9-9b8b-53879d017b5a.png)

bug

Although perhaps rarely used, I think it would also be nice to also support IPv6 URLs: ```sh echo "http://[2a07:3500:11a0:320::22]:8080 and http://10.0.0.1:8080" | urlscan -n ```` Currently only detects `http://10.0.0.1:8080`. Just...

**Describe the bug** Setting the cursor in the alt text section of an image incorrectly activates the link button in the toolbar. **To Reproduce** `![Alt text](https://example.com/example.jpg)` set cursor in alt...

Bug

The current 'xss' option is very easily bypassed and offers no security, a simple example: ``` [a](JaVaScRiPt:alert(1)) ``` Therefore use Parsedown's safemode functionality: https://github.com/erusev/parsedown#security

Hi, Please add filename output support. There have been multiple pull requests for this: * https://github.com/guelfoweb/knock/pull/22 * https://github.com/guelfoweb/knock/pull/12 Thanks in advance

Queries fired by using the `with` method are not logged. For example, the query below will not show any query related to fetching the `users`: ```php $post->comments()->with('users')->showSql()->get() ```

Option groups for select elements do not work ```php {!! Form::select('cars', 'Choose your Car')->options([ 'Swedish Cars' => [1 => 'Volvo', 2 => 'Saab'], 'German Cars' => [1 => 'Mercedes', 2...

Add Laravel 6 support

## Excluding sections Sometimes you might not want HTML comments wrapping around `@yield` directives. For example when they're used within HTML attributes or meta tags. In these cases you can...