Skip to content

Commit

Permalink
chore: Fix a typo (period at a wrong place) (#1091)
Browse files Browse the repository at this point in the history
* chore: Fix a typo (period at a wrong place)

```
Adding SQL inline comments will be.

'/**/UNION/**/SELECT/**/password/**/FROM/**/Users/**/WHERE/**/name/**/LIKE/**/'admin'--
```

--- The sentence ends with a period, (.) even though there's an example query right after it. This commit removes the period, and places a colon.


---------

Co-authored-by: Rick M <kingthorin@users.noreply.github.com>
  • Loading branch information
soobinrho and kingthorin authored Aug 14, 2023
1 parent 1aac919 commit a48807d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ Adding SQL inline comments can also help the SQL statement to be valid and bypas

`' UNION SELECT password FROM Users WHERE name='admin'--`

Adding SQL inline comments will be.
Adding SQL inline comments will be:

`'/**/UNION/**/SELECT/**/password/**/FROM/**/Users/**/WHERE/**/name/**/LIKE/**/'admin'--`

Expand Down

0 comments on commit a48807d

Please sign in to comment.