├── .idea ├── .gitignore ├── NTPddos.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── attacker.py ├── logo.py ├── npcap-1.80.exe ├── requirements.txt └── scanner.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # 默认忽略的文件 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/NTPddos.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/.idea/NTPddos.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/README.md -------------------------------------------------------------------------------- /attacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/attacker.py -------------------------------------------------------------------------------- /logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/logo.py -------------------------------------------------------------------------------- /npcap-1.80.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/npcap-1.80.exe -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/requirements.txt -------------------------------------------------------------------------------- /scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzidoPP/NTP-DDOS/HEAD/scanner.py --------------------------------------------------------------------------------