├── .gitignore ├── README.md ├── csDDos.py ├── csFakeShell.py ├── csIntruder.py ├── dic ├── computer_name_dic.txt ├── password.txt ├── process_name_dic.txt └── user_name_dic.txt ├── img ├── 1.png ├── 2.png ├── 3.png ├── 33.png └── 4.png └── tool ├── DumpKeys.java ├── beacon_utils.py └── parse_beacon_config.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/README.md -------------------------------------------------------------------------------- /csDDos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/csDDos.py -------------------------------------------------------------------------------- /csFakeShell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/csFakeShell.py -------------------------------------------------------------------------------- /csIntruder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/csIntruder.py -------------------------------------------------------------------------------- /dic/computer_name_dic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/dic/computer_name_dic.txt -------------------------------------------------------------------------------- /dic/password.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/dic/password.txt -------------------------------------------------------------------------------- /dic/process_name_dic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/dic/process_name_dic.txt -------------------------------------------------------------------------------- /dic/user_name_dic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/dic/user_name_dic.txt -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/img/1.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/img/3.png -------------------------------------------------------------------------------- /img/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/img/33.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/img/4.png -------------------------------------------------------------------------------- /tool/DumpKeys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/tool/DumpKeys.java -------------------------------------------------------------------------------- /tool/beacon_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/tool/beacon_utils.py -------------------------------------------------------------------------------- /tool/parse_beacon_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Potato-py/csIntruder/HEAD/tool/parse_beacon_config.py --------------------------------------------------------------------------------