Florian Best

Results 155 issues of Florian Best

It looks https://github.com/SerkanSipahi/app-decorators/blob/master/src/libs/stylesheet.js#L481 is vulnerable to Cross Site Scripting (XSS) as the href link is not HTML attribute-value encoded. It looks https://github.com/SerkanSipahi/app-decorators/blob/master/src/helpers/queryString.js#L96 is vulnerable to URL injection as the values...

if "require('https://piwik.foo/');" exists in the code one cannot build the documentation.

Hello, I experience the following bug: libapache2-mod-wsgi 4.3.0-1 apache2 2.4.10-10+deb8u12 Apache configuration: ``` ServerAdmin webmaster@localhost DocumentRoot /var/www/files/ AssignUserId spaceone spaceone FallbackResource /python/ WSGIScriptAliasMatch /python(/.*) /var/www/wsgi_test.py$1 ``` wsgi_test.py: ``` def application(environ,...

There should be way more examples for bash string usage: `${foo:2}` `${foo%…}` `${foo#…}` `${foo##…}` etc.

Hunks in a unified diff start with ` ` or `+` or `-`. The indentLine plugin should respect this and start the indentation detection at the second character.

How can I disable that the indenLine char is shown for space characters starting a new indentation level but does not fit the 4 spaces. For example: ``` » for...

``` $ foresee php linux rand -o 60 16 19 30 44 3 50 51 54 42 61 5 41 16 33 60 Warning: Some predictions my be incorrect. Traceback...

Detect invalid tabs before inline comments: ``` printf 'foo = "bar" \t# comment\n' | pycodestyle - stdin:1:12: E261 at least two spaces before inline comment printf 'foo = "bar"\t #...

If anything precedes with two spaces, e.g. the indentation of a multiline string flake8 detects an E117 for the next correctly indented line (if indentation uses tabs): ``` TEST_STRING =...

``` printf 'foo = "bar" \t# comment\n' | pep8 - ``` I expected the following output but got nothing: ``` stdin:1:12: E261 at least two spaces before inline comment ```