pentex 0.1.6 → 0.1.7
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 +4 -1
- data/README +8 -3
- data/lib/pentex.rb +4 -0
- metadata +2 -2
data/CHANGELOG
CHANGED
@@ -1,9 +1,12 @@
|
|
1
|
+
== Version 0.1.7
|
2
|
+
* fixed issue when checking if pentex is loaded inside IRB
|
3
|
+
|
1
4
|
== Version 0.1.6
|
2
5
|
* now really added .yardopts to gem ;)
|
3
6
|
|
4
7
|
== Version 0.1.5
|
5
8
|
* added .yardopts for better documentation
|
6
9
|
|
7
|
-
== Version 0.1.4
|
10
|
+
== Version 0.1.4
|
8
11
|
* added changelog file
|
9
12
|
* added autoloading of IRB modification
|
data/README
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
= PentEx aka Pentest Extensions
|
2
|
-
|
3
|
-
|
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
4
|
|
5
5
|
== Installation
|
6
|
-
|
6
|
+
First install the gem via
|
7
|
+
$gem install pentex
|
8
|
+
|
9
|
+
For a full featured IRB you also should add the line
|
10
|
+
require 'pentex'
|
11
|
+
to your .irbrc file.
|
data/lib/pentex.rb
CHANGED
@@ -3,6 +3,10 @@ require 'pentex/core'
|
|
3
3
|
|
4
4
|
# Extend IRB if started
|
5
5
|
if $0 == 'irb'
|
6
|
+
unless self.respond_to? :irb
|
6
7
|
puts "Need to tweak IRB ..." if $DEBUG
|
7
8
|
require 'pentex/irbrc'
|
9
|
+
else
|
10
|
+
puts "For tweaking your IRB you have to require this gem inside your .irbrc file."
|
11
|
+
end
|
8
12
|
end
|
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.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-04-
|
12
|
+
date: 2012-04-09 00:00:00.000000000Z
|
13
13
|
dependencies: []
|
14
14
|
description: ! 'This toolset''s primarily intent is to enhance the interactive ruby
|
15
15
|
shell (IRB) with functions which may be useful for pentests.
|