├── .gitignore ├── LICENSE ├── Plugins ├── .gitignore ├── base.py ├── disabled │ ├── mtrsh.py │ └── mtrtools.py ├── dnstools.py ├── lookingHouse.py ├── mudfish.py ├── pingpe.py ├── pingsx.py ├── telephone.py └── vultr.py ├── README.md ├── config.example.json ├── mapping.json └── snake.py /.gitignore: -------------------------------------------------------------------------------- 1 | test.py 2 | config.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugins/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /Plugins/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/Plugins/base.py -------------------------------------------------------------------------------- /Plugins/disabled/mtrsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/Plugins/disabled/mtrsh.py -------------------------------------------------------------------------------- /Plugins/disabled/mtrtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/Plugins/disabled/mtrtools.py -------------------------------------------------------------------------------- /Plugins/dnstools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/Plugins/dnstools.py -------------------------------------------------------------------------------- /Plugins/lookingHouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/Plugins/lookingHouse.py -------------------------------------------------------------------------------- /Plugins/mudfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/Plugins/mudfish.py -------------------------------------------------------------------------------- /Plugins/pingpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/Plugins/pingpe.py -------------------------------------------------------------------------------- /Plugins/pingsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/Plugins/pingsx.py -------------------------------------------------------------------------------- /Plugins/telephone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/Plugins/telephone.py -------------------------------------------------------------------------------- /Plugins/vultr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/Plugins/vultr.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/README.md -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/config.example.json -------------------------------------------------------------------------------- /mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/mapping.json -------------------------------------------------------------------------------- /snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne00n/Snake-Ping/HEAD/snake.py --------------------------------------------------------------------------------