metasploit-framework/spec/lib/rex/encoder/alpha2/alpha_upper_spec.rb

95 lines
2.0 KiB
Ruby

# -*- coding:binary -*-
require 'spec_helper'
require 'rex/encoder/alpha2/alpha_upper'
describe Rex::Encoder::Alpha2::AlphaUpper do
it_behaves_like 'Rex::Encoder::Alpha2::Generic'
let(:decoder_stub) do
"VTX30VX4AP0A3HH0A00ABAABTAAQ2AB2BB0BBXP8ACJJI"
end
let(:reg_signature) do
{
'EAX' => 'PY',
'ECX' => 'I',
'EDX' => 'RY',
'EBX' => 'SY',
'ESP' => 'TY',
'EBP' => 'UY',
'ESI' => 'VY',
'EDI' => 'WY'
}
end
describe ".default_accepted_chars" do
subject { described_class.default_accepted_chars }
it { is_expected.to eq(('B' .. 'Z').to_a + ('0' .. '9').to_a) }
end
describe ".gen_decoder_prefix" do
subject(:decoder_prefix) { described_class.gen_decoder_prefix(reg, offset) }
let(:reg) { 'ECX' }
let(:offset) { 5 }
it "returns decoder prefix" do
is_expected.to include(reg_signature[reg])
end
context "when invalid reg name" do
let(:reg) { 'NON EXISTENT' }
let(:offset) { 0 }
it "raises an error" do
expect { decoder_prefix }.to raise_error(ArgumentError)
end
end
context "when offset is bigger than 20" do
let(:reg) { 'ECX' }
let(:offset) { 25 }
it "raises an error" do
expect { decoder_prefix }.to raise_error
end
end
end
describe ".gen_decoder" do
subject(:decoder) { described_class.gen_decoder(reg, offset) }
let(:reg) { 'ECX' }
let(:offset) { 5 }
it "returns the alpha upper decoder" do
is_expected.to include(decoder_stub)
end
it "uses the correct decoder prefix" do
is_expected.to include(reg_signature[reg])
end
context "when invalid reg name" do
let(:reg) { 'NON EXISTENT' }
let(:offset) { 0 }
it "raises an error" do
expect { decoder }.to raise_error(ArgumentError)
end
end
context "when offset is bigger than 20" do
let(:reg) { 'ECX' }
let(:offset) { 25 }
it "raises an error" do
expect { decoder }.to raise_error
end
end
end
end