danghvu

Results 31 comments of danghvu

I think it's a problem with `basic_quote_characters` implementation. By default readline set it as `"'`. If you set it to an empty string the problem is gone however you won't...

Yes, my changes are simply: ``` - threads = numa_num_configured_cpus(); + threads = omp_get_max_threads(); ``` And set the number of threads using `OMP_NUM_THREADS` and affinity with `OMP_PLACES=cores` Is this your...

Personally I think it's better to allow the user to chose how many threads to run and the binding accordingly.

Isn't `Ronin::Payloads::BindShell` only useful for connecting to a binded shell ? My usecase for `interact` is quite different. I will send the payload that after executing will obtain a shell...

For the timeout, there is an issue on some *nix system that `sock.setsockopt` with `SO_RCVTIMEO` does not work (see [here](http://stackoverflow.com/questions/9853516/set-socket-timeout-in-ruby-via-so-rcvtimeo-socket-option/12111120)). There is also an answer in that thread using `IO.select()`...

Is there any way to `require 'expect'` at ronin bootstrap time ?

Would be great if it's enable by default e.g. `IO.popen('process')` also benefits from it. Have you ever thought about `process_*` similar tools as `tcp_*` ?

I also found the [Nuggets lib](https://github.com/blackwinter/ruby-nuggets) having some useful features that you may want to consider putting in, one of them is the [`interact`](http://blackwinter.github.io/ruby-nuggets/Nuggets/IO/InteractMixin.html) I mentioned. ``` require 'ronin' require...