local stdnse = require "stdnse" local tab = require "tab" description = "Prints some test info" author = "Daniel Miller" license = "Same as Nmap--See http://nmap.org/book/man-legal.html" categories = {"testing"} prerule = function() return true end action = function(host, port) local example = tab.new() tab.addrow(example, "Name", "Phone", "DOB") tab.addrow(example, "Joe", "555-1111", "01-01-1977") tab.addrow(example, "Frank", "555-2222", "02-15-1980") tab.addrow(example, "Sue", "555-8888", "12-25-1982") example.has_header = true local outer = {["This"]="is a test", example} return outer end