I'm trying to figure out if JCIFS and NTLMv2 browser logins will actually work.
No password is passed from browser to server, but there are password hashes.
When you ask Smb.login() to process it ends up at
public static byte[] nTOWFv2(String domain, String username, String password)
Which instantly tries to convert a null password to a byte array. Am I doing it wrong or does JCIFS just not understand NTLMv2 via a browser?