Hacking Articles Tips Tricks Videos Tutorials
470 subscribers
65.9K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Intro to Information Gathering

Learn about reconnaissance or information gathering. What information to collect? Where to collect? etc.

Continue reading on Learn Ethical Hacking Β»
Bug Bounty Write Up HackerOne April 2021

This bug bounty HackerOne 2021 written by NganuSec.Continue reading on Medium Β»
Read more...
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
Ronin - A Ruby Platform For Vulnerability Research And Exploit Development

https://1.bp.blogspot.com/-Tf-D13vSC8M/YG0Ca9quQrI/AAAAAAAAV18/jpcZ7fXgo8ETBLi8ir-lXER1_gSaClcvgCNcBGAsYHQ/s16000/ronin.png Ronin is a Ruby platform for vulnerability research and exploit development. Ronin allows for the rapid development and distribution of code, Exploits, Payloads, Scanners, etc, via Repositories. ConsoleRonin provides users with a powerful Ruby Console, pre-loaded with powerful convenience methods. In the Console one can work with data and automate complex tasks, with greater ease than the command-line. >> File.read('data').base64_decode DatabaseRonin ships with a preconfigured Database, that one can interact with from Ruby, without having to write any SQL. >> HostName.tld('eu').urls.with_query_param('id') RepositoriesRonin provides a Repository system, allowing users to organize and share miscallaneous Data, Code, Exploits, Payloads, Scanners, etc. $ ronin install git://github.com/user/myexploits.git LibrariesRonin provides libraries with additional functionality, such as Exploitation and Scanning: $ gem install ronin-exploits Features* Supports installing/updating/uninstalling of Repositories.
* Supports installing Repositories from various media types:
* Subversion (SVN)
* Mercurial (Hg)
* Git
* Rsync
* Provides a Database using DataMapper with:
* {Ronin::Author}
* {Ronin::License}
* {Ronin::Arch}
* {Ronin::OS}
* {Ronin::Software}
* {Ronin::Vendor}
* {Ronin::Address}
* {Ronin::MACAddress}
* {Ronin::IPAddress}
* {Ronin::HostName}

* {Ronin::Port}
* {Ronin::TCPPort}
* {Ronin::UDPPort}

* {Ronin::Service}
* {Ronin::OpenPort}
* {Ronin::OSGuess}
* {Ronin::UserName}
* {Ronin::URL}
* {Ronin::EmailAddress}
* {Ronin::Credential}
* {Ronin::ServiceCredential}
* {Ronin::WebCredential}

* {Ronin::Organization}
* {Ronin::Campaign}
* {Ronin::Target}

* Caches exploits, payloads, scanners, etc stored within Repositories into the Database.
* Convenience methods provided by ronin-support.
* Provides a customized Ruby Console using Ripl with:
* Syntax highlighting.
* Tab completion.
* Auto indentation.
* Pretty Printing (pp).
* print_info, print_error, print_warningand print_debugoutput helper methods with color-output.
* Inline commands (!nmap -v -sT victim.com)

* Provides an extensible command-line interface. SynopsisStart the Ronin console: $ ronin Run a Ruby script in Ronin: $ ronin exec script.rb View available commands: $ ronin help View a man-page for a command: $ ronin help wordlist Install a Repository: $ ronin install svn://example.com/path/to/repo List installed Repositories: $ ronin repos Update all installed Repositories: $ ronin update Update a specific Repositories: $ ronin update repo-name Uninstall a specific Repositories: $ ronin uninstall repo-name List available Databases: $ ronin database Add a new Database: $ ronin database --add team --uri mysql://user:pass@vpn.example.com/db Remove a Database: $ ronin database --remove team Requirements* Ruby >= 1.8.7
* DataMapper:
* dm-sqlite-adapter ~> 1.2
* libsqlite3

* dm-core ~> 1.2
* dm-types ~> 1.2
* dm-migrations ~> 1.2
* dm-validations ~> 1.2
* dm-aggregates ~> 1.2
* dm-timestamps ~> 1.2

* dm-is-predefined ~> 0.4
* uri-query_params ~> 0.6
* open_namespace ~> 0.4
* data_paths ~> 0.3
* object_loader ~> 1.0
* parameters ~> 0.4
* pullr ~> 0.1, >= 0.1.2
* ripl ~> 0.3
* ripl-multi_line ~> 0.2
* ripl-auto_indent ~> 0.1
* ripl-short_errors ~> 0[...]