uirusu 0.0.9 → 0.0.10
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.
- checksums.yaml +4 -4
- data/Gemfile +7 -0
- data/Gemfile.lock +17 -0
- data/LICENSE +16 -18
- data/README.markdown +8 -11
- data/Rakefile +18 -21
- data/bin/uirusu +16 -18
- data/{NEWS.markdown → docs/NEWS.markdown} +11 -1
- data/{TODO.markdown → docs/TODO.markdown} +0 -0
- data/lib/uirusu.rb +22 -20
- data/lib/uirusu/cli/application.rb +41 -33
- data/lib/uirusu/scanner.rb +17 -19
- data/lib/uirusu/vtcomment.rb +17 -19
- data/lib/uirusu/vtfile.rb +17 -19
- data/lib/uirusu/vtresult.rb +23 -18
- data/lib/uirusu/vturl.rb +16 -18
- data/uirusu.gemspec +23 -26
- metadata +17 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49bbaf521640ebaf54af9cf9aac933a6efcaab42
|
4
|
+
data.tar.gz: 110b9991573b8435afd88de4161ecba43733accd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b2338d830b9b0a45418a9c013596c04ce3e8e4e218d504eb84a4a412ba57969ffd818b6087a5c92b78bdabceb9a33f36c16dedcba436eb3cc6e13f54df39ad3
|
7
|
+
data.tar.gz: ccf10440dbfc1f4d29f124498165cef481b4c18b3895776f1965c569bc4960765ab037a5c00bf6cbb2f5878e19d17018e6f620a8491dc0747a6574024c9310f2
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
data/LICENSE
CHANGED
@@ -1,27 +1,25 @@
|
|
1
|
-
Copyright (c) 2012-
|
1
|
+
Copyright (c) 2012-2016 Arxopia LLC.
|
2
2
|
All rights reserved.
|
3
3
|
|
4
4
|
Redistribution and use in source and binary forms, with or without
|
5
5
|
modification, are permitted provided that the following conditions are met:
|
6
6
|
|
7
|
-
Redistributions of source code must retain the above copyright
|
8
|
-
this list of conditions and the following disclaimer.
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
may be used to endorse or promote products derived from this software
|
16
|
-
without specific prior written permission.
|
7
|
+
* Redistributions of source code must retain the above copyright
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
9
|
+
* Redistributions in binary form must reproduce the above copyright
|
10
|
+
notice, this list of conditions and the following disclaimer in the
|
11
|
+
documentation and/or other materials provided with the distribution.
|
12
|
+
* Neither the name of the Arxopia LLC nor the names of its contributors
|
13
|
+
may be used to endorse or promote products derived from this software
|
14
|
+
without specific prior written permission.
|
17
15
|
|
18
16
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
17
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
18
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
-
DISCLAIMED. IN NO EVENT SHALL
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
19
|
+
DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
20
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
21
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
22
|
+
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
23
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
24
|
+
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
25
|
+
OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.markdown
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
# uirusu
|
1
|
+
# uirusu [](https://travis-ci.org/arxopia/uirusu)
|
2
2
|
|
3
3
|
uirusu is an [Virustotal](http://www.virustotal.com) automation and convenience tool for hash, file and URL submission.
|
4
4
|
|
5
|
-
The current version is 0.0.
|
5
|
+
The current version is 0.0.10.
|
6
6
|
|
7
7
|
## Requirements
|
8
8
|
|
9
|
-
* ruby
|
9
|
+
* ruby 2.0+
|
10
10
|
* json
|
11
11
|
* rest-client
|
12
12
|
* **public api key from [virustotal.com](http://www.virustotal.com)**
|
@@ -16,8 +16,6 @@ The current version is 0.0.8.
|
|
16
16
|
% gem install uirusu
|
17
17
|
% uirusu [options]
|
18
18
|
|
19
|
-
## Setup is fairly easy
|
20
|
-
|
21
19
|
### Create your configuration file
|
22
20
|
% uirusu --create-config
|
23
21
|
|
@@ -55,30 +53,29 @@ The current version is 0.0.8.
|
|
55
53
|
require 'rubygems'
|
56
54
|
require 'uirusu'
|
57
55
|
|
58
|
-
|
56
|
+
API_KEY = "YOUR API KEY HERE"
|
59
57
|
|
60
58
|
hash = "FD287794107630FA3116800E617466A9" #Hash for a version of Poison Ivy
|
61
59
|
url = "http://www.google.com"
|
62
60
|
comment = "Hey this is Poison Ivy, anyone have a copy of this binary?"
|
63
61
|
|
64
62
|
#To query a hash(sha1/sha256/md5)
|
65
|
-
results = Uirusu::VTFile.query_report(
|
63
|
+
results = Uirusu::VTFile.query_report(API_KEY, hash)
|
66
64
|
result = Uirusu::VTResult.new(hash, results)
|
67
65
|
print result.to_stdout if result != nil
|
68
66
|
|
69
67
|
#To scan for a url
|
70
|
-
results = Uirusu::VTUrl.query_report(
|
68
|
+
results = Uirusu::VTUrl.query_report(API_KEY, url)
|
71
69
|
result = Uirusu::VTResult.new(url, results)
|
72
70
|
print result.to_stdout if result != nil
|
73
71
|
|
74
72
|
#To post a comment to a resource(url/hash/scan_id)
|
75
|
-
results = Uirusu::VTComment.post_comment(
|
73
|
+
results = Uirusu::VTComment.post_comment(API_KEY, hash, comment)
|
76
74
|
print results if results != nil
|
77
75
|
```
|
78
76
|
|
79
77
|
##License
|
80
|
-
|
81
78
|
Uirusu is licensed under the BSD license see the `LICENSE` file for the full license.
|
82
79
|
|
83
80
|
## Contact
|
84
|
-
You can reach the team at uirusu[@]arxopia[dot]com
|
81
|
+
You can reach the team at uirusu[@]arxopia[dot]com, http://www.arxopia.com, or contact hammackj on IRC @ irc.freenode.net, #risu
|
data/Rakefile
CHANGED
@@ -1,34 +1,31 @@
|
|
1
|
-
# Copyright (c) 2012-
|
1
|
+
# Copyright (c) 2012-2016 Arxopia LLC.
|
2
2
|
# All rights reserved.
|
3
3
|
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without
|
5
5
|
# modification, are permitted provided that the following conditions are met:
|
6
6
|
#
|
7
|
-
# Redistributions of source code must retain the above copyright
|
8
|
-
# this list of conditions and the following disclaimer.
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
15
|
-
# may be used to endorse or promote products derived from this software
|
16
|
-
# without specific prior written permission.
|
7
|
+
# * Redistributions of source code must retain the above copyright
|
8
|
+
# notice, this list of conditions and the following disclaimer.
|
9
|
+
# * Redistributions in binary form must reproduce the above copyright
|
10
|
+
# notice, this list of conditions and the following disclaimer in the
|
11
|
+
# documentation and/or other materials provided with the distribution.
|
12
|
+
# * Neither the name of the Arxopia LLC nor the names of its contributors
|
13
|
+
# may be used to endorse or promote products derived from this software
|
14
|
+
# without specific prior written permission.
|
17
15
|
#
|
18
16
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
17
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
18
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
-
# DISCLAIMED. IN NO EVENT SHALL
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
19
|
+
# DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
20
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
21
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
22
|
+
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
23
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
24
|
+
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
25
|
+
# OF THE POSSIBILITY OF SUCH DAMAGE.
|
28
26
|
|
29
27
|
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
|
30
28
|
|
31
|
-
require 'rubygems'
|
32
29
|
require "uirusu"
|
33
30
|
require 'rake'
|
34
31
|
require 'rake/testtask'
|
@@ -41,13 +38,13 @@ task :tag_and_bag do
|
|
41
38
|
system "git tag -a v#{Uirusu::VERSION} -m 'version #{Uirusu::VERSION}'"
|
42
39
|
system "git push --tags"
|
43
40
|
system "git checkout master"
|
44
|
-
system "git merge
|
41
|
+
system "git merge dev"
|
45
42
|
system "git push"
|
46
43
|
end
|
47
44
|
|
48
45
|
task :release => [:tag_and_bag, :build] do
|
49
46
|
system "gem push #{Uirusu::APP_NAME}-#{Uirusu::VERSION}.gem"
|
50
|
-
puts "Just released #{Uirusu::APP_NAME} v#{Uirusu::VERSION}. #{Uirusu::APP_NAME} is rubygem for using the Virustotal web service! More information at
|
47
|
+
puts "Just released #{Uirusu::APP_NAME} v#{Uirusu::VERSION}. #{Uirusu::APP_NAME} is rubygem for using the Virustotal web service! More information at #{Uirusu::HOME_PAGE}"
|
51
48
|
end
|
52
49
|
|
53
50
|
task :clean do
|
data/bin/uirusu
CHANGED
@@ -1,32 +1,30 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
|
-
# Copyright (c) 2012-
|
3
|
+
# Copyright (c) 2012-2016 Arxopia LLC.
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# Redistribution and use in source and binary forms, with or without
|
7
7
|
# modification, are permitted provided that the following conditions are met:
|
8
8
|
#
|
9
|
-
# Redistributions of source code must retain the above copyright
|
10
|
-
# this list of conditions and the following disclaimer.
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
15
|
-
#
|
16
|
-
#
|
17
|
-
# may be used to endorse or promote products derived from this software
|
18
|
-
# without specific prior written permission.
|
9
|
+
# * Redistributions of source code must retain the above copyright
|
10
|
+
# notice, this list of conditions and the following disclaimer.
|
11
|
+
# * Redistributions in binary form must reproduce the above copyright
|
12
|
+
# notice, this list of conditions and the following disclaimer in the
|
13
|
+
# documentation and/or other materials provided with the distribution.
|
14
|
+
# * Neither the name of the Arxopia LLC nor the names of its contributors
|
15
|
+
# may be used to endorse or promote products derived from this software
|
16
|
+
# without specific prior written permission.
|
19
17
|
#
|
20
18
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
21
19
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
22
20
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
-
# DISCLAIMED. IN NO EVENT SHALL
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
28
|
-
#
|
29
|
-
#
|
21
|
+
# DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
22
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
23
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
24
|
+
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
25
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
26
|
+
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
27
|
+
# OF THE POSSIBILITY OF SUCH DAMAGE.
|
30
28
|
|
31
29
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '/../lib'))
|
32
30
|
|
@@ -1,7 +1,17 @@
|
|
1
1
|
# News
|
2
2
|
|
3
|
+
# 0.0.10 (Novemeber 30, 2016)
|
4
|
+
- Added accessor for Results in the VTResults class
|
5
|
+
- Added initial test for VTFile
|
6
|
+
- Added initial test for VTUrl
|
7
|
+
- Added initial test for Application class
|
8
|
+
- Updated docs on various classes
|
9
|
+
|
10
|
+
# 0.0.9 (Novemeber 22, 2015)
|
11
|
+
- Adds empty options hash as arg to to_json override [kitplummer]
|
12
|
+
|
3
13
|
# 0.0.8 (Novemeber 20, 2015)
|
4
|
-
-
|
14
|
+
- Remove double array bracket [kitplummer]
|
5
15
|
|
6
16
|
# 0.0.7 (August 31, 2015)
|
7
17
|
- Accept HTTP response code 204 as limit-reached code [JasonPoll]
|
File without changes
|
data/lib/uirusu.rb
CHANGED
@@ -1,37 +1,39 @@
|
|
1
|
-
# Copyright (c) 2012-
|
1
|
+
# Copyright (c) 2012-2016 Arxopia LLC.
|
2
2
|
# All rights reserved.
|
3
3
|
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without
|
5
5
|
# modification, are permitted provided that the following conditions are met:
|
6
6
|
#
|
7
|
-
# Redistributions of source code must retain the above copyright
|
8
|
-
# this list of conditions and the following disclaimer.
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
15
|
-
# may be used to endorse or promote products derived from this software
|
16
|
-
# without specific prior written permission.
|
7
|
+
# * Redistributions of source code must retain the above copyright
|
8
|
+
# notice, this list of conditions and the following disclaimer.
|
9
|
+
# * Redistributions in binary form must reproduce the above copyright
|
10
|
+
# notice, this list of conditions and the following disclaimer in the
|
11
|
+
# documentation and/or other materials provided with the distribution.
|
12
|
+
# * Neither the name of the Arxopia LLC nor the names of its contributors
|
13
|
+
# may be used to endorse or promote products derived from this software
|
14
|
+
# without specific prior written permission.
|
17
15
|
#
|
18
16
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
17
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
18
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
-
# DISCLAIMED. IN NO EVENT SHALL
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
19
|
+
# DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
20
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
21
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
22
|
+
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
23
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
24
|
+
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
25
|
+
# OF THE POSSIBILITY OF SUCH DAMAGE.
|
28
26
|
|
29
27
|
module Uirusu
|
30
28
|
APP_NAME = "uirusu"
|
31
|
-
VERSION = "0.0.
|
29
|
+
VERSION = "0.0.10"
|
30
|
+
HOME_PAGE = "http://arxopia.github.io/uirusu"
|
31
|
+
AUTHOR = "Jacob Hammack"
|
32
|
+
EMAIL = "uirusu@arxopia.com"
|
33
|
+
|
32
34
|
CONFIG_FILE = Dir.home + "/.uirusu"
|
33
35
|
VT_API = "https://www.virustotal.com/vtapi/v2"
|
34
|
-
RESULT_FIELDS = [ :hash, :scanner, :version, :detected, :result, :md5, :sha1, :sha256, :update, :permalink]
|
36
|
+
RESULT_FIELDS = [ :hash, :scanner, :version, :detected, :result, :md5, :sha1, :sha256, :update, :permalink ]
|
35
37
|
end
|
36
38
|
|
37
39
|
require 'json'
|
@@ -1,35 +1,35 @@
|
|
1
|
-
# Copyright (c) 2012-
|
1
|
+
# Copyright (c) 2012-2016 Arxopia LLC.
|
2
2
|
# All rights reserved.
|
3
3
|
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without
|
5
5
|
# modification, are permitted provided that the following conditions are met:
|
6
6
|
#
|
7
|
-
# Redistributions of source code must retain the above copyright
|
8
|
-
# this list of conditions and the following disclaimer.
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
15
|
-
# may be used to endorse or promote products derived from this software
|
16
|
-
# without specific prior written permission.
|
7
|
+
# * Redistributions of source code must retain the above copyright
|
8
|
+
# notice, this list of conditions and the following disclaimer.
|
9
|
+
# * Redistributions in binary form must reproduce the above copyright
|
10
|
+
# notice, this list of conditions and the following disclaimer in the
|
11
|
+
# documentation and/or other materials provided with the distribution.
|
12
|
+
# * Neither the name of the Arxopia LLC nor the names of its contributors
|
13
|
+
# may be used to endorse or promote products derived from this software
|
14
|
+
# without specific prior written permission.
|
17
15
|
#
|
18
16
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
17
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
18
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
-
# DISCLAIMED. IN NO EVENT SHALL
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
19
|
+
# DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
20
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
21
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
22
|
+
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
23
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
24
|
+
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
25
|
+
# OF THE POSSIBILITY OF SUCH DAMAGE.
|
28
26
|
|
29
27
|
module Uirusu
|
30
28
|
module CLI
|
31
29
|
class Application
|
32
30
|
|
31
|
+
attr_accessor :config
|
32
|
+
|
33
33
|
# Creates a new instance of the [Application] class
|
34
34
|
#
|
35
35
|
def initialize
|
@@ -53,7 +53,7 @@ module Uirusu
|
|
53
53
|
@options[:directory] = nil
|
54
54
|
|
55
55
|
opt = OptionParser.new do |opt|
|
56
|
-
opt.banner = "#{APP_NAME} v#{VERSION}\nJacob Hammack\
|
56
|
+
opt.banner = "#{APP_NAME} v#{VERSION}\nJacob Hammack\n#{HOME_PAGE}\n\n"
|
57
57
|
opt.banner << "Usage: #{APP_NAME} <options>"
|
58
58
|
opt.separator('')
|
59
59
|
opt.separator('File Options')
|
@@ -115,17 +115,8 @@ module Uirusu
|
|
115
115
|
opt.separator 'Advanced Options'
|
116
116
|
|
117
117
|
opt.on('-c', '--create-config', 'Creates a skeleton config file to use') do
|
118
|
-
|
119
|
-
|
120
|
-
f.write("virustotal: \n api-key: \n timeout: 25\n\n")
|
121
|
-
end
|
122
|
-
|
123
|
-
puts "[*] An empty #{File.expand_path(CONFIG_FILE)} has been created. Please edit and fill in the correct values."
|
124
|
-
exit
|
125
|
-
else
|
126
|
-
puts "[!] #{File.expand_path(CONFIG_FILE)} already exists. Please delete it if you wish to re-create it."
|
127
|
-
exit
|
128
|
-
end
|
118
|
+
create_config
|
119
|
+
exit
|
129
120
|
end
|
130
121
|
|
131
122
|
opt.on('-d DIRECTORY', '--directory', 'Scans a directory recursively for files and submits the hashes') do |directory|
|
@@ -166,11 +157,28 @@ module Uirusu
|
|
166
157
|
end
|
167
158
|
end
|
168
159
|
|
160
|
+
# Create config skeleton
|
161
|
+
#
|
162
|
+
def create_config (file=CONFIG_FILE)
|
163
|
+
f = File.expand_path(file)
|
164
|
+
|
165
|
+
if File.exists?(f) == false
|
166
|
+
File.open(f, 'w+') do |f|
|
167
|
+
f.write("virustotal: \n api-key: \n timeout: 25\n\n")
|
168
|
+
end
|
169
|
+
puts "[*] An empty #{f} has been created. Please edit and fill in the correct values."
|
170
|
+
else
|
171
|
+
puts "[!] #{f} already exists. Please delete it if you wish to re-create it."
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
169
175
|
# Loads the .uirusu config file for the api key
|
170
176
|
#
|
171
|
-
def load_config
|
172
|
-
|
173
|
-
|
177
|
+
def load_config (file=CONFIG_FILE)
|
178
|
+
f = File.expand_path(file)
|
179
|
+
|
180
|
+
if File.exists?(f)
|
181
|
+
@config = YAML.load_file f
|
174
182
|
else
|
175
183
|
STDERR.puts "[!] #{CONFIG_FILE} does not exist. Please run #{APP_NAME} --create-config, to create it."
|
176
184
|
exit
|
data/lib/uirusu/scanner.rb
CHANGED
@@ -1,30 +1,28 @@
|
|
1
|
-
# Copyright (c) 2012-
|
1
|
+
# Copyright (c) 2012-2016 Arxopia LLC.
|
2
2
|
# All rights reserved.
|
3
3
|
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without
|
5
5
|
# modification, are permitted provided that the following conditions are met:
|
6
6
|
#
|
7
|
-
# Redistributions of source code must retain the above copyright
|
8
|
-
# this list of conditions and the following disclaimer.
|
7
|
+
# * Redistributions of source code must retain the above copyright
|
8
|
+
# notice, this list of conditions and the following disclaimer.
|
9
|
+
# * Redistributions in binary form must reproduce the above copyright
|
10
|
+
# notice, this list of conditions and the following disclaimer in the
|
11
|
+
# documentation and/or other materials provided with the distribution.
|
12
|
+
# * Neither the name of the Arxopia LLC nor the names of its contributors
|
13
|
+
# may be used to endorse or promote products derived from this software
|
14
|
+
# without specific prior written permission.
|
9
15
|
#
|
10
|
-
#
|
11
|
-
# this list of conditions and the following disclaimer in the documentation
|
12
|
-
# and/or other materials provided with the distribution.
|
13
|
-
#
|
14
|
-
# Neither the name of the project's author nor the names of its contributors
|
15
|
-
# may be used to endorse or promote products derived from this software
|
16
|
-
# without specific prior written permission.
|
17
|
-
#
|
18
|
-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND
|
16
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
17
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
18
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
-
# DISCLAIMED. IN NO EVENT SHALL
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
19
|
+
# DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
20
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
21
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
22
|
+
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
23
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
24
|
+
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
25
|
+
# OF THE POSSIBILITY OF SUCH DAMAGE.
|
28
26
|
|
29
27
|
require 'pathname'
|
30
28
|
require 'digest/md5'
|
data/lib/uirusu/vtcomment.rb
CHANGED
@@ -1,30 +1,28 @@
|
|
1
|
-
# Copyright (c) 2012-
|
1
|
+
# Copyright (c) 2012-2016 Arxopia LLC.
|
2
2
|
# All rights reserved.
|
3
3
|
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without
|
5
5
|
# modification, are permitted provided that the following conditions are met:
|
6
6
|
#
|
7
|
-
# Redistributions of source code must retain the above copyright
|
8
|
-
# this list of conditions and the following disclaimer.
|
7
|
+
# * Redistributions of source code must retain the above copyright
|
8
|
+
# notice, this list of conditions and the following disclaimer.
|
9
|
+
# * Redistributions in binary form must reproduce the above copyright
|
10
|
+
# notice, this list of conditions and the following disclaimer in the
|
11
|
+
# documentation and/or other materials provided with the distribution.
|
12
|
+
# * Neither the name of the Arxopia LLC nor the names of its contributors
|
13
|
+
# may be used to endorse or promote products derived from this software
|
14
|
+
# without specific prior written permission.
|
9
15
|
#
|
10
|
-
#
|
11
|
-
# this list of conditions and the following disclaimer in the documentation
|
12
|
-
# and/or other materials provided with the distribution.
|
13
|
-
#
|
14
|
-
# Neither the name of the project's author nor the names of its contributors
|
15
|
-
# may be used to endorse or promote products derived from this software
|
16
|
-
# without specific prior written permission.
|
17
|
-
#
|
18
|
-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND
|
16
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
17
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
18
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
-
# DISCLAIMED. IN NO EVENT SHALL
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
19
|
+
# DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
20
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
21
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
22
|
+
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
23
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
24
|
+
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
25
|
+
# OF THE POSSIBILITY OF SUCH DAMAGE.
|
28
26
|
|
29
27
|
module Uirusu
|
30
28
|
# Module for submiting comments to Virustotal.com resources using the
|
data/lib/uirusu/vtfile.rb
CHANGED
@@ -1,30 +1,28 @@
|
|
1
|
-
# Copyright (c) 2012-
|
1
|
+
# Copyright (c) 2012-2016 Arxopia LLC.
|
2
2
|
# All rights reserved.
|
3
3
|
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without
|
5
5
|
# modification, are permitted provided that the following conditions are met:
|
6
6
|
#
|
7
|
-
# Redistributions of source code must retain the above copyright
|
8
|
-
# this list of conditions and the following disclaimer.
|
7
|
+
# * Redistributions of source code must retain the above copyright
|
8
|
+
# notice, this list of conditions and the following disclaimer.
|
9
|
+
# * Redistributions in binary form must reproduce the above copyright
|
10
|
+
# notice, this list of conditions and the following disclaimer in the
|
11
|
+
# documentation and/or other materials provided with the distribution.
|
12
|
+
# * Neither the name of the Arxopia LLC nor the names of its contributors
|
13
|
+
# may be used to endorse or promote products derived from this software
|
14
|
+
# without specific prior written permission.
|
9
15
|
#
|
10
|
-
#
|
11
|
-
# this list of conditions and the following disclaimer in the documentation
|
12
|
-
# and/or other materials provided with the distribution.
|
13
|
-
#
|
14
|
-
# Neither the name of the project's author nor the names of its contributors
|
15
|
-
# may be used to endorse or promote products derived from this software
|
16
|
-
# without specific prior written permission.
|
17
|
-
#
|
18
|
-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND
|
16
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
17
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
18
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
-
# DISCLAIMED. IN NO EVENT SHALL
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
19
|
+
# DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
20
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
21
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
22
|
+
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
23
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
24
|
+
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
25
|
+
# OF THE POSSIBILITY OF SUCH DAMAGE.
|
28
26
|
|
29
27
|
module Uirusu
|
30
28
|
|
data/lib/uirusu/vtresult.rb
CHANGED
@@ -1,30 +1,28 @@
|
|
1
|
-
# Copyright (c) 2012-
|
1
|
+
# Copyright (c) 2012-2016 Arxopia LLC.
|
2
2
|
# All rights reserved.
|
3
3
|
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without
|
5
5
|
# modification, are permitted provided that the following conditions are met:
|
6
6
|
#
|
7
|
-
# Redistributions of source code must retain the above copyright
|
8
|
-
# this list of conditions and the following disclaimer.
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
15
|
-
# may be used to endorse or promote products derived from this software
|
16
|
-
# without specific prior written permission.
|
7
|
+
# * Redistributions of source code must retain the above copyright
|
8
|
+
# notice, this list of conditions and the following disclaimer.
|
9
|
+
# * Redistributions in binary form must reproduce the above copyright
|
10
|
+
# notice, this list of conditions and the following disclaimer in the
|
11
|
+
# documentation and/or other materials provided with the distribution.
|
12
|
+
# * Neither the name of the Arxopia LLC nor the names of its contributors
|
13
|
+
# may be used to endorse or promote products derived from this software
|
14
|
+
# without specific prior written permission.
|
17
15
|
#
|
18
16
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
17
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
18
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
-
# DISCLAIMED. IN NO EVENT SHALL
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
19
|
+
# DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
20
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
21
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
22
|
+
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
23
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
24
|
+
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
25
|
+
# OF THE POSSIBILITY OF SUCH DAMAGE.
|
28
26
|
|
29
27
|
module Uirusu
|
30
28
|
|
@@ -32,6 +30,13 @@ module Uirusu
|
|
32
30
|
class VTResult
|
33
31
|
RESULT_FIELDS = Uirusu::RESULT_FIELDS
|
34
32
|
|
33
|
+
attr_accessor :results
|
34
|
+
|
35
|
+
# Builds a VTResult object based on the hash and results passed to it
|
36
|
+
#
|
37
|
+
# @param hash, Cryptographic hash that was searched
|
38
|
+
# @param results, Results of the search on Virustotal.com
|
39
|
+
#
|
35
40
|
def initialize hash, results
|
36
41
|
if results == nil or results.empty?
|
37
42
|
return
|
data/lib/uirusu/vturl.rb
CHANGED
@@ -1,30 +1,28 @@
|
|
1
|
-
# Copyright (c) 2012-
|
1
|
+
# Copyright (c) 2012-2016 Arxopia LLC.
|
2
2
|
# All rights reserved.
|
3
3
|
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without
|
5
5
|
# modification, are permitted provided that the following conditions are met:
|
6
6
|
#
|
7
|
-
# Redistributions of source code must retain the above copyright
|
8
|
-
# this list of conditions and the following disclaimer.
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
15
|
-
# may be used to endorse or promote products derived from this software
|
16
|
-
# without specific prior written permission.
|
7
|
+
# * Redistributions of source code must retain the above copyright
|
8
|
+
# notice, this list of conditions and the following disclaimer.
|
9
|
+
# * Redistributions in binary form must reproduce the above copyright
|
10
|
+
# notice, this list of conditions and the following disclaimer in the
|
11
|
+
# documentation and/or other materials provided with the distribution.
|
12
|
+
# * Neither the name of the Arxopia LLC nor the names of its contributors
|
13
|
+
# may be used to endorse or promote products derived from this software
|
14
|
+
# without specific prior written permission.
|
17
15
|
#
|
18
16
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
17
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
18
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
-
# DISCLAIMED. IN NO EVENT SHALL
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
19
|
+
# DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
20
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
21
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
22
|
+
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
23
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
24
|
+
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
25
|
+
# OF THE POSSIBILITY OF SUCH DAMAGE.
|
28
26
|
|
29
27
|
module Uirusu
|
30
28
|
#
|
data/uirusu.gemspec
CHANGED
@@ -1,30 +1,28 @@
|
|
1
|
-
# Copyright (c) 2012-
|
1
|
+
# Copyright (c) 2012-2016 Arxopia LLC.
|
2
2
|
# All rights reserved.
|
3
3
|
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without
|
5
5
|
# modification, are permitted provided that the following conditions are met:
|
6
6
|
#
|
7
|
-
# Redistributions of source code must retain the above copyright
|
8
|
-
# this list of conditions and the following disclaimer.
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
15
|
-
# may be used to endorse or promote products derived from this software
|
16
|
-
# without specific prior written permission.
|
7
|
+
# * Redistributions of source code must retain the above copyright
|
8
|
+
# notice, this list of conditions and the following disclaimer.
|
9
|
+
# * Redistributions in binary form must reproduce the above copyright
|
10
|
+
# notice, this list of conditions and the following disclaimer in the
|
11
|
+
# documentation and/or other materials provided with the distribution.
|
12
|
+
# * Neither the name of the Arxopia LLC nor the names of its contributors
|
13
|
+
# may be used to endorse or promote products derived from this software
|
14
|
+
# without specific prior written permission.
|
17
15
|
#
|
18
16
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
17
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
18
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
-
# DISCLAIMED. IN NO EVENT SHALL
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
19
|
+
# DISCLAIMED. IN NO EVENT SHALL ARXOPIA LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
20
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
21
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
22
|
+
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
23
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
24
|
+
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
25
|
+
# OF THE POSSIBILITY OF SUCH DAMAGE.
|
28
26
|
|
29
27
|
base = __FILE__
|
30
28
|
$:.unshift(File.join(File.dirname(base), 'lib'))
|
@@ -34,25 +32,24 @@ require 'uirusu'
|
|
34
32
|
Gem::Specification.new do |s|
|
35
33
|
s.name = Uirusu::APP_NAME
|
36
34
|
s.version = Uirusu::VERSION
|
37
|
-
s.homepage =
|
35
|
+
s.homepage = Uirusu::HOME_PAGE
|
38
36
|
s.summary = Uirusu::APP_NAME
|
39
37
|
s.description = "uirusu is library for interacting with Virustotal.org"
|
40
38
|
s.license = "BSD"
|
41
39
|
|
42
|
-
s.author =
|
43
|
-
s.email =
|
40
|
+
s.author = Uirusu::AUTHOR
|
41
|
+
s.email = Uirusu::EMAIL
|
44
42
|
|
45
43
|
s.files = Dir['[A-Z]*'] + Dir['lib/**/*'] + ['uirusu.gemspec']
|
46
44
|
s.default_executable = 'uirusu'
|
47
45
|
s.executables = ['uirusu']
|
48
46
|
s.require_paths = ["lib"]
|
49
47
|
|
50
|
-
s.required_ruby_version = '>=
|
51
|
-
s.required_rubygems_version = ">= 1.8.16"
|
48
|
+
s.required_ruby_version = '>= 2.0.0'
|
52
49
|
|
53
50
|
s.has_rdoc = 'yard'
|
54
|
-
s.extra_rdoc_files = ["README.markdown", "LICENSE", "NEWS.markdown", "TODO.markdown"]
|
51
|
+
s.extra_rdoc_files = ["README.markdown", "LICENSE", "docs/NEWS.markdown", "docs/TODO.markdown"]
|
55
52
|
|
56
|
-
s.
|
57
|
-
s.
|
53
|
+
s.add_dependency('json', '>= 1.8.3')
|
54
|
+
s.add_dependency('rest-client', '>= 1.6.9')
|
58
55
|
end
|
metadata
CHANGED
@@ -1,72 +1,62 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uirusu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Hammack
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '1.5'
|
20
17
|
- - ">="
|
21
18
|
- !ruby/object:Gem::Version
|
22
|
-
version: 1.
|
19
|
+
version: 1.8.3
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
|
-
- - "~>"
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '1.5'
|
30
24
|
- - ">="
|
31
25
|
- !ruby/object:Gem::Version
|
32
|
-
version: 1.
|
26
|
+
version: 1.8.3
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
name: rest-client
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
36
30
|
requirements:
|
37
|
-
- - "~>"
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: '1.6'
|
40
31
|
- - ">="
|
41
32
|
- !ruby/object:Gem::Version
|
42
|
-
version: 1.6.
|
33
|
+
version: 1.6.9
|
43
34
|
type: :runtime
|
44
35
|
prerelease: false
|
45
36
|
version_requirements: !ruby/object:Gem::Requirement
|
46
37
|
requirements:
|
47
|
-
- - "~>"
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: '1.6'
|
50
38
|
- - ">="
|
51
39
|
- !ruby/object:Gem::Version
|
52
|
-
version: 1.6.
|
40
|
+
version: 1.6.9
|
53
41
|
description: uirusu is library for interacting with Virustotal.org
|
54
|
-
email:
|
42
|
+
email: uirusu@arxopia.com
|
55
43
|
executables:
|
56
44
|
- uirusu
|
57
45
|
extensions: []
|
58
46
|
extra_rdoc_files:
|
59
47
|
- README.markdown
|
60
48
|
- LICENSE
|
61
|
-
- NEWS.markdown
|
62
|
-
- TODO.markdown
|
49
|
+
- docs/NEWS.markdown
|
50
|
+
- docs/TODO.markdown
|
63
51
|
files:
|
52
|
+
- Gemfile
|
53
|
+
- Gemfile.lock
|
64
54
|
- LICENSE
|
65
|
-
- NEWS.markdown
|
66
55
|
- README.markdown
|
67
56
|
- Rakefile
|
68
|
-
- TODO.markdown
|
69
57
|
- bin/uirusu
|
58
|
+
- docs/NEWS.markdown
|
59
|
+
- docs/TODO.markdown
|
70
60
|
- lib/uirusu.rb
|
71
61
|
- lib/uirusu/cli/application.rb
|
72
62
|
- lib/uirusu/scanner.rb
|
@@ -75,7 +65,7 @@ files:
|
|
75
65
|
- lib/uirusu/vtresult.rb
|
76
66
|
- lib/uirusu/vturl.rb
|
77
67
|
- uirusu.gemspec
|
78
|
-
homepage: http://github.
|
68
|
+
homepage: http://arxopia.github.io/uirusu
|
79
69
|
licenses:
|
80
70
|
- BSD
|
81
71
|
metadata: {}
|
@@ -87,17 +77,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
87
77
|
requirements:
|
88
78
|
- - ">="
|
89
79
|
- !ruby/object:Gem::Version
|
90
|
-
version:
|
80
|
+
version: 2.0.0
|
91
81
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
82
|
requirements:
|
93
83
|
- - ">="
|
94
84
|
- !ruby/object:Gem::Version
|
95
|
-
version:
|
85
|
+
version: '0'
|
96
86
|
requirements: []
|
97
87
|
rubyforge_project:
|
98
|
-
rubygems_version: 2.
|
88
|
+
rubygems_version: 2.4.5.1
|
99
89
|
signing_key:
|
100
90
|
specification_version: 4
|
101
91
|
summary: uirusu
|
102
92
|
test_files: []
|
103
|
-
has_rdoc: yard
|