if it's the same internals as the swann dvr (I suspect it might be since those password hashes match the ones in the swann firmware) I have a method to get a login, albeit relying on opening the box:-
https://twitter.com/velotester/status/282308635139395584
The swann dvr has a ttl-serial interface (115200-8-n) on the board (see above). I connected up to this and you are able to break into the boot process with ctrl-c as soon as it starts.
From there you can invoke runlevel one by:
setenv bootargs mem=68M console=ttyAMA0,115200 root=1f01 rootfstype=jffs2 mtdparts=physmap-flash.0:4M(boot),12M(rootfs),14M(app),2M(para) busclk=220000000 1
and then boot with
bootm 0x80100000
you might need to check those two lines for different boxes, if you issue the command printenv you'll see the bootargs and the boot address.
You'll now have a root login.
From here you can either call passwd to change the password, or if you want to retain the old one you can copy passwd to passwd~ and rename passwd- to passwd which will leave you with the weak broken password "helpme"
You can now reboot and ssh in!