Bit of a strange one here, i have a CCTV system and contacted the manufacturers to asked if there was an API. The answer was no.

I've been trying to understand how i can take the live jpeg picture and use it in my own app (c#).

here is a link to the liveview page that displays the the live feeds; http://pastebin.com/jCp4jZRh

The line i'm interested in is;

img_buf[0].src = "ivop.get?action=live&piccnt=0&THREAD_ID=" + thd_id;

Now piccnt seems to be for stopping browsers caching the data, so this number keeps changing and thd_id seems to be the channel number. When trying to access this i get the following message;

Authentication Error:Access Denied, authentication error

Even if i log in first, then try the above url with my own contect i still retrieve the access denied message.

Heres the source to the login page; http://pastebin.com/q7nLJ4tk heres the source to the md5.js file; http://pastebin.com/du1ggaQB

I'm just a little stuck on how to auth then display the feed, does anyone have any pointers?

thanks

link|improve this question

69% accept rate
Have you tried specifying a full URL? – Pekka May 18 '11 at 20:49
Also, you could look at the data which is sent with the request to see if there is something you have missed. – rzetterberg May 18 '11 at 20:51
the full url is; 'mlogin.get?account=admin&passwd=7be6e9f648eeafc6344e52d4034bb8c4&key=rM4oQD1C4J‌​6JLGi1ILf6c3TIfAfUwRjIIPUAqh1D4wZw26XuFserODhntU7ZNoBh&Submit=Login' passwd being the password in md5. not sure what the random key is though – Nathan May 18 '11 at 20:55
feedback

3 Answers

up vote 0 down vote accepted

I answered a similar question awhile back, and the solution ended up being that you had to set the referrer.

In any case, to find your solution, download a copy of Fiddler.

Once running, hit your camera page, and you will see several requests. When you find one of the requests for ivop.get, drag it into the request builder and execute it a second time.

If after executing it a second time it still works (check using the inspectors), then start changing the headers, removing bits one by one until you find the key element. I suspect there will either be a cookie, or referrer that is required.

Once you have figured out those elements, it should be easy to make the appropriate request in your application.

If you can post a live URL, I can help you with this.

link|improve this answer
i'd rather not post a live URL on here, but i'd be happy to email you it. If thats ok? drop me an email to nabberuk at gmail.com – Nathan May 18 '11 at 21:05
@Nathan, e-mail sent. – Brad May 18 '11 at 21:06
feedback

Best guess given the limited info available: they're checking the referrer. You can check the details of the requests using Fiddler (you can even replay the request with a slightly different referrer, confirm if that's what's happening, etc). If this is it, you can set the referrer in HTTPWebRequest: http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.referer.aspx

link|improve this answer
feedback

There are many possibilities, and without having access to the source code of the CCTV server, it's hard to say which one it might be.

I'd suggest popping open an HTTP Header sniffing utility (such as https://addons.mozilla.org/en-US/firefox/addon/live-http-headers/ for firefox) and watch the headers for the successful IMG request. Then replay that request using netcat or curl. Once you've got that working, try removing HTTP headers one at a time (you're probably sending some kind of session ID, HTTP Referrer, etc - these may all be important to the CCTV server)

In any case, it's almost certainly going to be important that you at least authenticate with mlogin.get and pass along the resulting session ID in subsequent requests.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.