HELP XD - Script
#6
Just use unxutils grep. Just a single executable. So if I understand correctly do something like
Code:
for i in $(cat usernamelist); do grep $i user:hash; done
for linux. For windows use powershell maybe.
Code:
foreach ($i in (Get-Content .\userlist)) {Select-String $i .\user:hash}
That is only powershell.


Messages In This Thread
HELP XD - Script - by NameUser - 02-16-2014, 05:06 AM
RE: HELP XD - Script - by atom - 02-16-2014, 10:52 AM
RE: HELP XD - Script - by NameUser - 02-16-2014, 05:28 PM
RE: HELP XD - Script - by magnum - 02-17-2014, 12:16 AM
RE: HELP XD - Script - by NameUser - 02-17-2014, 12:48 AM
RE: HELP XD - Script - by coolbry95 - 02-17-2014, 01:15 AM