I wanted to share that I found a way to allow no login access to the still image webpage when using the Dafang Hacks firmware on a Wyze Camera V2
You will need to either ssh into your camera or take out the sd card and modify the lighttpd.config file
If accessing via ssh you will need to use vi, or if modifying via the sd card on your computer use a file editor like notepad++.
path via ssh: /system/sdcard/config/lighttpd.conf
path via sd card: \config\lighttpd.conf
once you have opened the file find the following line, should be line 40
$HTTP["url"] !~ "^/.well-known/(.*)" {
and change it to the following
$HTTP["url"] !~ "^/cgi-bin/currentpic.cgi|/.well-known/(.*)" {
save the file and reboot if accessing via ssh or reinstall the sd card in the camera and plug it back in. You should now be able to access the following link via your browser with out logging into the camera web interface
http://xxx.xxx.xxx.xxx/cgi-bin/currentpic.cgi
(replace the xxx.xxx.xxx.xxx
) with your camera ip address or camera host name.
Once you have confirmed that this works you can place the link into the duet web control settings under the web camera config section in the setting page.
What this change does is specifically exempt the path to the currentpic.cgi webpage page from being protected via the login prompt. The rest of the web interface is still protected by the login prompt.
Please note that I have not validated if this change compromises the security of the default config Dafang Hacks firmware, so proceed at your own risk.