|
1 | 1 | # -*- coding:binary -*-
|
2 | 2 | require 'spec_helper'
|
3 | 3 |
|
4 |
| - |
5 | 4 | def decompress(code)
|
6 | 5 | if code =~ /powershell.exe.*(?:-c|-Command)\s(.*)$/
|
7 | 6 | code = Regexp.last_match(1).gsub("''", "'")
|
@@ -163,26 +162,19 @@ def decompress(code)
|
163 | 162 |
|
164 | 163 | context 'when payload is huge' do
|
165 | 164 | 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) |
174 | 166 | end
|
175 | 167 | end
|
176 | 168 |
|
177 | 169 | context 'when persist is true' do
|
178 |
| - it 'should add a persistance loop' do |
| 170 | + it 'should add a persistence loop' do |
179 | 171 | code = subject.cmd_psh_payload(payload, arch, template_path, persist: true, method: psh_method)
|
180 | 172 | expect(decompress(code).include?('while(1){Start-Sleep -s ')).to be_truthy
|
181 | 173 | end
|
182 | 174 | end
|
183 | 175 |
|
184 | 176 | context 'when persist is false' do
|
185 |
| - it 'shouldnt add a persistance loop' do |
| 177 | + it 'should not add a persistence loop' do |
186 | 178 | code = subject.cmd_psh_payload(payload, arch, template_path, persist: false, method: psh_method)
|
187 | 179 | expect(decompress(code).include?('while(1){Start-Sleep -s ')).to be_falsey
|
188 | 180 | end
|
|
0 commit comments