June 2019
Beginner to intermediate
660 pages
14h 30m
English
We can simply define arrays as a list of various values. Let's have a look at an example:
irb(main):005:0> name = ["nipun","metasploit"] => ["nipun", "metasploit"] irb(main):006:0> name[0] => "nipun" irb(main):007:0> name[1] => "metasploit"
Up to this point, we have covered all the required variables and data types that we will need for writing Metasploit modules.
Refer to a quick cheat sheet for using Ruby programming effectively at the following link: https://github.com/savini/cheatsheets/raw/master/ruby/RubyCheat.pdf.
Transitioning from another programming language to Ruby? Refer to a helpful guide: ...
Read now
Unlock full access