Steps I've done:
- opened binary in Ghidra debugger.
- searched "User_not_recognized." All fields
- pressed Ctrl+E (show decompliler) and analyzed FUN_140019fa0
- noticed two if/else for user/password ... thats where patches should be applied
replace CTRL+SHIFT+G (Patch intstruction)
14001a0cb 74 74 JZ LAB_14001a141
with
14001a0cb eb 74 JMP LAB_14001a141
replace CTRL+SHIFT+G (Patch intstruction)
14001a18e 0f 84 81 JZ LAB_14001a215
00 00 00
with
14001a18e 48 e9 81 JMP LAB_14001a215
00 00 00
Export modified exe and run =)