shadowbrokers-exploits/windows/Resources/Ops/PyScripts/overseer/plugins/shares.py
2017-04-14 11:45:07 +02:00

12 lines
No EOL
370 B
Python

import dsz
MENU_TEXT = 'Run shares commands'
def main():
dsz.ui.Echo('Running shares -list and shares -query...', dsz.GOOD)
dsz.control.echo.Off()
dsz.cmd.Run('background log shares -list', dsz.RUN_FLAG_RECORD)
dsz.cmd.Run('background log shares -query', dsz.RUN_FLAG_RECORD)
dsz.control.echo.On()
if (__name__ == '__main__'):
main()