NoGoolag
4.54K subscribers
13.1K photos
6.88K videos
587 files
14.1K links
Live free!

πŸ“‘ @NoGoolag

FAQ:
http://t.me/NoGoolag/169

β˜…Group:
https://t.me/joinchat/nMOOE4YJPDFhZjZk

πŸ“‘ @Libreware

πŸ“‘ @TakeBackOurTech

🦊 @d3_works

πŸ“š @SaveAlexandria

πŸ’― % satire OSINT
Download Telegram
hblock
Improve your security and privacy by blocking ads, tracking and malware domains.

This POSIX-compliant shell script, designed for Unix-like systems, gets a list of domains that serve ads, tracking scripts and malware from multiple sources (see below) and creates a hosts file (alternative formats are also supported) that prevents your system from connecting to them.

https://hblock.molinero.xyz

https://github.com/hectorm/hblock


adaway.org https://adaway.org/hosts.txt
AdBlock NoCoin List https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/hosts.txt
AdGuard - Simplified https://filters.adtidy.org/extension/chromium/filters/15.txt
anudeepND - adservers https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt
disconnect.me - Ad https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt
disconnect.me - Malvertising https://s3.amazonaws.com/lists.disconnect.me/simple_malvertising.txt
disconnect.me - Malware https://s3.amazonaws.com/lists.disconnect.me/simple_malware.txt
disconnect.me - Tracking https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt
EasyList https://easylist.to/easylist/easylist.txt
EasyPrivacy https://easylist.to/easylist/easyprivacy.txt
ETH Phishing Detect https://raw.githubusercontent.com/MetaMask/eth-phishing-detect/master/src/hosts.txt
FadeMind - add.2o7Net https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.2o7Net/hosts
FadeMind - add.Dead https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Dead/hosts
FadeMind - add.Risk https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Risk/hosts
FadeMind - add.Spam https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Spam/hosts
KADhosts https://raw.githubusercontent.com/azet12/KADhosts/master/KADhosts.txt
malwaredomainlist.com https://www.malwaredomainlist.com/hostslist/hosts.txt
malwaredomains.com - Immortal domains http://mirror1.malwaredomains.com/files/immortal_domains.txt
malwaredomains.com - Just domains http://mirror1.malwaredomains.com/files/justdomains
matomo.org - Spammers https://raw.githubusercontent.com/matomo-org/referrer-spam-blacklist/master/spammers.txt
mitchellkrogza - Badd-Boyz-Hosts https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/master/hosts
pgl.yoyo.org https://pgl.yoyo.org/adservers/serverlist.php?hostformat=nohtml&mimetype=plaintext
ransomwaretracker.abuse.ch https://ransomwaretracker.abuse.ch/downloads/RW_DOMBL.txt
someonewhocares.org http://someonewhocares.org/hosts/hosts
spam404.com https://raw.githubusercontent.com/Dawsey21/Lists/master/main-blacklist.txt
StevenBlack https://raw.githubusercontent.com/StevenBlack/hosts/master/data/StevenBlack/hosts
winhelp2002.mvps.org http://winhelp2002.mvps.org/hosts.txt
ZeroDot1 - CoinBlockerLists https://zerodot1.gitlab.io/CoinBlockerLists/hosts_browser
zeustracker.abuse.ch https://zeustracker.abuse.ch/blocklist.php?download=domainblocklist


πŸ“‘ @NoGoolag
#hblock #hosts #list #adblock #tracker #malware #shell #script
A way to programmatically disable the "Find my device" in gapps from being a device administrator

The trick is to disable gms - which clears device admin status, and then enable it again:

pm disable-user com.google.android.gms
pm enable com.google.android.gms

I know most of you don't have GApps at all on board, but still it might be useful to know.
Best is, to run the script at boot, with a delay - in order to kick in only after "Find my device" was reactivated and kill it for good.

#!/system/bin/sh

(
sleep 60
pm disable-user com.google.android.gms
pm enable com.google.android.gms
) &

Commands are in a backgrounded subshell in order not to delay boot.
Best way would be, to put it in your init.d, or execute it from Kernel Adiutor, or with Magisk boot hooks and put it in /data/adb/post-fs-data.d/.

Source, last (unvoted!) comment here:
https://stackoverflow.com/questions/13911444/disable-deviceadmin-from-shell


πŸ“‘ @NoGoolag
#find #findmydevice #disable #device #administrator #google #gms #script #shell #gapps