rubypwn 0.0.4 → 0.0.5

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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/Gemfile +5 -0
  4. data/README +0 -0
  5. data/rubypwn.gemspec +16 -0
  6. metadata +10 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 01b96c2e261eee2c118b7dc208767d67ef868391
4
- data.tar.gz: 25ad245bc82ae024a93345700aeeb1d45d75120d
3
+ metadata.gz: 911faba6711736b3d858375a05a69b6e75f27790
4
+ data.tar.gz: 42512731e0e814a72710c67dcb32751c067ff602
5
5
  SHA512:
6
- metadata.gz: a3900148bab54acc8af46f87d2b9eaa4f5323ce7011af24cf74c5f4140f900eb8ec3103c3433aaf5e8ddf6fb81e6033d368bfbca21923527bc93ff10db2b9a75
7
- data.tar.gz: a168e38b28c056aea7e59a4c9d73b959615cee85e4a5edb03a9f95b4288739ce41ff6297031dce004ade65a5708dcefb58b0ddde2170e674b530978586e7f6aa
6
+ metadata.gz: 2a0ad7d5c746f713d9bc5aa90547205226561bf41250cca4f69175bd46b6b638877c5bafdb2624616731ecda95c1d07bd51fde561f4b95c9cd5c8d8e5c899bd0
7
+ data.tar.gz: 381b1cab28b28d4de7b66a4db5e22b0b47608fe907b2db2ce046b8e7b868cae51372a57abaa2f7413d795e43b84247b7453d2d4ab67d12d28360362371561c5f
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ .DS_Store
2
+ Gemfile.lock
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rainbow'
4
+ gem 'thread'
5
+ gem 'rest-client'
data/README ADDED
File without changes
data/rubypwn.gemspec ADDED
@@ -0,0 +1,16 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'rubypwn'
3
+ s.version = '0.0.5'
4
+ s.date = '2015-08-26'
5
+ s.summary = "pwntools - ruby version"
6
+ s.description = <<-DESCRIPTION.strip.gsub(/\s+/, " ")
7
+ A simple library for CTF pwning challegnges.
8
+ Like Python's pwntools, it's used to help you for writing exploit.
9
+ DESCRIPTION
10
+ s.authors = ["Su, Hung Chi"]
11
+ s.email = 'atdog.tw@gmail.com'
12
+ s.files = `git ls-files`.split("\n")
13
+ s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
14
+ s.homepage = 'https://github.com/atdog/rubypwn/'
15
+ s.license = 'MIT'
16
+ end
metadata CHANGED
@@ -1,27 +1,32 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubypwn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
- - atdog
7
+ - Su, Hung Chi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2015-08-26 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: pwn tools
13
+ description: A simple library for CTF pwning challegnges. Like Python's pwntools,
14
+ it's used to help you for writing exploit.
14
15
  email: atdog.tw@gmail.com
15
16
  executables: []
16
17
  extensions: []
17
18
  extra_rdoc_files: []
18
19
  files:
20
+ - ".gitignore"
21
+ - Gemfile
22
+ - README
19
23
  - lib/asm.rb
20
24
  - lib/basic.rb
21
25
  - lib/exec.rb
22
26
  - lib/netcat.rb
23
27
  - lib/rubypwn.rb
24
- homepage: http://rubygems.org/gems/rubypwn
28
+ - rubypwn.gemspec
29
+ homepage: https://github.com/atdog/rubypwn/
25
30
  licenses:
26
31
  - MIT
27
32
  metadata: {}
@@ -44,5 +49,5 @@ rubyforge_project:
44
49
  rubygems_version: 2.4.8
45
50
  signing_key:
46
51
  specification_version: 4
47
- summary: pwn tools - ruby version
52
+ summary: pwntools - ruby version
48
53
  test_files: []