dvash 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/dvash.gemspec +2 -2
- data/etc/dvash-baseline.conf +2 -0
- data/lib/dvash.rb +2 -3
- metadata +2 -2
data/dvash.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = "dvash"
|
|
5
|
-
s.version = "0.0.
|
|
5
|
+
s.version = "0.0.6"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Ari Mizrahi"]
|
|
9
|
-
s.date = "2013-04-
|
|
9
|
+
s.date = "2013-04-28"
|
|
10
10
|
s.description = "Part honeypot, part defense system. Opens up ports and simulates services in order to look like an attractive target. Hosts that try to connect to the fake services are considered attackers and blocked from all access."
|
|
11
11
|
s.email = "codemunchies@gmail.com"
|
|
12
12
|
s.executables = ["dvash"]
|
data/etc/dvash-baseline.conf
CHANGED
|
@@ -20,9 +20,11 @@
|
|
|
20
20
|
[honeyports]
|
|
21
21
|
ipv4_http = true
|
|
22
22
|
ipv4_ssh = false
|
|
23
|
+
ipv4_rdp = false
|
|
23
24
|
ipv4_telnet = false
|
|
24
25
|
ipv6_http = false
|
|
25
26
|
ipv6_ssh = false
|
|
27
|
+
ipv6_rdp = false
|
|
26
28
|
|
|
27
29
|
###############################################################################
|
|
28
30
|
#
|
data/lib/dvash.rb
CHANGED
|
@@ -30,15 +30,14 @@ module Dvash
|
|
|
30
30
|
# A command-line interface using OptionParser
|
|
31
31
|
#
|
|
32
32
|
OptionParser.new do |opts|
|
|
33
|
-
opts.banner = "
|
|
34
|
-
|
|
33
|
+
opts.banner = "Dvash 0.0.6 ( http://www.github.com/codemunchies/dvash )\n"
|
|
34
|
+
opts.banner += "Usage: dvash [options]"
|
|
35
35
|
#
|
|
36
36
|
# Option to set an alternate configuration file
|
|
37
37
|
#
|
|
38
38
|
opts.on("--config-file [PATH]", "Set path to config file") do |arg|
|
|
39
39
|
paths[:config_path] = arg
|
|
40
40
|
end
|
|
41
|
-
|
|
42
41
|
#
|
|
43
42
|
# Option to set an alternate log file destination and filename
|
|
44
43
|
#
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dvash
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-04-
|
|
12
|
+
date: 2013-04-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: parseconfig
|