pentex 0.1.3 → 0.1.4

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.
@@ -0,0 +1,3 @@
1
+ = Version 0.1.4 =
2
+ + added changelog file
3
+ + added autoloading of IRB modification
@@ -1,2 +1,2 @@
1
1
  = PentEx aka Pentest Extensions =
2
- Tool collection for various kind of trans-formation/-coding often necessary during a pentest/audit/fun ...
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.
@@ -1 +1,14 @@
1
1
  require 'pentex/core'
2
+
3
+ #if defined?(IRB)
4
+ if $DEBUG
5
+ puts "= DEBUG ="
6
+ puts self
7
+ puts self.methods.sort
8
+
9
+ end
10
+
11
+ if $0 == 'irb'
12
+ puts "Need to tweak IRB ..." if $DEBUG
13
+ require 'pentex/irbrc'
14
+ end
@@ -22,7 +22,7 @@ end
22
22
  #:nodoc:
23
23
  class IRB::Irb
24
24
  def output_value
25
- text =
25
+ text =
26
26
  if @context.inspect?
27
27
  sprintf @context.return_format, @context.last_value.inspect
28
28
  else
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.3
4
+ version: 0.1.4
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-02 00:00:00.000000000Z
12
+ date: 2012-04-03 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.
@@ -21,11 +21,12 @@ executables: []
21
21
  extensions: []
22
22
  extra_rdoc_files: []
23
23
  files:
24
- - lib/irb/irbrc.rb
24
+ - lib/CHANGELOG.txt
25
25
  - lib/pentex/core.rb
26
+ - lib/pentex/irbrc.rb
26
27
  - lib/pentex.rb
27
28
  - lib/README.txt
28
- homepage: http://www.siberas.de
29
+ homepage: http://siberas.blogspot.de/2012/03/irb-hacking-extensions.html
29
30
  licenses: []
30
31
  post_install_message:
31
32
  rdoc_options: []
@@ -50,3 +51,4 @@ signing_key:
50
51
  specification_version: 3
51
52
  summary: PENTEX - Pentesting Extensions
52
53
  test_files: []
54
+ has_rdoc: