Key | Description | Uses |
audio.safemedia.force | true for safe media volume | https://android.googlesource.com/platform/frameworks/base/+/master/services/core/java/com/android/server/audio/AudioService.java |
config.disable_bluetooth | - | SystemServer |
config.disable_location | - | SystemServer |
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
briankrebs | |
violetblue | |
hdmoore | |
travisgoodspeed | |
troyhunt | |
attritionorg | |
tqbf | |
attrc | |
ErrataRob | |
edskoudis |
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
http://www.guerrillamail.com/ | |
http://www.tempinbox.com/ | |
http://www.mailinator.com | |
http://www.temporaryinbox.com | |
http://www.10minutemail.com/10MinuteMail/index.html | |
http://www.mbx.cc/ | |
http://www.yopmail.com/en/ | |
https://moakt.com | |
http://www.fakenamegenerator.com/ | |
https://temp-mail.org/en/ |
A blog post with more updated info then this has been posted here
All preferences for the DNS-over-HTTPS functionality in Firefox are located under the "network.trr" prefix (TRR == Trusted Recursive Resolver). The support for these are targeted for shipping in release Firefox 62.
set which resolver mode you want.
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
download linux lite 'linux-lite-4.2-64bit.iso' | |
http://mirror.alpix.eu/linuxliteos/isos/4.2/linux-lite-4.2-64bit.iso | |
create a new machine, based on 'linux 2.6' without creating an hard-drive. | |
enter settings/storage, remove everything click [OK], enter settings/storage again add IDE-controller click [OK], enter settings/storage again add cdrom (empty) and new hard-disk (60GB) click [OK]. | |
settings/general: set 'shared-clipboard' and 'dragndrop' to 'bidirectional'. | |
settings/system/processor tab: check ON: 'Enable PAE/NX', select two CPUs. | |
settings/display/screentab: set RAM to 64MB. set 'Graphics Controller' to: 'VBoxVGA'. check ON: 'Enable 3D Acceleration'. | |
settings/shared-folders: add 'C:', 'D:', 'E:',... and select auto-mount for-each. |
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
#!/bin/bash | |
# Modified Pi-hole script to generate a generic hosts file | |
# for use with dnsmasq's addn-hosts configuration | |
# original : https://github.com/jacobsalmela/pi-hole/blob/master/gravity-adv.sh | |
# Address to send ads to. This could possibily be removed, but may be useful for debugging purposes? | |
destinationIP="0.0.0.0" | |
outlist='./final_blocklist.txt' | |
tempoutlist="$outlist.tmp" |