This file contains 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
Summary of passwords by sperglord8008s, updated November 1. 2020. For login try "root", "default", "defaul" or "root" | |
00000000 | |
059AnkJ | |
4uvdzKqBkj.jg | |
7ujMko0admin | |
7ujMko0vizxv | |
123 | |
1111 | |
1234 |
This file contains 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
$hcidump --raw | |
> 04 3E 25 02 01 00 00 7C C2 DB A8 65 4C 19 02 01 06 15 16 95 | |
FE 50 20 AA 01 09 7C C2 DB A8 65 4C 0D 10 04 D5 00 28 02 AB | |
7C C2 DB A8 65 4C => mac address | |
Packet size vary from 37 to 41 | |
when 41 temp and humidity are set on the 2 last bytes before CRC | |
28 02 => Humidity => big endian reverse 0228 => to int => 552 => 55.2% |
This file contains 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
// get cookie without FormsAuthentication | |
protected void FormsAuthentication_OnAuthenticate(Object sender, FormsAuthenticationEventArgs args) | |
{ | |
} |
This file contains 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
# | |
# Copyright (C) 2008-2015 OpenWrt.org | |
# | |
# This is free software, licensed under the GNU General Public License v2. | |
# See /LICENSE for more information. | |
# | |
include $(TOPDIR)/rules.mk | |
PKG_NAME:=motion |
This file contains 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
// workaround class | |
public static class StreamExtension | |
{ | |
private static MediaTypeFormatterCollection _defaultMediaTypeFormatterCollection = null; | |
// Using the JsonMediaTypeFormatter for the first time is rather expensive (due to reflection cost | |
// when creating the default contract resolver). Hence we new up a static collection, such | |
// that the second call is much faster. | |
private static MediaTypeFormatterCollection DefaultMediaTypeFormatterCollection | |
{ |