1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

More better docs

This commit is contained in:
Brown 2020-06-19 11:57:34 -04:00
parent 51202c75ea
commit 67f7079c1a
2 changed files with 30 additions and 2 deletions

View File

@ -6,6 +6,28 @@ Nobody likes false-positives!
There are a number of ways you can prevent them:
## Removing taints
Some operations remove taints from data.
For example, wrapping `$_GET['name']` in an `htmlentities` call prevents cross-site-scripting attacks.
Psalm allows you to remove taints via an annotation:
```php
<?php // trackTaints
function echoVar(string $str) : void {
/**
* @psalm-taint-remove html
*/
$str = preg_replace('/[^a-z]/', '', $str);
echo $str;
}
echoVar($_GET["text"]);
```
## Specializing taints in functions
For functions, methods and classes you can use the `@psalm-taint-specialize` annotation.

View File

@ -4,7 +4,13 @@ You can define your own taint sinks two ways
## Using a docblock annotation
`@psalm-taint-sink`
The `@psalm-taint-sink <taint-type> <param-name>` annotation allows you to define a taint sink.
Any tainted value matching the given [taint type](index.md#taint-types) will be reported as an error by Psalm.
### Example
Here the `PDOWrapper` class has an `exec` method that should not recieve tainted SQL, so we can prevent its insertion:
```php
<?php
@ -19,5 +25,5 @@ class PDOWrapper {
## Using a Psalm plugin
or with a plugin
TODO