├── .gitignore ├── LICENSE ├── README.md ├── args.py ├── ccat.png ├── ccat.py ├── checks ├── __init__.py ├── aaa.py ├── arp_inspection.py ├── arp_proxy.py ├── cdp.py ├── console_vty.py ├── dhcp_snooping.py ├── dtp.py ├── exec.py ├── ip_global.py ├── ipv6.py ├── lldp.py ├── mode.py ├── mop.py ├── ntp.py ├── port_security.py ├── services.py ├── source_guard.py ├── storm_control.py ├── stp.py ├── stp_global.py ├── users.py └── vtp.py ├── configuraton ├── HR_startup-config.cfg ├── MANAGEMENT_startup-config.cfg ├── MSK_startup-config.cfg └── SERVERS_startup-config.cfg ├── display.py ├── example ├── 1.txt ├── ipv6.txt └── vlmap.json ├── graph.py ├── harvester.py ├── interface_type.py ├── parsing.py ├── parsing_checks ├── __init__.py ├── aaa.py ├── http.py ├── ip_iface.py ├── lines.py ├── port_security.py ├── ssh.py ├── storm_control.py ├── stp_global.py ├── username.py └── vtp.py ├── requirements.txt └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/README.md -------------------------------------------------------------------------------- /args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/args.py -------------------------------------------------------------------------------- /ccat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/ccat.png -------------------------------------------------------------------------------- /ccat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/ccat.py -------------------------------------------------------------------------------- /checks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/__init__.py -------------------------------------------------------------------------------- /checks/aaa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/aaa.py -------------------------------------------------------------------------------- /checks/arp_inspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/arp_inspection.py -------------------------------------------------------------------------------- /checks/arp_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/arp_proxy.py -------------------------------------------------------------------------------- /checks/cdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/cdp.py -------------------------------------------------------------------------------- /checks/console_vty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/console_vty.py -------------------------------------------------------------------------------- /checks/dhcp_snooping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/dhcp_snooping.py -------------------------------------------------------------------------------- /checks/dtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/dtp.py -------------------------------------------------------------------------------- /checks/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/exec.py -------------------------------------------------------------------------------- /checks/ip_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/ip_global.py -------------------------------------------------------------------------------- /checks/ipv6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/ipv6.py -------------------------------------------------------------------------------- /checks/lldp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/lldp.py -------------------------------------------------------------------------------- /checks/mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/mode.py -------------------------------------------------------------------------------- /checks/mop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/mop.py -------------------------------------------------------------------------------- /checks/ntp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/ntp.py -------------------------------------------------------------------------------- /checks/port_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/port_security.py -------------------------------------------------------------------------------- /checks/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/services.py -------------------------------------------------------------------------------- /checks/source_guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/source_guard.py -------------------------------------------------------------------------------- /checks/storm_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/storm_control.py -------------------------------------------------------------------------------- /checks/stp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/stp.py -------------------------------------------------------------------------------- /checks/stp_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/stp_global.py -------------------------------------------------------------------------------- /checks/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/users.py -------------------------------------------------------------------------------- /checks/vtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/checks/vtp.py -------------------------------------------------------------------------------- /configuraton/HR_startup-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/configuraton/HR_startup-config.cfg -------------------------------------------------------------------------------- /configuraton/MANAGEMENT_startup-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/configuraton/MANAGEMENT_startup-config.cfg -------------------------------------------------------------------------------- /configuraton/MSK_startup-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/configuraton/MSK_startup-config.cfg -------------------------------------------------------------------------------- /configuraton/SERVERS_startup-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/configuraton/SERVERS_startup-config.cfg -------------------------------------------------------------------------------- /display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/display.py -------------------------------------------------------------------------------- /example/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/example/1.txt -------------------------------------------------------------------------------- /example/ipv6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/example/ipv6.txt -------------------------------------------------------------------------------- /example/vlmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/example/vlmap.json -------------------------------------------------------------------------------- /graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/graph.py -------------------------------------------------------------------------------- /harvester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/harvester.py -------------------------------------------------------------------------------- /interface_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/interface_type.py -------------------------------------------------------------------------------- /parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/parsing.py -------------------------------------------------------------------------------- /parsing_checks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/parsing_checks/__init__.py -------------------------------------------------------------------------------- /parsing_checks/aaa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/parsing_checks/aaa.py -------------------------------------------------------------------------------- /parsing_checks/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/parsing_checks/http.py -------------------------------------------------------------------------------- /parsing_checks/ip_iface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/parsing_checks/ip_iface.py -------------------------------------------------------------------------------- /parsing_checks/lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/parsing_checks/lines.py -------------------------------------------------------------------------------- /parsing_checks/port_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/parsing_checks/port_security.py -------------------------------------------------------------------------------- /parsing_checks/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/parsing_checks/ssh.py -------------------------------------------------------------------------------- /parsing_checks/storm_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/parsing_checks/storm_control.py -------------------------------------------------------------------------------- /parsing_checks/stp_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/parsing_checks/stp_global.py -------------------------------------------------------------------------------- /parsing_checks/username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/parsing_checks/username.py -------------------------------------------------------------------------------- /parsing_checks/vtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/parsing_checks/vtp.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/requirements.txt -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostbits-security/ccat/HEAD/util.py --------------------------------------------------------------------------------