ronin-payloads

A Ruby micro-framework for writing and running exploit payloads

LGPL-3.0 License

Downloads
8.3K
Stars
20
Committers
3

Bot releases are visible (Hide)

ronin-payloads - 0.1.6 Latest Release

Published by postmodern 4 months ago

Payloads

  • Fixed incompatible character encodings: UTF-8 and ASCII-8BIT exceptions when building shellcode payloads with certain IP addresses or port numbers.
ronin-payloads - 0.1.5

Published by postmodern 4 months ago

  • Fixed order of arguments passed to TCPServer.new in Ronin::Payloads::Mixins::ReverseShell#perform_prelaunch which was preventing reverse shells from opening a local TCP server socket.

Payloads

  • Fixed the module namespace for the Ronin::Payloads::CMD::Node::ReverseShell payload (aka cmd/node/reverse_shell).

CLI

  • Automatically create the parent directory of the new payload file, if it doesn't exist, when running ronin-payloads new path/to/new_payload.rb.
  • Fixed typo in ronin-payloads encode man-page for the -E,--encoder option.
ronin-payloads - 0.1.4

Published by postmodern about 1 year ago

CLI

  • All newly generated payload files using ronin-payloads new should have a
    summary and a description.
  • Fixed a bug where the ronin-payloads new options --author,
    --author-email, or --summary were not properly escaping given values.
ronin-payloads - 0.1.3

Published by postmodern over 1 year ago

CLI

  • Fixed a bug where ronin-payloads new --type command wasn't being accepted
    as a valid payload type.
ronin-payloads - 0.1.2

Published by postmodern over 1 year ago

  • Add missing require for Ronin::Payloads::Encoders::Encoder.
  • Added missing descriptions to built-in payloads (@ervinismu).
  • Documentation fixes and improvements.

CLI

  • Fixed the placeholder references URLs in the ronin-payloads new template.
  • Fixed --format html and --format xml to encode every character.
ronin-payloads - 0.1.1

Published by postmodern over 1 year ago

  • Default the host param defined by Ronin::Payloads::Mixins::BindShell to
    0.0.0.0.
ronin-payloads - 0.1.0

Published by postmodern over 1 year ago

  • Initial release:
    • Require ruby >= 3.0.0.
    • Provides a succinct syntax and API for writing payloads in as few lines as
      possible.
    • Supports defining Payloads as plain old Ruby classes.
    • Provides base classes for a variety of languages and payload types
      (ASM, Shellcode, C, Go, Rust, Java, JSP, PHP, Python, Ruby, NodeJS, Shell,
      PowerShell, SQL, XML, HTML, URL).
    • Provides built-in common payloads:
      • Command-line reverse shells:
        • Awk
        • Bash
        • Lua
        • NodeJS
        • OpenSSL
        • Perl
        • PHP
        • PowerShell
        • Python
        • Ruby
      • Java
        • Reverse shell
      • PHP
        • Command exec.
      • Shellcode:
        • execve(/bin/sh):
          • Linux (ARM, MIPS, PPC, x86, x86-64)
          • FreeBSD (x86, x86-64)
          • macOS (x86-64)
          • NetBSD (x86)
          • OpenBSD (x86)
        • bind shell:
          • Linux (ARM, MIPS, x86, x86-64)
          • FreeBSD (x86)
          • OpenBSD (x86)
        • reverse shell:
          • Linux (ARM, MIPS, PPC, x86, x86-64)
          • macOS (x86-64)
          • FreeBSD (x86)
          • NetBSD (x86)
    • Supports adding additional encoders to payloads for further obfuscation.
    • Integrates with the Ronin Post-Exploitation library.
    • Provides a simple CLI for building, encoding, launching, and generating new
      payloads.