curl -u admin:xxxxxxx http://192.168.0.10/ISAPI/System/Video/inputs/channels/2/MotionDetection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| adb shell settings put secure show_rotation_suggestions 0 | |
| adb shell pm disable-user --user 0 com.samsung.android.calendar | |
| adb shell pm disable-user --user 0 com.appstar.callrecorder | |
| adb shell pm disable-user --user 0 kr.go.nema.disasteralert_new | |
| adb shell pm disable-user --user 0 com.samsung.android.game.gamehome | |
| adb shell pm disable-user --user 0 com.samsung.android.aircommandmanager | |
| adb shell pm disable-user --user 0 com.samsung.android.messaging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # ddg.sh - Search the internet with DuckDuckGo from your terminal | |
| # Made with boredom, on Christmas Eve, by mftrhu | |
| # Requirements: | |
| # awk, curl OR wget, sed, head, tail, grep, tput (MAYBE) | |
| available () { | |
| command -v "$1" >/dev/null 2>&1 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| export ANDROID_SERIAL=`adb devices -l | grep -i oneplus | awk '{print $1}'` | |
| export HOST_PORT=8080 | |
| export IPWEBCAM_PORT=8080 | |
| export V4L2_DEVICE=/dev/video0 | |
| function start_screen_mirror(){ | |
| if [ ! `pgrep scrcpy` ];then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://sample.vodobox.net/skate_phantom_flex_4k/skate_phantom_flex_4k.m3u8 | |
| http://playertest.longtailvideo.com/adaptive/wowzaid3/playlist.m3u8 | |
| http://cdn-fms.rbs.com.br/vod/hls_sample1_manifest.m3u8 | |
| http://nasatv-lh.akamaihd.net/i/NASA_101@319270/index_1000_av-p.m3u8?sd=10&rebase=on | |
| http://content.jwplatform.com/manifests/vM7nH0Kl.m3u8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| DBUSER="root" | |
| DBPASS="" | |
| DB="test" | |
| SCHEMAPATH="__sql" | |
| if [ ! -d "$SCHEMAPATH" ]; then | |
| mkdir $SCHEMAPATH | |
| if [ "$(uname)" == "Darwin" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # At 9, 13, 16 and 19 hour every monday, tuesday, wednesday, thursday and friday | |
| * 9,13,16,19 * * 1,2,3,4,5 root /Applications/XAMPP/xamppfiles/bin/mysqldump -u root --all-databases | gzip > /Users/pierrick/Documents/Backups/Sites/database_`date +"%m_%d_%Y_%H_%M"`.sql.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // https://www.reddit.com/r/ethdev/comments/7jyzlw/50_in_ether_prize_for_puzzle_in_this_tweet/ | |
| // npm i bip39 ethereumjs-wallet allcombinations shuffle-array | |
| const bip39 = require("bip39"); | |
| const hdkey = require('ethereumjs-wallet/hdkey'); | |
| const allcombinations = require('allcombinations'); | |
| const shuffle = require('shuffle-array'); | |
| let words = 'bright summer public tenant avocado chef depend romance school reason help start'; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cat /dev/urandom | tr -dc 'a-zA-Z0-9-_!@#$%^&*()_+{}|:<>?=' | fold -w 32 | head -n 5 | |
| # cat /dev/urandom | tr -dc 'a-zA-Z0-9._!@#$%^&*()' | fold -w 8 | head -n 500000 > wordlist.txt | |
| # cat /dev/urandom | tr -dc 'a-zA-Z0-9-_!@#$%^&*()_+{}|:<>?=' | fold -w 12 | head -n 4 | |
| # cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 | |
| # cat /dev/urandom | base64 | tr -d '[^:alnum:]' | cut -c1-10 | head -2 | |
| # cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 10 | head -n 4 | |
| # cat /dev/urandom| tr -dc 'a-zA-Z0-9-_!@#$%^&*()_+{}|:<>?='|fold -w 12| head -n 4| grep -i '[!@#$%^&*()_+{}|:<>?=]' | |
| # < /dev/urandom tr -dc '[:print:]' |fold -w 10| head -n 10 | |
| # tr -cd '[:alnum:]' < /dev/urandom | fold -w30 | head -n2 |