├── .gitignore ├── LICENSE.txt ├── README.md ├── WallofFlippers.py ├── ascii ├── ctf_normal.txt ├── normal.txt └── small.txt ├── requirements.txt ├── utils ├── bluetooth_utils.py ├── wof_bleexploitation.py ├── wof_cache.py ├── wof_capture.py ├── wof_display.py ├── wof_install.py └── wof_library.py └── wof.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | __pycache__ 3 | Flipper.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/README.md -------------------------------------------------------------------------------- /WallofFlippers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/WallofFlippers.py -------------------------------------------------------------------------------- /ascii/ctf_normal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/ascii/ctf_normal.txt -------------------------------------------------------------------------------- /ascii/normal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/ascii/normal.txt -------------------------------------------------------------------------------- /ascii/small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/ascii/small.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/bluetooth_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/utils/bluetooth_utils.py -------------------------------------------------------------------------------- /utils/wof_bleexploitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/utils/wof_bleexploitation.py -------------------------------------------------------------------------------- /utils/wof_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/utils/wof_cache.py -------------------------------------------------------------------------------- /utils/wof_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/utils/wof_capture.py -------------------------------------------------------------------------------- /utils/wof_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/utils/wof_display.py -------------------------------------------------------------------------------- /utils/wof_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/utils/wof_install.py -------------------------------------------------------------------------------- /utils/wof_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberartemio/Wall-of-Flippers/HEAD/utils/wof_library.py -------------------------------------------------------------------------------- /wof.sh: -------------------------------------------------------------------------------- 1 | source .venv/bin/activate 2 | python3 WallofFlippers.py 3 | --------------------------------------------------------------------------------