├── .gitignore ├── CODE_OF_CONDUCT.md ├── Gemfile ├── README.md ├── Rakefile ├── bin └── godofwar ├── godofwar.gemspec ├── lib ├── godofwar.rb └── godofwar │ ├── builder.rb │ ├── extensions.rb │ ├── payloads.rb │ ├── utils.rb │ └── version.rb └── payloads ├── bind_shell └── bind_shell.jsp ├── cmd_get └── cmd_get.jsp ├── filebrowser ├── example-css.css └── filebrowser.jsp ├── payloads_info.json ├── reverse_shell └── reverse_shell.jsp └── reverse_shell_ui └── reverse_shell_ui.jsp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/godofwar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/bin/godofwar -------------------------------------------------------------------------------- /godofwar.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/godofwar.gemspec -------------------------------------------------------------------------------- /lib/godofwar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/lib/godofwar.rb -------------------------------------------------------------------------------- /lib/godofwar/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/lib/godofwar/builder.rb -------------------------------------------------------------------------------- /lib/godofwar/extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/lib/godofwar/extensions.rb -------------------------------------------------------------------------------- /lib/godofwar/payloads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/lib/godofwar/payloads.rb -------------------------------------------------------------------------------- /lib/godofwar/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/lib/godofwar/utils.rb -------------------------------------------------------------------------------- /lib/godofwar/version.rb: -------------------------------------------------------------------------------- 1 | module GodOfWar 2 | VERSION = "1.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /payloads/bind_shell/bind_shell.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/payloads/bind_shell/bind_shell.jsp -------------------------------------------------------------------------------- /payloads/cmd_get/cmd_get.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/payloads/cmd_get/cmd_get.jsp -------------------------------------------------------------------------------- /payloads/filebrowser/example-css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/payloads/filebrowser/example-css.css -------------------------------------------------------------------------------- /payloads/filebrowser/filebrowser.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/payloads/filebrowser/filebrowser.jsp -------------------------------------------------------------------------------- /payloads/payloads_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/payloads/payloads_info.json -------------------------------------------------------------------------------- /payloads/reverse_shell/reverse_shell.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/payloads/reverse_shell/reverse_shell.jsp -------------------------------------------------------------------------------- /payloads/reverse_shell_ui/reverse_shell_ui.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KINGSABRI/godofwar/HEAD/payloads/reverse_shell_ui/reverse_shell_ui.jsp --------------------------------------------------------------------------------