Small fixes in powershell modules

This commit is contained in:
Oleksii Shevchuk 2017-07-22 19:10:45 +03:00
parent 4f4834b34f
commit 87b8d363eb
3 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from pupylib.PupyModule import * from pupylib.PupyModule import *
from pupylib.utils.term import consize
__class_name__="Inveigh" __class_name__="Inveigh"
ROOT=os.path.abspath(os.path.join(os.path.dirname(__file__),"..")) ROOT=os.path.abspath(os.path.join(os.path.dirname(__file__),".."))

View File

@ -3,6 +3,7 @@ from pupylib.PupyModule import *
import os import os
import re import re
from pupylib.utils.credentials import Credentials from pupylib.utils.credentials import Credentials
from pupylib.utils.term import consize
__class_name__="Mimikatz_Powershell" __class_name__="Mimikatz_Powershell"
ROOT=os.path.abspath(os.path.join(os.path.dirname(__file__),"..")) ROOT=os.path.abspath(os.path.join(os.path.dirname(__file__),".."))

View File

@ -1,5 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from pupylib.PupyModule import * from pupylib.PupyModule import *
from pupylib.utils.term import consize
import os import os
__class_name__="PowerUp" __class_name__="PowerUp"