shadowbrokers-exploits/windows/Resources/Tasking/PyScripts/Lib/tasking/systeminfo.py

14 lines
298 B
Python
Raw Normal View History

import dsz
import os
import re
from task import *
class SystemInfo(Task, ):
def __init__(self, file):
Task.__init__(self, file, 'SystemInfo')
def CreateCommandLine(self):
return ['systemversion', 'packages']
TaskingOptions['_systemInfoTasking'] = SystemInfo