offensivecomputing 0.1.0 → 0.1.1

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.tar.gz.sig CHANGED
Binary file
data/README.rdoc CHANGED
@@ -2,32 +2,37 @@
2
2
 
3
3
  Rubygem for interacting with OffensiveComputing.net, a malware sharing community. This allows for query and downloading of malware.
4
4
 
5
- oc = OffensiveComputing::MalwareSearch.new(user, pass)
6
- recs = oc.search("4462aae981360f73b0016d69029321b4")
7
- pp recs => [#<struct OffensiveComputing::MalwareResult
8
- md5="4462aae981360f73b0016d69029321b4",
9
- sha1="f8229be77c429c84f4c612a4f106bc54a96a8733",
10
- sha256="f951deff6086a1e68f0d09bd3856f1c1af5c117590443ea05d171a75969bbb63",
11
- filename="4462aae981360f73b0016d69029321b4.EXE",
12
- added=Sat May 26 17:38:23 UTC 2007,
13
- magic="MZ executable for MS-DOS",
14
- packer=nil,
15
- avresults=
16
- [#<struct OffensiveComputing::AVResult
17
- name="ClamAV",
18
- signature="VGEN.735.3">,
19
- #<struct OffensiveComputing::AVResult
20
- name="BitDefender",
21
- signature="GenDropper.MutaGen">,
22
- #<struct OffensiveComputing::AVResult
23
- name="Kaspersky",
24
- signature="Virus.DOS.MutaGen.100.Test.1325">,
25
- #<struct OffensiveComputing::AVResult
26
- name="AVGScan",
27
- signature="Virus found Mutagen">],
28
- tags=nil,
29
- dlurl="download.php?id=1...7&auth=9...e">]
5
+ == installation
30
6
 
7
+ gem install offensivecomputing
8
+
9
+ == usage
10
+
11
+ oc = OffensiveComputing::MalwareSearch.new(user, pass)
12
+ recs = oc.search("4462aae981360f73b0016d69029321b4")
13
+ pp recs => [#<struct OffensiveComputing::MalwareResult
14
+ md5="4462aae981360f73b0016d69029321b4",
15
+ sha1="f8229be77c429c84f4c612a4f106bc54a96a8733",
16
+ sha256="f951deff6086a1e68f0d09bd3856f1c1af5c117590443ea05d171a75969bbb63",
17
+ filename="4462aae981360f73b0016d69029321b4.EXE",
18
+ added=Sat May 26 17:38:23 UTC 2007,
19
+ magic="MZ executable for MS-DOS",
20
+ packer=nil,
21
+ avresults=
22
+ [#<struct OffensiveComputing::AVResult
23
+ name="ClamAV",
24
+ signature="VGEN.735.3">,
25
+ #<struct OffensiveComputing::AVResult
26
+ name="BitDefender",
27
+ signature="GenDropper.MutaGen">,
28
+ #<struct OffensiveComputing::AVResult
29
+ name="Kaspersky",
30
+ signature="Virus.DOS.MutaGen.100.Test.1325">,
31
+ #<struct OffensiveComputing::AVResult
32
+ name="AVGScan",
33
+ signature="Virus found Mutagen">],
34
+ tags=nil,
35
+ dlurl="download.php?id=1...7&auth=9...e">]
31
36
 
32
37
  == Contributing to offensivecomputing
33
38
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -0,0 +1,66 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{offensivecomputing}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["chrislee35"]
12
+ s.cert_chain = ["/Users/chris/Documents/projects/rubygems/offensivecomputing/../gem-public_cert.pem"]
13
+ s.date = %q{2012-09-06}
14
+ s.description = %q{Rubygem for interacting with OffensiveComputing.net, a malware sharing community. This allows for query and downloading of malware}
15
+ s.email = %q{rubygems@chrislee.dhs.org}
16
+ s.extra_rdoc_files = [
17
+ "LICENSE.txt",
18
+ "README.rdoc"
19
+ ]
20
+ s.files = [
21
+ ".document",
22
+ "Gemfile",
23
+ "Gemfile.lock",
24
+ "LICENSE.txt",
25
+ "README.rdoc",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "lib/offensivecomputing.rb",
29
+ "lib/offensivecomputing/offensivecomputing.rb",
30
+ "offensivecomputing.gemspec",
31
+ "test/helper.rb",
32
+ "test/test_offensivecomputing.rb"
33
+ ]
34
+ s.homepage = %q{http://github.com/chrislee35/offensivecomputing}
35
+ s.licenses = ["MIT"]
36
+ s.require_paths = ["lib"]
37
+ s.rubygems_version = %q{1.3.6}
38
+ s.signing_key = %q{/Users/chris/Documents/projects/rubygems/offensivecomputing/../gem-private_key.pem}
39
+ s.summary = %q{Rubygem for interacting with OffensiveComputing.net, a malware sharing community}
40
+
41
+ if s.respond_to? :specification_version then
42
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
43
+ s.specification_version = 3
44
+
45
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
46
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
47
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
48
+ s.add_development_dependency(%q<bundler>, ["~> 1.1.5"])
49
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
50
+ s.add_development_dependency(%q<rcov>, [">= 0"])
51
+ else
52
+ s.add_dependency(%q<shoulda>, [">= 0"])
53
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
54
+ s.add_dependency(%q<bundler>, ["~> 1.1.5"])
55
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
56
+ s.add_dependency(%q<rcov>, [">= 0"])
57
+ end
58
+ else
59
+ s.add_dependency(%q<shoulda>, [">= 0"])
60
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
61
+ s.add_dependency(%q<bundler>, ["~> 1.1.5"])
62
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
63
+ s.add_dependency(%q<rcov>, [">= 0"])
64
+ end
65
+ end
66
+
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - chrislee35
@@ -123,6 +123,7 @@ files:
123
123
  - VERSION
124
124
  - lib/offensivecomputing.rb
125
125
  - lib/offensivecomputing/offensivecomputing.rb
126
+ - offensivecomputing.gemspec
126
127
  - test/helper.rb
127
128
  - test/test_offensivecomputing.rb
128
129
  has_rdoc: true
metadata.gz.sig CHANGED
Binary file