Skip to content

ronin-rb/scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scripts

A repository of useful setup scripts.

What is Ronin?

Ronin is a free and Open Source Ruby toolkit for security research and development. Ronin contains many different CLI commands and Ruby libraries for a variety of security tasks, such as encoding/decoding data, filter IPs/hosts/URLs, querying ASNs, querying DNS, HTTP, scanning for web vulnerabilities, spidering websites, install 3rd party repositories of exploits and/or payloads, run exploits, write new exploits, managing local databases, fuzzing data, and much more.

Features

  • Installs ronin or sets up a local development environment.
  • Optionally supports installing pre-release versions.
  • Auto-detects the OS (supports Linux, macOS, and FreeBSD).
  • Auto-detects the package manager (supports apt, dnf, yum, pacman, zypper, pkg, macports, brew).
  • Auto-installs any missing external dependencies via the package manager:

ronin-install.sh

A script that installs all of ronin, including external dependencies.

curl && bash

Copy and paste the following command into the terminal:

curl -o ronin-install.sh https://raw.githubusercontent.com/ronin-rb/scripts/main/ronin-install.sh && bash ronin-install.sh

wget && bash

If you have wget installed instead of curl, copy and paste the following command into the terminal:

wget -O ronin-install.sh https://raw.githubusercontent.com/ronin-rb/scripts/main/ronin-install.sh && bash ronin-install.sh

ronin-dev.sh

A script that sets up a local ronin-rb development environment.

curl && bash

Copy and paste the following command into the terminal:

curl -o ronin-dev.sh https://raw.githubusercontent.com/ronin-rb/scripts/main/ronin-dev.sh && bash ronin-dev.sh

wget && bash

If you have wget installed instead of curl, copy and paste the following command into the terminal:

wget -O ronin-dev.sh https://raw.githubusercontent.com/ronin-rb/scripts/main/ronin-dev.sh && bash ronin-dev.sh