├── LICENSE.md ├── Presentation ├── pakuri_avtokyo.pdf └── pakuri_seccon.pdf ├── README.md ├── img ├── pakuri-banner.png └── pakuri-logo.png ├── modules ├── attack │ └── attack_module.sh ├── check │ └── check_module.sh ├── config │ └── config_module.sh ├── config_module.sh ├── exploit_module.sh ├── help │ ├── config_help_module.sh │ ├── exploit_help_module.sh │ ├── main_help_module.sh │ └── scan_help_module.sh ├── misc_module.sh ├── recon │ ├── extraScan.sh │ ├── nmapScan.sh │ ├── recon_module.sh │ ├── toolsScan.sh │ └── vuln.sh ├── scan_module.sh └── service_act.sh ├── pakuri.conf ├── pakuri.sh ├── setup.sh ├── targets.txt └── tmux.conf /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Presentation/pakuri_avtokyo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/Presentation/pakuri_avtokyo.pdf -------------------------------------------------------------------------------- /Presentation/pakuri_seccon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/Presentation/pakuri_seccon.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/README.md -------------------------------------------------------------------------------- /img/pakuri-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/img/pakuri-banner.png -------------------------------------------------------------------------------- /img/pakuri-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/img/pakuri-logo.png -------------------------------------------------------------------------------- /modules/attack/attack_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/attack/attack_module.sh -------------------------------------------------------------------------------- /modules/check/check_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/check/check_module.sh -------------------------------------------------------------------------------- /modules/config/config_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/config/config_module.sh -------------------------------------------------------------------------------- /modules/config_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/config_module.sh -------------------------------------------------------------------------------- /modules/exploit_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/exploit_module.sh -------------------------------------------------------------------------------- /modules/help/config_help_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/help/config_help_module.sh -------------------------------------------------------------------------------- /modules/help/exploit_help_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/help/exploit_help_module.sh -------------------------------------------------------------------------------- /modules/help/main_help_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/help/main_help_module.sh -------------------------------------------------------------------------------- /modules/help/scan_help_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/help/scan_help_module.sh -------------------------------------------------------------------------------- /modules/misc_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/misc_module.sh -------------------------------------------------------------------------------- /modules/recon/extraScan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/recon/extraScan.sh -------------------------------------------------------------------------------- /modules/recon/nmapScan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/recon/nmapScan.sh -------------------------------------------------------------------------------- /modules/recon/recon_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/recon/recon_module.sh -------------------------------------------------------------------------------- /modules/recon/toolsScan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/recon/toolsScan.sh -------------------------------------------------------------------------------- /modules/recon/vuln.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/recon/vuln.sh -------------------------------------------------------------------------------- /modules/scan_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/scan_module.sh -------------------------------------------------------------------------------- /modules/service_act.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/modules/service_act.sh -------------------------------------------------------------------------------- /pakuri.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/pakuri.conf -------------------------------------------------------------------------------- /pakuri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/pakuri.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/setup.sh -------------------------------------------------------------------------------- /targets.txt: -------------------------------------------------------------------------------- 1 | 192.168.136.135 2 | -------------------------------------------------------------------------------- /tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01rabbit/PAKURI/HEAD/tmux.conf --------------------------------------------------------------------------------