├── .DS_Store ├── .github └── workflows │ └── pytest.yaml ├── Dockerfile ├── README.md ├── cisco-phone-query.sh ├── requirements.txt ├── tests ├── .DS_Store ├── cisco-CP-7811.html ├── cisco-CP-7832.html ├── cisco-CP-7841.html ├── cisco-CP-7940G.html ├── cisco-CP-8811.html ├── cisco-CP-8841.html ├── cisco-CP-8845.html ├── cisco-CP-8865.html ├── cisco-CP-8945.html ├── cisco-IPC.html ├── cisco_CP-6921.html ├── cisco_CP-7945G.html ├── cisco_CP-8851.html ├── cisco_CP-DX80.html └── test_parser.py └── thief.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/pytest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/.github/workflows/pytest.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/README.md -------------------------------------------------------------------------------- /cisco-phone-query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/cisco-phone-query.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | bs4 3 | alive_progress -------------------------------------------------------------------------------- /tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/.DS_Store -------------------------------------------------------------------------------- /tests/cisco-CP-7811.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco-CP-7811.html -------------------------------------------------------------------------------- /tests/cisco-CP-7832.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco-CP-7832.html -------------------------------------------------------------------------------- /tests/cisco-CP-7841.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco-CP-7841.html -------------------------------------------------------------------------------- /tests/cisco-CP-7940G.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco-CP-7940G.html -------------------------------------------------------------------------------- /tests/cisco-CP-8811.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco-CP-8811.html -------------------------------------------------------------------------------- /tests/cisco-CP-8841.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco-CP-8841.html -------------------------------------------------------------------------------- /tests/cisco-CP-8845.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco-CP-8845.html -------------------------------------------------------------------------------- /tests/cisco-CP-8865.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco-CP-8865.html -------------------------------------------------------------------------------- /tests/cisco-CP-8945.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco-CP-8945.html -------------------------------------------------------------------------------- /tests/cisco-IPC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco-IPC.html -------------------------------------------------------------------------------- /tests/cisco_CP-6921.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco_CP-6921.html -------------------------------------------------------------------------------- /tests/cisco_CP-7945G.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco_CP-7945G.html -------------------------------------------------------------------------------- /tests/cisco_CP-8851.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco_CP-8851.html -------------------------------------------------------------------------------- /tests/cisco_CP-DX80.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/cisco_CP-DX80.html -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /thief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/SeeYouCM-Thief/HEAD/thief.py --------------------------------------------------------------------------------