signature.rb - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
 (HTM) git clone git://jay.scot/warvox
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       signature.rb (399B)
       ---
            1 # == Schema Information
            2 #
            3 # Table name: signatures
            4 #
            5 #  id          :integer          not null, primary key
            6 #  created_at  :datetime
            7 #  updated_at  :datetime
            8 #  name        :text             not null
            9 #  source      :string(255)
           10 #  description :text
           11 #  category    :string(255)
           12 #  line_type   :string(255)
           13 #  risk        :integer
           14 #
           15 
           16 class Signature < ApplicationRecord
           17   has_many :signature_fps
           18 
           19 end