Skip to content
This repository was archived by the owner on Dec 6, 2023. It is now read-only.

Commit 433a98f

Browse files
author
byt3bl33d3r
committed
Fixed namspace error when injecting an exe
1 parent 9ebc955 commit 433a98f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/powershell.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ def inject_exe_dll(self):
9696
if settings.args.procid:
9797
command += " -ProcID {}"
9898

99-
if settings.args.inject == 'exe' and settings.args.exesettings.args:
100-
command += " -Exesettings.args \"{}\"".format(settings.args.exesettings.args)
99+
if settings.args.inject == 'exe' and settings.args.exeargs:
100+
command += " -Exesettings.args \"{}\"".format(settings.args.exeargs)
101101

102102
command += ';'
103103

0 commit comments

Comments
 (0)