Skip to content

Commit c67cc5f

Browse files
committed
Update the command spec with the new exception
1 parent 3c1469d commit c67cc5f

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

spec/rex/powershell/command_spec.rb

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# -*- coding:binary -*-
22
require 'spec_helper'
33

4-
54
def decompress(code)
65
if code =~ /powershell.exe.*(?:-c|-Command)\s(.*)$/
76
code = Regexp.last_match(1).gsub("''", "'")
@@ -163,26 +162,19 @@ def decompress(code)
163162

164163
context 'when payload is huge' do
165164
it 'should raise an exception' do
166-
except = false
167-
begin
168-
code = subject.cmd_psh_payload(Rex::Text.rand_text_alpha(12000), arch, template_path, method: psh_method)
169-
rescue RuntimeError => e
170-
except = true
171-
end
172-
173-
expect(except).to be_truthy
165+
expect { subject.cmd_psh_payload(Rex::Text.rand_text_alpha(12000), arch, template_path, method: psh_method) }.to raise_error(Rex::Powershell::Exceptions::PowershellCommandLengthError)
174166
end
175167
end
176168

177169
context 'when persist is true' do
178-
it 'should add a persistance loop' do
170+
it 'should add a persistence loop' do
179171
code = subject.cmd_psh_payload(payload, arch, template_path, persist: true, method: psh_method)
180172
expect(decompress(code).include?('while(1){Start-Sleep -s ')).to be_truthy
181173
end
182174
end
183175

184176
context 'when persist is false' do
185-
it 'shouldnt add a persistance loop' do
177+
it 'should not add a persistence loop' do
186178
code = subject.cmd_psh_payload(payload, arch, template_path, persist: false, method: psh_method)
187179
expect(decompress(code).include?('while(1){Start-Sleep -s ')).to be_falsey
188180
end

0 commit comments

Comments
 (0)