Advertisement
Guest User

Janes1

a guest
Jul 23rd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. cls
  2. REM clears screen prior to running script
  3. echo User Info > enum.txt
  4. net user >> enum.txt
  5. REM user info
  6. echo group info >> enum.txt
  7. net localgroup >> enum.txt
  8. REM group info
  9. echo running processes >> enum.txt
  10. tasklist >> enum.txt
  11. REM running processes
  12. echo running services >> enum.txt
  13. net start >> enum.txt
  14. REM list running services
  15. echo network configuration >> enum.txt
  16. ipconfig >> enum.txt
  17. REM network config
  18. echo Hosts on this network >> enum.txt
  19. netview >> enum.txt
  20. REM hosts on network
  21. echo system configuration >> enum.txt
  22. systeminfo >> enum.txt
  23. REM config
  24. echo key file locations >> enum.txt
  25. dir C:\Users\Student\Desktop >> enum.txt
  26. dir "C:\Program Files" >> enum.txt
  27. REM key locations(where users save things, and files that ID antiviruses, IDS', Etc.
  28. notepad enum.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement