├── .gitignore ├── CHANGELOG ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── UPDATE ├── bin └── dorothy2 ├── dorothy2.gemspec ├── etc ├── ddl │ └── dorothive.ddl ├── sandboxes.yml.example └── sources.yml.example ├── lib ├── doroGUI.rb ├── doroParser.rb ├── dorothy2.rb ├── dorothy2 │ ├── BFM.rb │ ├── DEM.rb │ ├── NAM.rb │ ├── Settings.rb │ ├── VSM.rb │ ├── deep_symbolize.rb │ ├── do-init.rb │ ├── do-logger.rb │ ├── do-utils.rb │ ├── version.rb │ └── vtotal.rb ├── mu │ ├── xtractr.rb │ └── xtractr │ │ ├── about.rb │ │ ├── content.rb │ │ ├── field.rb │ │ ├── flow.rb │ │ ├── flows.rb │ │ ├── host.rb │ │ ├── packet.rb │ │ ├── packets.rb │ │ ├── service.rb │ │ ├── stream.rb │ │ ├── stream │ │ └── http.rb │ │ ├── term.rb │ │ ├── test │ │ ├── stream │ │ │ └── tc_http.rb │ │ ├── tc_field.rb │ │ ├── tc_flow.rb │ │ ├── tc_flows.rb │ │ ├── tc_host.rb │ │ ├── tc_packet.rb │ │ ├── tc_packets.rb │ │ ├── tc_service.rb │ │ ├── tc_stream.rb │ │ ├── tc_term.rb │ │ ├── tc_views.rb │ │ ├── tc_xtractr.rb │ │ └── test.rb │ │ └── views.rb └── www │ ├── public │ ├── reset.css │ └── style.css │ └── views │ ├── analyses.erb │ ├── email.erb │ ├── flows.erb │ ├── layout.erb │ ├── profile.erb │ ├── queue.erb │ ├── resume.erb │ ├── resume.erb~ │ ├── samples.erb │ └── upload.erb ├── share └── img │ ├── Dorothy-Basic.pdf │ ├── Setup-Advanced.pdf │ └── The_big_picture.pdf └── test └── tc_dorothy_full.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /UPDATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/UPDATE -------------------------------------------------------------------------------- /bin/dorothy2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/bin/dorothy2 -------------------------------------------------------------------------------- /dorothy2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/dorothy2.gemspec -------------------------------------------------------------------------------- /etc/ddl/dorothive.ddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/etc/ddl/dorothive.ddl -------------------------------------------------------------------------------- /etc/sandboxes.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/etc/sandboxes.yml.example -------------------------------------------------------------------------------- /etc/sources.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/etc/sources.yml.example -------------------------------------------------------------------------------- /lib/doroGUI.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/doroGUI.rb -------------------------------------------------------------------------------- /lib/doroParser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/doroParser.rb -------------------------------------------------------------------------------- /lib/dorothy2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/dorothy2.rb -------------------------------------------------------------------------------- /lib/dorothy2/BFM.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/dorothy2/BFM.rb -------------------------------------------------------------------------------- /lib/dorothy2/DEM.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/dorothy2/DEM.rb -------------------------------------------------------------------------------- /lib/dorothy2/NAM.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/dorothy2/NAM.rb -------------------------------------------------------------------------------- /lib/dorothy2/Settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/dorothy2/Settings.rb -------------------------------------------------------------------------------- /lib/dorothy2/VSM.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/dorothy2/VSM.rb -------------------------------------------------------------------------------- /lib/dorothy2/deep_symbolize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/dorothy2/deep_symbolize.rb -------------------------------------------------------------------------------- /lib/dorothy2/do-init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/dorothy2/do-init.rb -------------------------------------------------------------------------------- /lib/dorothy2/do-logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/dorothy2/do-logger.rb -------------------------------------------------------------------------------- /lib/dorothy2/do-utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/dorothy2/do-utils.rb -------------------------------------------------------------------------------- /lib/dorothy2/version.rb: -------------------------------------------------------------------------------- 1 | module Dorothy 2 | VERSION = "2.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /lib/dorothy2/vtotal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/dorothy2/vtotal.rb -------------------------------------------------------------------------------- /lib/mu/xtractr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/about.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/about.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/content.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/field.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/flow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/flow.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/flows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/flows.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/host.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/packet.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/packets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/packets.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/service.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/stream.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/stream/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/stream/http.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/term.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/term.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/stream/tc_http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/stream/tc_http.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/tc_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/tc_field.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/tc_flow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/tc_flow.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/tc_flows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/tc_flows.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/tc_host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/tc_host.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/tc_packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/tc_packet.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/tc_packets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/tc_packets.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/tc_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/tc_service.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/tc_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/tc_stream.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/tc_term.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/tc_term.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/tc_views.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/tc_views.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/tc_xtractr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/tc_xtractr.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/test/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/test/test.rb -------------------------------------------------------------------------------- /lib/mu/xtractr/views.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/mu/xtractr/views.rb -------------------------------------------------------------------------------- /lib/www/public/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/www/public/reset.css -------------------------------------------------------------------------------- /lib/www/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/www/public/style.css -------------------------------------------------------------------------------- /lib/www/views/analyses.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/www/views/analyses.erb -------------------------------------------------------------------------------- /lib/www/views/email.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/www/views/email.erb -------------------------------------------------------------------------------- /lib/www/views/flows.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/www/views/flows.erb -------------------------------------------------------------------------------- /lib/www/views/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/www/views/layout.erb -------------------------------------------------------------------------------- /lib/www/views/profile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/www/views/profile.erb -------------------------------------------------------------------------------- /lib/www/views/queue.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/www/views/queue.erb -------------------------------------------------------------------------------- /lib/www/views/resume.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/www/views/resume.erb -------------------------------------------------------------------------------- /lib/www/views/resume.erb~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/www/views/resume.erb~ -------------------------------------------------------------------------------- /lib/www/views/samples.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/www/views/samples.erb -------------------------------------------------------------------------------- /lib/www/views/upload.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/lib/www/views/upload.erb -------------------------------------------------------------------------------- /share/img/Dorothy-Basic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/share/img/Dorothy-Basic.pdf -------------------------------------------------------------------------------- /share/img/Setup-Advanced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/share/img/Setup-Advanced.pdf -------------------------------------------------------------------------------- /share/img/The_big_picture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/share/img/The_big_picture.pdf -------------------------------------------------------------------------------- /test/tc_dorothy_full.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rco-/dorothy2/HEAD/test/tc_dorothy_full.rb --------------------------------------------------------------------------------