Updated WordPress Plugin Security Testing Cheat Sheet (markdown)

Erwan
2021-07-29 07:49:26 +02:00
parent d32ad315ba
commit ab44e136a3

@@ -33,7 +33,7 @@ The [Log HTTP Requests](https://wordpress.org/plugins/log-http-requests/) WordPr
### DISALLOW_UNFILTERED_HTML
When doing dynamic testing for XSS the following setting in the wp-config.php file may reduce false positive results as it prevents administrative and editor users from being able to embed/execute JavaScript/HTML, which by default they are permitted to do.
When doing dynamic testing for XSS the following setting in the wp-config.php file may reduce false positive results as it prevents administrative and editor users from being able to embed/execute JavaScript/HTML, [which by default they are permitted to do](https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/#why-are-some-users-allowed-to-post-unfiltered-html).
```
define( 'DISALLOW_UNFILTERED_HTML', true );