Skip to content

Commit

Permalink
Added the php/hex_encode encoder (closes #175).
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Aug 14, 2024
1 parent 11655db commit 9918409
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ $ ronin-payloads encoders
js/hex_encode
js/node/base64_encode
php/base64_encode
php/hex_encode
powershell/hex_encode
python/base64_encode
python/hex_encode
Expand Down
70 changes: 70 additions & 0 deletions lib/ronin/payloads/encoders/builtin/php/hex_encode.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# frozen_string_literal: true
#
# ronin-payloads - A Ruby micro-framework for writing and running exploit
# payloads.
#
# Copyright (c) 2007-2024 Hal Brodigan (postmodern.mod3 at gmail.com)
#
# ronin-payloads is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ronin-payloads is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with ronin-payloads. If not, see <https://www.gnu.org/licenses/>.
#

require 'ronin/payloads/encoders/php_encoder'
require 'ronin/support/encoding/hex'

module Ronin
module Payloads
module Encoders
module PHP
#
# A php encoder that encodes the given PHP code as an hex string, then
# decodes it using `hex2bin()`, and then evaluates the decoded PHP code
# using `eval()`.
#
# echo 'PWNED'; -> eval(hex2bin("6563686f202750574e4544273b"))
#
# @since 0.3.0
#
class HexEncode < PHPEncoder

register 'php/hex_encode'

summary 'Encodes PHP as a hex string'

description <<~DESC
Encodes the given PHP code as an hex string, then decodes it using
`hex2bin()`, and then evaluates the decoded PHP code using `eval()`.
echo 'PWNED'; -> eval(hex2bin("6563686f202750574e4544273b"))
DESC

#
# Encodes the given PHP code.
#
# @param [String] php
# The PHP code to encode.
#
# @return [String]
#
def encode(php)
hex = Support::Encoding::Hex.encode(php)

%{eval(hex2bin("#{hex}"))}
end

end
end
end
end
end
17 changes: 17 additions & 0 deletions spec/encoders/builtin/php/hex_encode_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
require 'spec_helper'
require 'ronin/payloads/encoders/builtin/php/hex_encode'

describe Ronin::Payloads::Encoders::PHP::HexEncode do
it "must inherit from Ronin::Payloads::Encoders::PHPEncoder" do
expect(described_class).to be < Ronin::Payloads::Encoders::PHPEncoder
end

describe "#encode" do
let(:php) { "echo 'PWNED';" }
let(:encoded) { %{eval(hex2bin("6563686f202750574e4544273b"))} }

it "must encode the given PHP code as a hex string and embed it into the 'eval(hex2bin(\"...\"))' string" do
expect(subject.encode(php)).to eq(encoded)
end
end
end

0 comments on commit 9918409

Please sign in to comment.