pentex 0.1.4 → 0.1.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.
- data/CHANGELOG +6 -0
- data/README +6 -0
- data/lib/pentex.rb +1 -7
- metadata +3 -3
- data/lib/CHANGELOG.txt +0 -3
- data/lib/README.txt +0 -2
data/CHANGELOG
ADDED
data/README
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
= PentEx aka Pentest Extensions
|
2
|
+
This toolset's primarily intent is to enhance the interactive ruby shell (IRB) with functions which may be useful for pentests.
|
3
|
+
Besides of typical hash and conversion functions it also has more complex functions like cisco_7-decoder or a nice hex-output.
|
4
|
+
|
5
|
+
== Installation
|
6
|
+
gem install pentex
|
data/lib/pentex.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pentex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -21,11 +21,11 @@ executables: []
|
|
21
21
|
extensions: []
|
22
22
|
extra_rdoc_files: []
|
23
23
|
files:
|
24
|
-
- lib/CHANGELOG.txt
|
25
24
|
- lib/pentex/core.rb
|
26
25
|
- lib/pentex/irbrc.rb
|
27
26
|
- lib/pentex.rb
|
28
|
-
-
|
27
|
+
- README
|
28
|
+
- CHANGELOG
|
29
29
|
homepage: http://siberas.blogspot.de/2012/03/irb-hacking-extensions.html
|
30
30
|
licenses: []
|
31
31
|
post_install_message:
|
data/lib/CHANGELOG.txt
DELETED
data/lib/README.txt
DELETED
@@ -1,2 +0,0 @@
|
|
1
|
-
= PentEx aka Pentest Extensions =
|
2
|
-
This toolset's primarily intent is to enhance the interactive ruby shell (IRB) with functions which may be useful for pentests. Besides of typical hash and conversion functions it also has more complex functions like cisco_7-decoder or a nice hex-output.
|