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.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/Gemfile +5 -0
- data/README +0 -0
- data/rubypwn.gemspec +16 -0
- metadata +10 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 911faba6711736b3d858375a05a69b6e75f27790
|
4
|
+
data.tar.gz: 42512731e0e814a72710c67dcb32751c067ff602
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a0ad7d5c746f713d9bc5aa90547205226561bf41250cca4f69175bd46b6b638877c5bafdb2624616731ecda95c1d07bd51fde561f4b95c9cd5c8d8e5c899bd0
|
7
|
+
data.tar.gz: 381b1cab28b28d4de7b66a4db5e22b0b47608fe907b2db2ce046b8e7b868cae51372a57abaa2f7413d795e43b84247b7453d2d4ab67d12d28360362371561c5f
|
data/.gitignore
ADDED
data/Gemfile
ADDED
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
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
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:
|
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
|
-
|
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:
|
52
|
+
summary: pwntools - ruby version
|
48
53
|
test_files: []
|