├── .github ├── FUNDING.yml └── workflows │ └── greetings.yml ├── .gitignore ├── .idea ├── XSpear.iml ├── encodings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── XSpear-1.4.1.gem ├── XSpear.gemspec ├── bin ├── console └── setup ├── config.json ├── custom_payload.json ├── exe └── XSpear ├── forBurp ├── README.md └── otwa.sh ├── lib ├── XSpear.rb └── XSpear │ ├── XSpearRepoter.rb │ ├── banner.rb │ ├── log.rb │ └── version.rb ├── raw_sample.txt └── spec ├── XSpear_spec.rb └── spec_helper.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/XSpear.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/.idea/XSpear.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/Rakefile -------------------------------------------------------------------------------- /XSpear-1.4.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/XSpear-1.4.1.gem -------------------------------------------------------------------------------- /XSpear.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/XSpear.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/bin/setup -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/config.json -------------------------------------------------------------------------------- /custom_payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/custom_payload.json -------------------------------------------------------------------------------- /exe/XSpear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/exe/XSpear -------------------------------------------------------------------------------- /forBurp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/forBurp/README.md -------------------------------------------------------------------------------- /forBurp/otwa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/forBurp/otwa.sh -------------------------------------------------------------------------------- /lib/XSpear.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/lib/XSpear.rb -------------------------------------------------------------------------------- /lib/XSpear/XSpearRepoter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/lib/XSpear/XSpearRepoter.rb -------------------------------------------------------------------------------- /lib/XSpear/banner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/lib/XSpear/banner.rb -------------------------------------------------------------------------------- /lib/XSpear/log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/lib/XSpear/log.rb -------------------------------------------------------------------------------- /lib/XSpear/version.rb: -------------------------------------------------------------------------------- 1 | module XSpear 2 | VERSION = "1.4.1" 3 | end 4 | -------------------------------------------------------------------------------- /raw_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/raw_sample.txt -------------------------------------------------------------------------------- /spec/XSpear_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/spec/XSpear_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/XSpear/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------