├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── ble_advertising.py ├── bluetooth.pyi ├── client ├── MANIFEST.in ├── README.md ├── example1.png ├── example2.png ├── example3.png ├── example4.png ├── example5.png ├── example6.png ├── setup.py └── tepracli │ ├── __init__.py │ ├── __main__.py │ └── assets │ └── ss3.ttf.gz ├── config.json ├── doc ├── reverse_engineering.md └── sniffed_packets.pcapng ├── example ├── genreq.py ├── hello.bin ├── hello.sh └── pic2bin.py ├── main.py ├── requirements.dev.txt ├── tepra.jpg ├── tepra.py ├── time.pyi ├── typ1ng.py └── wifi.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/README.md -------------------------------------------------------------------------------- /ble_advertising.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/ble_advertising.py -------------------------------------------------------------------------------- /bluetooth.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/bluetooth.pyi -------------------------------------------------------------------------------- /client/MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include tepracli/assets *.ttf.gz 2 | -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/client/README.md -------------------------------------------------------------------------------- /client/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/client/example1.png -------------------------------------------------------------------------------- /client/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/client/example2.png -------------------------------------------------------------------------------- /client/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/client/example3.png -------------------------------------------------------------------------------- /client/example4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/client/example4.png -------------------------------------------------------------------------------- /client/example5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/client/example5.png -------------------------------------------------------------------------------- /client/example6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/client/example6.png -------------------------------------------------------------------------------- /client/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/client/setup.py -------------------------------------------------------------------------------- /client/tepracli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/client/tepracli/__init__.py -------------------------------------------------------------------------------- /client/tepracli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/client/tepracli/__main__.py -------------------------------------------------------------------------------- /client/tepracli/assets/ss3.ttf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/client/tepracli/assets/ss3.ttf.gz -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/config.json -------------------------------------------------------------------------------- /doc/reverse_engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/doc/reverse_engineering.md -------------------------------------------------------------------------------- /doc/sniffed_packets.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/doc/sniffed_packets.pcapng -------------------------------------------------------------------------------- /example/genreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/example/genreq.py -------------------------------------------------------------------------------- /example/hello.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/example/hello.bin -------------------------------------------------------------------------------- /example/hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/example/hello.sh -------------------------------------------------------------------------------- /example/pic2bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/example/pic2bin.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/main.py -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- 1 | black 2 | -------------------------------------------------------------------------------- /tepra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/tepra.jpg -------------------------------------------------------------------------------- /tepra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/tepra.py -------------------------------------------------------------------------------- /time.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/time.pyi -------------------------------------------------------------------------------- /typ1ng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/typ1ng.py -------------------------------------------------------------------------------- /wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puhitaku/tepra-lite-esp32/HEAD/wifi.py --------------------------------------------------------------------------------