Skip to content

Instantly share code, notes, and snippets.

View npsolution's full-sized avatar

Nicola Passarelli npsolution

View GitHub Profile
@gabonator
gabonator / camera.md
Created June 4, 2016 13:48
Cheap chinese IP camera with H264 encoding based on Hisilicon 8M (Hi3518E) chip

Cheap chinese IP camera with H264 encoding based on Hisilicon 8M (Hi3518E) chip

Video stream url for VLC/DVR:

  • rtsp://192.168.1.93:554/user=admin&password=&channel=&stream=.sdp?real_stream--rtp-caching=100

Telnet access

  • telnet 192.168.1.10 23
  • Localhost login: root
  • Password: xmhdipc
@LinuxlinkedBD
LinuxlinkedBD / revive_adserver.sh
Last active July 27, 2022 13:13
Revive adserver installation on Ubuntu 20.04 LTS
If you need complete Revive-Adserver setup, ping me on below contacts:
Telegram: linuxlinked
email: [email protected]
WhatsApp: +8801720903155
Skype:live:.cid.c0dc316b9d727d5e
YouTube: https://youtu.be/vWIbW8r4XmI
########################################################################################################################################
#!/bin/bash
sudo apt update
sudo apt-get upgrade -y
@cyberkryption
cyberkryption / graylog-install.sh
Last active January 15, 2025 17:36
Graylog 5 Install script
#!/bin/bash
echo "[+] Checking for root permissions"
if [ "$EUID" -ne 0 ];then
echo "Please run this script as root"
exit 1
fi
echo "[+] Seeting needrestart to automatic to prevent restart pop ups"
sudo sed -i 's/#$nrconf{restart} = '"'"'i'"'"';/$nrconf{restart} = '"'"'a'"'"';/g' /etc/needrestart/needrestart.conf