Skip to content

Instantly share code, notes, and snippets.

@sandikodev
Last active November 4, 2022 05:10
Show Gist options
  • Save sandikodev/6c6f772949ba0201aa922f8128903ae8 to your computer and use it in GitHub Desktop.
Save sandikodev/6c6f772949ba0201aa922f8128903ae8 to your computer and use it in GitHub Desktop.
cheatsheet
https://www.hikvision.com/content/dam/hikvision/en/support/download/how-to/ipc/How%20to%20Get%20IPC%20MJPEG%20Stream%20via%20HTTP%20Commands.pdf
https://www.hikvision.com/ueditor/net/upload/2017-05-26/df89f1cb-b905-4182-bdb0-661de58584c1.pdf
http://mega-avr.net/file/programmy/IP-camera/HIKVISION/2.SDK/ISAPI/HIKVISION%20ISAPI_2.0-RaCM%20Service.pdf
http://86.49.187.98/Hikvision/Jak%20na%20to/Kamery_DVR_NVR/How%20to%20integrate%20with%20Hikvision%20LPR%20function%20via%20ISAPI.pdf
ftp://ftp.luis.ru/Raznoe/LTV_SDK/LTV_IP_S-Series_API/ISAPI_2.0-PTZ%20Service.pdf
https://11936797612864389938.googlegroups.com/attach/4fbec897364cf/HUNT%20RTSP%20and%20HTTP%20urls.pdf?part=0.1&view=1&vt=ANaJVrHQtZY6rc7ss5P8_hPsEVoagPjQD-5pcKxIXCHiEoNn_sOCsAnV9jRxTekz3i2T19u1bYlYbIRU9JzZJBs7y8vo855cip2x5rNoB0tq5jviERXBNUM
http://en0.ch/2020/08/add-temperature-to-hikvision-camera-overlay/
324284193-HIKCGI-Image-Display-Function.pdf
324284210-HIKCGI-Integration-Guide.pdf
Hikvision ISAPI Core Protocol.pdf
Hikvision-Isapi-2-6-Ipmd-Service.pdf
http://192.168.4.2/ISAPI/Image/channels/1/ISPMode
http://192.168.4.2/ISAPI/Event/notification/alertStream
http://192.168.4.2/ISAPI/Streaming/channels/1/picture
http://192.168.4.2/ISAPI/Streaming/channels/102/httpPreview
http://admin:[email protected]/ISAPI/Streaming/channels/102/httpPreview
auth methodh
-basic
curl -v -u admin:lanis12345 http://192.168.4.2/ISAPI/Event/notification/alertStream
curl http://admin:[email protected]/ISAPI/System/Video/inputs/channels/1/overlays/text/1
curl http://admin:[email protected]/ISAPI/System/status
curl "http://admin:[email protected]/ISAPI/System/dbglog"
-digest
curl --digest http://admin:[email protected]/ISAPI/Image/channels/1
curl --digest http://admin:[email protected]/ISAPI/Image/channels/1/ISPMode
curl --digest http://admin:[email protected]/ISAPI/Streaming/channels
curl --digest http://admin:[email protected]/ISAPI/Streaming/channels/1/capabilities
curl --digest http://admin:[email protected]/ISAPI/System/deviceInfo
curl --digest http://admin:[email protected]/ISAPI/System/Network/capabilities
curl --digest http://admin:[email protected]//ISAPI/System/Network/ipFilter
curl --digest "http://admin:[email protected]/ISAPI/Security/sessionLogin/capabilities?username=admin"
curl -X PUT --digest http://admin:[email protected]/ISAPI/System/reboot
curl -X PUT -d reboot --digest http://admin:[email protected]/ISAPI/System/reboot
curl -X PUT -T ssh_on.xml --digest http://admin:[email protected]/ISAPI/System/Network/ssh
================="ssh.xml-example1"===============
<?xml version="1.0" encoding="UTF-8"?>
<SSH version="2.0" xmlns="http://www.isapi.org/ver20/XMLSchema">
<enabled>true</enabled>
</SSH>
================="ssh.xml-example2"===============
<SSH version="2.0" xmlns="http://www.isapi.org/ver20/XMLSchema">
<enabled>true</enabled>
</SSH>
curl -T monti.xml http://admin:[email protected]/ISAPI/System/Video/inputs/channels/1/motionDetection
=================" monti.xml"=====================
<MotionDetection xmlns="http://www.hikvision.com/ver20/XMLSchema" version="2.0">
<enabled>true</enabled>
<MotionDetectionLayout version="2.0">
</MotionDetectionLayout>
</MotionDetection>
Doesn't work
curl --digest -X PUT -T backyard_night.xml http://test:[email protected]/ISAPI/Image/channels/1
Works
curl --digest -X PUT -T backyard_night.xml http://test:password\[email protected]/ISAPI/Image/channels/1
https://forum.arduino.cc/index.php?topic=375875.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment