ronin-exploits icon indicating copy to clipboard operation
ronin-exploits copied to clipboard

A Ruby micro-framework for writing and running exploits

Results 30 ronin-exploits issues
Sort by recently updated
recently updated
newest added

We need a Web Exploit (similar to [LFI](https://github.com/ronin-ruby/ronin-exploits/blob/master/lib/ronin/exploits/lfi.rb)) for scanning and crafting XSS.

feature

Add a `Ronin::Exploits::Mixins::HTML` for building HTML.

feature
mixin

Add [ronin-c2](https://github.com/ronin-rb/ronin-c2) to `gemspec.yml` as a dependency. The `Ronin::Exploits` classes may include `Ronin::C2` functionality (ex: LFI exploit may provide the file-read capability).

dependency
future

Ronin now requires Ruby >= 3.0. Re-enable JRuby in the CI matrix once JRuby achieves 3.0 support.

CI
jruby

Measure the memory footprint of `ronin/exploits` fully loaded and mention it as a Feature in the README.

documentation
readme

Add rubocop to the repository. * Add the rubocop gem to the Gemfile. * Train rubocop on the existing code (`rubocop --auto-gen-config`) and try to fix as many 1-2 time...

CI

Add a `db_each_table` / `db_each_column` methods to [Ronin::Exploits::SQLi](https://github.com/ronin-ruby/ronin-exploits/blob/master/lib/ronin/exploits/sqli.rb) which can [enumerate the tables/columns in the database](http://socketready.com/2011/06/23/basic-sql-injection/#names).

feature
exploits-api
sqli

Exploits currently use [Ronin::Script::Testable](https://github.com/ronin-ruby/ronin/blob/master/lib/ronin/script/testable.rb) and [Ronin::Exploits::Tests](https://github.com/ronin-ruby/ronin-exploits/blob/master/lib/ronin/exploits/tests.rb), which provides methods for testing data and raising exceptions. @mephux mentioned a need for more specific test/validation methods (ex: `validates_is_running /WuFTP/`).

improvement
exploits-api
discussion

[Ronin::Exploits::Helpers::FormatString](https://github.com/ronin-ruby/ronin-exploits/blob/master/lib/ronin/exploits/helpers/format_string.rb) should be checked against the [libformatstr](https://github.com/hellman/libformatstr) library.

testing