Note: I did not author this, i found it somehwere.
- Tools
- Most common paths to AD compromise
- [GPO - Pivoting with Local Admin
| #!/usr/bin/env python | |
| # Dependencies: | |
| # - arrow | |
| # - shodan | |
| # - ImageMagick | |
| # | |
| # Installation: | |
| # sudo easy_install arrow shodan | |
| # sudo apt-get install imagemagick | |
| # |
Note: I did not author this, i found it somehwere.
| # 20240215 | |
| # shyft | |
| # script to prove my wife wrong about how much time I'm spending at my computer in the eventing. | |
| # use with caution... may not be worth it to you... | |
| # relies on https://github.com/ActivityWatch/activitywatch/ "Records what you do so that you can know how you've spent your time." | |
| # grown from https://github.com/ActivityWatch/aw-client/blob/master/examples/time_spent_today.py | |
| import sys | |
| from datetime import date, datetime, time, timedelta, timezone | |
| from rich import print | |
| import socket |
| # include or add this to your .zshrc file | |
| # curl -fsSL https://gist.githubusercontent.com/ShyftXero/e2b5c02108ce426e426f872cd3d47cb0/raw/uv_venv.sh >> ~/.zshrc | |
| . "$HOME/.cargo/env" | |
| #ensure uv is installed https://astral.sh/uv | |
| if ! command -v uv &> /dev/null | |
| then | |
| echo "uv could not be found. installing... " | |
| curl -LsSf https://astral.sh/uv/install.sh | sh | |