December 2017
Intermediate to advanced
860 pages
16h 1m
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.
Read now
Unlock full access