├── .gitattributes ├── .gitignore ├── Auditd_shell_command_logg.sh ├── ListInstalledPrograms └── ListInstalledPrograms.ps1 ├── README.md ├── cve-2017-12615.py ├── dirtycow.c ├── dns_log_parse.py ├── impacket ├── README.md └── install_all_examples_as_script.sh ├── kali_install_docker.sh ├── linux_history_audit.sh ├── my_user_rule.txt ├── nmap_report_parser.py ├── notepad.ps1 ├── pythonscan.py ├── s2-045.rb ├── scanner.rb ├── shodan └── shodan_search.py ├── smbbasefind.sh ├── snort ├── snort_install.sh └── snort_multiprocess.py ├── weak_1.4w.txt ├── web_directory_scan_dict.txt └── windows_trojan_service ├── readme.md └── windows_trojan_service.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Auditd_shell_command_logg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/Auditd_shell_command_logg.sh -------------------------------------------------------------------------------- /ListInstalledPrograms/ListInstalledPrograms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/ListInstalledPrograms/ListInstalledPrograms.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/README.md -------------------------------------------------------------------------------- /cve-2017-12615.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/cve-2017-12615.py -------------------------------------------------------------------------------- /dirtycow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/dirtycow.c -------------------------------------------------------------------------------- /dns_log_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/dns_log_parse.py -------------------------------------------------------------------------------- /impacket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/impacket/README.md -------------------------------------------------------------------------------- /impacket/install_all_examples_as_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/impacket/install_all_examples_as_script.sh -------------------------------------------------------------------------------- /kali_install_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/kali_install_docker.sh -------------------------------------------------------------------------------- /linux_history_audit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/linux_history_audit.sh -------------------------------------------------------------------------------- /my_user_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/my_user_rule.txt -------------------------------------------------------------------------------- /nmap_report_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/nmap_report_parser.py -------------------------------------------------------------------------------- /notepad.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/notepad.ps1 -------------------------------------------------------------------------------- /pythonscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/pythonscan.py -------------------------------------------------------------------------------- /s2-045.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/s2-045.rb -------------------------------------------------------------------------------- /scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/scanner.rb -------------------------------------------------------------------------------- /shodan/shodan_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/shodan/shodan_search.py -------------------------------------------------------------------------------- /smbbasefind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/smbbasefind.sh -------------------------------------------------------------------------------- /snort/snort_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/snort/snort_install.sh -------------------------------------------------------------------------------- /snort/snort_multiprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/snort/snort_multiprocess.py -------------------------------------------------------------------------------- /weak_1.4w.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/weak_1.4w.txt -------------------------------------------------------------------------------- /web_directory_scan_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/web_directory_scan_dict.txt -------------------------------------------------------------------------------- /windows_trojan_service/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/windows_trojan_service/readme.md -------------------------------------------------------------------------------- /windows_trojan_service/windows_trojan_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-m/Demo/HEAD/windows_trojan_service/windows_trojan_service.c --------------------------------------------------------------------------------