├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── agents.txt ├── cases.xml ├── home.txt ├── panoptic.py ├── thirdparty ├── __init__.py └── socks │ ├── LICENSE │ ├── __init__.py │ └── socks.py └── versions.ini /.gitattributes: -------------------------------------------------------------------------------- 1 | *.py text eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | output/ 3 | *~ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightos/Panoptic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightos/Panoptic/HEAD/README.md -------------------------------------------------------------------------------- /agents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightos/Panoptic/HEAD/agents.txt -------------------------------------------------------------------------------- /cases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightos/Panoptic/HEAD/cases.xml -------------------------------------------------------------------------------- /home.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightos/Panoptic/HEAD/home.txt -------------------------------------------------------------------------------- /panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightos/Panoptic/HEAD/panoptic.py -------------------------------------------------------------------------------- /thirdparty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/socks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightos/Panoptic/HEAD/thirdparty/socks/LICENSE -------------------------------------------------------------------------------- /thirdparty/socks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/socks/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightos/Panoptic/HEAD/thirdparty/socks/socks.py -------------------------------------------------------------------------------- /versions.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightos/Panoptic/HEAD/versions.ini --------------------------------------------------------------------------------