Postmodern

Results 636 comments of Postmodern

Try upgrading Bundler / RVM. This might be an RVM bug.

Hello there! I tend to post issues as a reminder, for myself or to future developers. Currently, I've been busy working on [ronin-exploits](https://github.com/ronin-ruby/ronin-exploits#readme), so I haven't been committing to this...

`Web.agent` and `Web.get` are just convenience methods around [Mechanize::Agent](http://rubydoc.info/gems/mechanize/Mechanize). I probably should change `Web.get` to support [Mechanize#get](http://rubydoc.info/gems/mechanize/Mechanize#initialize-instance_method)'s additional arguments.

@danghvu now you can pass custom query parameters / headers to `#get`, `#get_body`, `#post`, `#post_body`.

`ronin-web` now has more commands. ``` Usage: ronin-web [options] [COMMAND [ARGS...]] Options: -h, --help Print help information Arguments: [COMMAND] The command name to run [ARGS ...] Additional arguments for the...

Blocked by some weird `nokogiri` parsing differences under JRuby: ``` 1) Ronin::Web::HTML.parse must parse an HTML String and return a Nokogiri::HTML::Document Failure/Error: expect(doc.at('body').inner_text).to eq("Hello") expected: "Hello" got: "Hello\n" (compared using...

This could be a `disassemble` method on `Program`, which would construct a new `Program` object.

I was working on some code that used [ffi-udis86](https://github.com/sophsec/ffi-udis86) to find Gadgets. I'm not sure if it belongs in ronin-asm or should be moved into a ronin-rop library?

Ah yes, we could inspect `Ronin::ASM::Program#instructions` and map those to gadgets.

One downside to this would be adding ffi-udis86 and libudis86 as dependencies. Luckily, libudis86 is available in almost every package manager.