ronin-rb / scripts

Useful shell scripts for ronin-rb
https://ronin-rb.dev
MIT License
8 stars 4 forks source link
curl-install ronin-rb shell-scripts

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

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