0
How to make a dictionary list contains strings and integers to help for brut forcing in domain pentes ting red wifi for example?
2 Answers
+ 1
in ruby you has Hash class
you can create a hash like a dictionary in python
a = {a: 10, b: "h"} # hash with symbol keys
a = {"a" => 10, "b" => "h"} # hash with string keys
0
thnx.