daily autocommit

Joshua Dye 5 years ago
parent 039c26f140
commit 9fcb733d33

@ -283,6 +283,7 @@ maybe chmod 0644 'bash_completion'
maybe chmod 0755 'bash_completion.d'
maybe chmod 0644 'bash_completion.d/fail2ban'
maybe chmod 0644 'bash_completion.d/git-prompt'
maybe chmod 0644 'bash_completion.d/pihole'
maybe chmod 0644 'bash_completion.d/pmount'
maybe chgrp 'bind' 'bind'
maybe chmod 2755 'bind'
@ -369,6 +370,7 @@ maybe chmod 0644 'cron.d/jgdye_ddns'
maybe chmod 0644 'cron.d/jgdye_ping'
maybe chmod 0644 'cron.d/jgdye_rush'
maybe chmod 0644 'cron.d/php'
maybe chmod 0644 'cron.d/pihole'
maybe chmod 0644 'cron.d/sysstat'
maybe chmod 0755 'cron.daily'
maybe chmod 0644 'cron.daily/.placeholder'
@ -687,6 +689,9 @@ maybe chmod 0644 'dhcp/options.conf'
maybe chgrp 'netdev' 'dhcpcd.conf'
maybe chmod 0664 'dhcpcd.conf'
maybe chmod 0644 'dhcpcd.duid'
maybe chmod 0644 'dnsmasq.conf'
maybe chmod 0755 'dnsmasq.d'
maybe chmod 0644 'dnsmasq.d/01-pihole.conf'
maybe chmod 0644 'dphys-swapfile'
maybe chmod 0755 'dpkg'
maybe chmod 0644 'dpkg/dpkg.cfg'
@ -1055,6 +1060,7 @@ maybe chmod 0755 'init.d/nginx'
maybe chmod 0755 'init.d/ofono'
maybe chmod 0755 'init.d/paxctld'
maybe chmod 0755 'init.d/php7.3-fpm'
maybe chmod 0755 'init.d/pihole-FTL'
maybe chmod 0755 'init.d/plymouth'
maybe chmod 0755 'init.d/plymouth-log'
maybe chmod 0755 'init.d/procps'
@ -6123,8 +6129,42 @@ maybe chmod 0644 'php/7.3/mods-available/sysvmsg.ini'
maybe chmod 0644 'php/7.3/mods-available/sysvsem.ini'
maybe chmod 0644 'php/7.3/mods-available/sysvshm.ini'
maybe chmod 0644 'php/7.3/mods-available/tokenizer.ini'
maybe chown 'pihole' 'pihole'
maybe chgrp 'pihole' 'pihole'
maybe chmod 0755 'pihole'
maybe chmod 0644 'pihole/GitHubVersions'
maybe chmod 0644 'pihole/adlists.list'
maybe chmod 0644 'pihole/black.list'
maybe chmod 0644 'pihole/blacklist.txt'
maybe chown 'pihole' 'pihole/dhcp.leases'
maybe chgrp 'pihole' 'pihole/dhcp.leases'
maybe chmod 0644 'pihole/dhcp.leases'
maybe chmod 0644 'pihole/dns-servers.conf'
maybe chmod 0644 'pihole/gravity.list'
maybe chmod 0644 'pihole/install.log'
maybe chmod 0600 'pihole/list.0.raw.githubusercontent.com.domains'
maybe chmod 0600 'pihole/list.1.mirror1.malwaredomains.com.domains'
maybe chmod 0600 'pihole/list.2.sysctl.org.domains'
maybe chmod 0600 'pihole/list.3.zeustracker.abuse.ch.domains'
maybe chmod 0600 'pihole/list.4.s3.amazonaws.com.domains'
maybe chmod 0600 'pihole/list.5.s3.amazonaws.com.domains'
maybe chmod 0600 'pihole/list.6.hosts-file.net.domains'
maybe chmod 0644 'pihole/list.preEventHorizon'
maybe chmod 0644 'pihole/local.list'
maybe chmod 0644 'pihole/localbranches'
maybe chmod 0644 'pihole/localversions'
maybe chmod 0644 'pihole/logrotate'
maybe chmod 0644 'pihole/macvendor.db'
maybe chown 'pihole' 'pihole/pihole-FTL.conf'
maybe chmod 0664 'pihole/pihole-FTL.conf'
maybe chown 'pihole' 'pihole/pihole-FTL.db'
maybe chgrp 'pihole' 'pihole/pihole-FTL.db'
maybe chmod 0644 'pihole/pihole-FTL.db'
maybe chown 'pihole' 'pihole/regex.list'
maybe chgrp 'www-data' 'pihole/regex.list'
maybe chmod 0664 'pihole/regex.list'
maybe chmod 0644 'pihole/setupVars.conf'
maybe chmod 0644 'pihole/whitelist.txt'
maybe chmod 0644 'pip.conf'
maybe chmod 0755 'plymouth'
maybe chmod 0644 'plymouth/plymouthd.conf'
@ -6276,6 +6316,7 @@ maybe chmod 0755 'sudoers.d'
maybe chmod 0440 'sudoers.d/010_at-export'
maybe chmod 0440 'sudoers.d/010_pi-nopasswd'
maybe chmod 0440 'sudoers.d/README'
maybe chmod 0440 'sudoers.d/pihole'
maybe chmod 0644 'sysctl.conf'
maybe chmod 0755 'sysctl.d'
maybe chmod 0644 'sysctl.d/98-rpi.conf'

@ -0,0 +1,79 @@
_pihole() {
local cur prev opts opts_admin opts_checkout opts_chronometer opts_debug opts_interface opts_logging opts_privacy opts_query opts_update opts_version
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
prev2="${COMP_WORDS[COMP_CWORD-2]}"
case "${prev}" in
"pihole")
opts="admin blacklist checkout chronometer debug disable enable flush help logging query reconfigure regex restartdns status tail uninstall updateGravity updatePihole version wildcard whitelist"
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
;;
"whitelist"|"blacklist"|"wildcard"|"regex")
opts_lists="\--delmode \--noreload \--quiet \--list \--nuke"
COMPREPLY=( $(compgen -W "${opts_lists}" -- ${cur}) )
;;
"admin")
opts_admin="celsius email fahrenheit hostrecord interface kelvin password privacylevel"
COMPREPLY=( $(compgen -W "${opts_admin}" -- ${cur}) )
;;
"checkout")
opts_checkout="core ftl web master dev"
COMPREPLY=( $(compgen -W "${opts_checkout}" -- ${cur}) )
;;
"chronometer")
opts_chronometer="\--exit \--json \--refresh"
COMPREPLY=( $(compgen -W "${opts_chronometer}" -- ${cur}) )
;;
"debug")
opts_debug="-a"
COMPREPLY=( $(compgen -W "${opts_debug}" -- ${cur}) )
;;
"logging")
opts_logging="on off 'off noflush'"
COMPREPLY=( $(compgen -W "${opts_logging}" -- ${cur}) )
;;
"query")
opts_query="-adlist -all -exact"
COMPREPLY=( $(compgen -W "${opts_query}" -- ${cur}) )
;;
"updatePihole"|"-up")
opts_update="--check-only"
COMPREPLY=( $(compgen -W "${opts_update}" -- ${cur}) )
;;
"version")
opts_version="\--admin \--current \--ftl \--hash \--latest \--pihole"
COMPREPLY=( $(compgen -W "${opts_version}" -- ${cur}) )
;;
"interface")
if ( [[ "$prev2" == "admin" ]] || [[ "$prev2" == "-a" ]] ); then
opts_interface="$(cat /proc/net/dev | cut -d: -s -f1)"
COMPREPLY=( $(compgen -W "${opts_interface}" -- ${cur}) )
else
return 1
fi
;;
"privacylevel")
if ( [[ "$prev2" == "admin" ]] || [[ "$prev2" == "-a" ]] ); then
opts_privacy="0 1 2 3 4"
COMPREPLY=( $(compgen -W "${opts_privacy}" -- ${cur}) )
else
return 1
fi
;;
"core"|"admin"|"ftl")
if [[ "$prev2" == "checkout" ]]; then
opts_checkout="master dev"
COMPREPLY=( $(compgen -W "${opts_checkout}" -- ${cur}) )
else
return 1
fi
;;
*)
return 1
;;
esac
return 0
}
complete -F _pihole pihole

@ -0,0 +1,36 @@
# Pi-hole: A black hole for Internet advertisements
# (c) 2017 Pi-hole, LLC (https://pi-hole.net)
# Network-wide ad blocking via your own hardware.
#
# Updates ad sources every week
#
# This file is copyright under the latest version of the EUPL.
# Please see LICENSE file for your rights under this license.
#
#
#
# This file is under source-control of the Pi-hole installation and update
# scripts, any changes made to this file will be overwritten when the softare
# is updated or re-installed. Please make any changes to the appropriate crontab
# or other cron file snippets.
# Pi-hole: Update the ad sources once a week on Sunday at a random time in the
# early morning. Download any updates from the adlists
# Squash output to log, then splat the log to stdout on error to allow for
# standard crontab job error handling.
23 3 * * 7 root PATH="$PATH:/usr/local/bin/" pihole updateGravity >/var/log/pihole_updateGravity.log || cat /var/log/pihole_updateGravity.log
# Pi-hole: Flush the log daily at 00:00
# The flush script will use logrotate if available
# parameter "once": logrotate only once (default is twice)
# parameter "quiet": don't print messages
00 00 * * * root PATH="$PATH:/usr/local/bin/" pihole flush once quiet
@reboot root /usr/sbin/logrotate /etc/pihole/logrotate
# Pi-hole: Grab local version and branch every 10 minutes
*/10 * * * * root PATH="$PATH:/usr/local/bin/" pihole updatechecker local
# Pi-hole: Grab remote version every 24 hours
51 16 * * * root PATH="$PATH:/usr/local/bin/" pihole updatechecker remote
@reboot root PATH="$PATH:/usr/local/bin/" pihole updatechecker remote reboot

@ -0,0 +1 @@
conf-dir=/etc/dnsmasq.d

@ -0,0 +1,48 @@
# Pi-hole: A black hole for Internet advertisements
# (c) 2017 Pi-hole, LLC (https://pi-hole.net)
# Network-wide ad blocking via your own hardware.
#
# Dnsmasq config for Pi-hole's FTLDNS
#
# This file is copyright under the latest version of the EUPL.
# Please see LICENSE file for your rights under this license.
###############################################################################
# FILE AUTOMATICALLY POPULATED BY PI-HOLE INSTALL/UPDATE PROCEDURE. #
# ANY CHANGES MADE TO THIS FILE AFTER INSTALL WILL BE LOST ON THE NEXT UPDATE #
# #
# IF YOU WISH TO CHANGE THE UPSTREAM SERVERS, CHANGE THEM IN: #
# /etc/pihole/setupVars.conf #
# #
# ANY OTHER CHANGES SHOULD BE MADE IN A SEPARATE CONFIG FILE #
# WITHIN /etc/dnsmasq.d/yourname.conf #
###############################################################################
addn-hosts=/etc/pihole/gravity.list
addn-hosts=/etc/pihole/black.list
addn-hosts=/etc/pihole/local.list
localise-queries
no-resolv
cache-size=10000
log-queries
log-facility=/var/log/pihole.log
local-ttl=2
log-async
# If a DHCP client claims that its name is "wpad", ignore that.
# This fixes a security hole. see CERT Vulnerability VU#598349
dhcp-name-match=set:wpad-ignore,wpad
dhcp-ignore-names=tag:wpad-ignore
server=127.0.0.1
server=127.0.0.1
interface=eth0

@ -62,3 +62,4 @@ kvm:x:106:
ssl-cert:x:117:
render:x:118:
rush:x:1003:
pihole:x:996:

@ -55,7 +55,6 @@ middle:x:1001:
jgdye:x:1000:
bind:x:113:
Debian-exim:x:114:
duck:x:115:
vnstat:x:116:
systemd-coredump:x:995:
ovalwonder:x:1002:jgdye

@ -62,3 +62,4 @@ kvm:!::
ssl-cert:!::
render:!::
rush:!::
pihole:!::

@ -55,7 +55,6 @@ middle:!::
jgdye:!::
bind:!::
Debian-exim:!::
duck:!::
vnstat:!::
systemd-coredump:!!::
ovalwonder:!::jgdye

@ -0,0 +1,112 @@
#!/bin/bash
### BEGIN INIT INFO
# Provides: pihole-FTL
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: pihole-FTL daemon
# Description: Enable service provided by pihole-FTL daemon
### END INIT INFO
FTLUSER=pihole
PIDFILE=/var/run/pihole-FTL.pid
get_pid() {
pidof "pihole-FTL"
}
is_running() {
ps "$(get_pid)" > /dev/null 2>&1
}
# Start the service
start() {
if is_running; then
echo "pihole-FTL is already running"
else
# Touch files to ensure they exist (create if non-existing, preserve if existing)
touch /var/log/pihole-FTL.log /var/log/pihole.log
touch /run/pihole-FTL.pid /run/pihole-FTL.port
touch /etc/pihole/dhcp.leases
mkdir -p /var/run/pihole
mkdir -p /var/log/pihole
chown pihole:pihole /var/run/pihole /var/log/pihole
# Remove possible leftovers from previous pihole-FTL processes
rm -f /dev/shm/FTL-* 2> /dev/null
rm /var/run/pihole/FTL.sock 2> /dev/null
# Ensure that permissions are set so that pihole-FTL can edit all necessary files
chown pihole:pihole /run/pihole-FTL.pid /run/pihole-FTL.port
chown pihole:pihole /etc/pihole /etc/pihole/dhcp.leases 2> /dev/null
chown pihole:pihole /var/log/pihole-FTL.log /var/log/pihole.log
chmod 0644 /var/log/pihole-FTL.log /run/pihole-FTL.pid /run/pihole-FTL.port /var/log/pihole.log
echo "nameserver 127.0.0.1" | /sbin/resolvconf -a lo.piholeFTL
if setcap CAP_NET_BIND_SERVICE,CAP_NET_RAW,CAP_NET_ADMIN+eip "$(which pihole-FTL)"; then
su -s /bin/sh -c "/usr/bin/pihole-FTL" "$FTLUSER"
else
echo "Warning: Starting pihole-FTL as root because setting capabilities is not supported on this system"
pihole-FTL
fi
echo
fi
}
# Stop the service
stop() {
if is_running; then
/sbin/resolvconf -d lo.piholeFTL
kill "$(get_pid)"
for i in {1..5}; do
if ! is_running; then
break
fi
echo -n "."
sleep 1
done
echo
if is_running; then
echo "Not stopped; may still be shutting down or shutdown may have failed, killing now"
kill -9 "$(get_pid)"
exit 1
else
echo "Stopped"
fi
else
echo "Not running"
fi
echo
}
# Indicate the service status
status() {
if is_running; then
echo "[ ok ] pihole-FTL is running"
exit 0
else
echo "[ ] pihole-FTL is not running"
exit 1
fi
}
### main logic ###
case "$1" in
stop)
stop
;;
status)
status
;;
start|restart|reload|condrestart)
stop
start
;;
*)
echo $"Usage: $0 {start|stop|restart|reload|status}"
exit 1
esac
exit 0

@ -33,3 +33,4 @@ systemd-coredump:x:995:995:systemd Core Dumper:/:/sbin/nologin
mpd:x:103:29::/var/lib/mpd:/usr/sbin/nologin
_rpc:x:113:65534::/run/rpcbind:/usr/sbin/nologin
rush:x:1002:1003:Rush Limbaugh Downloading Account,,,:/home/rush:/bin/bash
pihole:x:999:996::/home/pihole:/usr/sbin/nologin

@ -1,4 +1,4 @@
root:x:0:0:root:/root:/usr/bin/zsh
root:x:0:0:Samwise Root,,,:/root:/usr/bin/zsh
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin

@ -0,0 +1 @@
v4.3.1 v4.3 v4.3.1

@ -0,0 +1,9 @@
Google (ECS);8.8.8.8;8.8.4.4;2001:4860:4860:0:0:0:0:8888;2001:4860:4860:0:0:0:0:8844
OpenDNS (ECS);208.67.222.222;208.67.220.220;2620:0:ccc::2;2620:0:ccd::2
Level3;4.2.2.1;4.2.2.2;;
Comodo;8.26.56.26;8.20.247.20;;
DNS.WATCH;84.200.69.80;84.200.70.40;2001:1608:10:25:0:0:1c04:b12f;2001:1608:10:25:0:0:9249:d69b
Quad9 (filtered, DNSSEC);9.9.9.9;149.112.112.112;2620:fe::fe;2620:fe::9
Quad9 (unfiltered, no DNSSEC);9.9.9.10;149.112.112.10;2620:fe::10;2620:fe::fe:10
Quad9 (filtered + ECS);9.9.9.11;149.112.112.11;2620:fe::11;
Cloudflare;1.1.1.1;1.0.0.1;2606:4700:4700::1111;2606:4700:4700::1001

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -0,0 +1,4 @@
<?php
echo "# ZeuS Tracker has been discontinued on Jul 8th, 2019";
exit();
?>

@ -0,0 +1,38 @@
# Basic tracking list by Disconnect
# License: GPLv3
# Contact: support [at] disconnect.me
adjust.io
airbrake.io
appboy.com
appsflyer.com
apsalar.com
bango.combango.org
bango.net
basic-check.disconnect.me
bkrtx.com
bluekai.com
bugsense.com
burstly.com
chartboost.com
count.ly
crashlytics.com
crittercism.com
custom-blacklisted-tracking-example.com
do-not-tracker.org
eviltracker.net
flurry.com
getexceptional.com
inmobi.com
jumptap.com
localytics.com
mixpanel.com
mobile-collector.newrelic.com
mobileapptracking.com
playtomic.com
stathat.com
supercell.net
tapjoy.com
trackersimulator.org
usergrid.com
vungle.com

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -0,0 +1,2 @@
10.3.14.92 samwise
10.3.14.92 pi.hole

@ -0,0 +1 @@
master master master

@ -0,0 +1 @@
v4.3.1-0-g1a741f6 v4.3-0-g44aff72 v4.3.1

@ -0,0 +1,21 @@
/var/log/pihole.log {
su root root
daily
copytruncate
rotate 5
compress
delaycompress
notifempty
nomail
}
/var/log/pihole-FTL.log {
su root root
weekly
copytruncate
rotate 3
compress
delaycompress
notifempty
nomail
}

Binary file not shown.

@ -0,0 +1 @@
PRIVACYLEVEL=0

@ -0,0 +1,11 @@
PIHOLE_INTERFACE=eth0
IPV4_ADDRESS=10.3.14.92/10
IPV6_ADDRESS=
PIHOLE_DNS_1=127.0.0.1
PIHOLE_DNS_2=127.0.0.1
QUERY_LOGGING=true
INSTALL_WEB_SERVER=false
INSTALL_WEB_INTERFACE=true
LIGHTTPD_ENABLED=false
WEBPASSWORD=4755d509df266ebbb1fe61d5363a2e71aea6a48f96907020e0e9464d1328a005
BLOCKING_ENABLED=true

@ -0,0 +1,238 @@
0.client-channel.google.com
1drv.com
2.android.pool.ntp.org
akamaihd.net
akamaitechnologies.com
akamaized.net
alluremedia.com.au
amazonaws.com
android.clients.google.com
api.ipify.org
api.rlje.net
app-api.ted.com
appleid.apple.com
app.plex.tv
appsbackup-pa.clients6.google.com
appsbackup-pa.googleapis.com
apps.skype.com
apt.sonarr.tv
aspnetcdn.com
attestation.xboxlive.com
ax.phobos.apple.com.edgesuite.net
brightcove.net
bufferapp.com
cdn2.optimizely.com
cdn3.optimizely.com
cdn.cloudflare.net
cdn.embedly.com
cdnjs.cloudflare.com
cdn.optimizely.com
cdn.vidible.tv
cert.mgt.xboxlive.com
clientconfig.passport.net
clients1.google.com
clients2.google.com
clients3.google.com
clients4.google.com
clients5.google.com
clients6.google.com
cpms35.spop10.ams.plex.bz
cpms.spop10.ams.plex.bz
cse.google.com
c.s-microsoft.com
ctldl.windowsupdate.com
d2c8v52ll5s99u.cloudfront.net
d2gatte9o95jao.cloudfront.net
dashboard.plex.tv
dataplicity.com
def-vef.xboxlive.com
delivery.vidible.tv
device.auth.xboxlive.com
dev.virtualearth.net
displaycatalog.mp.microsoft.com
display.ugc.bazaarvoice.com
dl.delivery.mp.microsoft.com
dl.dropbox.com
dl.dropboxusercontent.com
dns.msftncsi.com
download.sonarr.tv
drift.com
driftt.com
dynupdate.no-ip.com
ecn.dev.virtualearth.net
ec-ns.sascdn.com
edge.api.brightcove.com
eds.xboxlive.com
fonts.gstatic.com
forums.sonarr.tv
geo3.ggpht.com
geo-prod.do.dsp.mp.microsoft.com
giphy.com
github.com
github.io
g.live.com
googleapis.com
gravatar.com
gstatic.com
help.ui.xboxlive.com
hls.ted.com
i1.ytimg.com
imagesak.secureserver.net
imgix.net
imgs.xkcd.com
img.vidible.tv
instantmessaging-pa.googleapis.com
intercom.io
i.s-microsoft.com
i.ytimg.com
j.mp
jquery.com
jsdelivr.net
keystone.mwbsys.com
lastfm-img2.akamaized.net
licensing.xboxlive.com
live.com
login.aliexpress.com
login.live.com
login.microsoftonline.com
manifest.googlevideo.com
meta-db-worker02.pop.ric.plex.bz
meta.plex.bz
meta.plex.tv
microsoftonline.com
msftncsi.com
my.plexapp.com
nexusrules.officeapps.live.com
nine.plugins.plexapp.com
node.plexapp.com
no-ip.com
notify.xboxlive.com
npr-news.streaming.adswizz.com
ns1.dropbox.com
ns2.dropbox.com
o1.email.plex.tv
o2.sg0.plex.tv
ocsp.apple.com
office365.com
officeclient.microsoft.com
office.com
office.net
om.cbsi.com
onedrive.live.com
outlook.live.com
outlook.office365.com
pinterest.com
placehold.it
placeholdit.imgix.net
players.brightcove.net
pricelist.skype.com
products.office.com
proxy02.pop.ord.plex.bz
proxy.plex.bz
proxy.plex.tv
pubsub.plex.bz
pubsub.plex.tv
raw.githubusercontent.com
redirector.googlevideo.com
res.cloudinary.com
s1.wp.com
s2.youtube.com
s3.amazonaws.com
sa.symcb.com
secure.avangate.com
secure.brightcove.com
secure.surveymonkey.com
services.sonarr.tv
s.gateway.messenger.live.com
sharepoint.com
skyhook.sonarr.tv
s.marketwatch.com
spclient.wg.spotify.com
s.shopify.com
ssl.p.jwpcdn.com
staging.plex.tv
status.plex.tv
s.youtube.com
s.ytimg.com
t0.ssl.ak.dynamic.tiles.virtualearth.net
t0.ssl.ak.tiles.virtualearth.net
tawk.to
t.co
tedcdn.com
themoviedb.com
thetvdb.com
tinyurl.com
title.auth.xboxlive.com
title.mgt.xboxlive.com
traffic.libsyn.com
tvdb2.plex.tv
tvthemes.plexapp.com
twimg.com
twitter.com
ui.skype.com
video-stats.l.google.com
videos.vidible.tv
v.shopify.com
widget-cdn.rpxnow.com
wikipedia.org
win10.ipv6.microsoft.com
wordpress.com
wp.com
ws.audioscrobbler.com
www.dataplicity.com
www.googleapis.com
www.msftncsi.com
www.no-ip.com
www.youtube-nocookie.com
xboxexperiencesprod.experimentation.xboxlive.com
xbox.ipv6.microsoft.com
xflight.xboxlive.com
xkms.xboxlive.com
xsts.auth.xboxlive.com
youtu.be
youtube-nocookie.com
yt3.ggpht.com
device-metrics-us-2.amazon.com
device-metrics-us.amazon.com
adf.ly
www.adf.ly
bit.ly
www.bit.ly
goo.gl
ow.ly
www.ow.ly
5-edge-chat.facebook.com
6-edge-chat.facebook.com
edge-chat.facebook.com
creative.ak.fbcdn.net
external-lhr0-1.xx.fbcdn.net
external-lhr10-1.xx.fbcdn.net
external-lhr1-1.xx.fbcdn.net
external-lhr2-1.xx.fbcdn.net
external-lhr3-1.xx.fbcdn.net
external-lhr4-1.xx.fbcdn.net
external-lhr5-1.xx.fbcdn.net
external-lhr6-1.xx.fbcdn.net
external-lhr7-1.xx.fbcdn.net
external-lhr8-1.xx.fbcdn.net
external-lhr9-1.xx.fbcdn.net
fbcdn-creative-a.akamaihd.net
graph.facebook.com
graph.instagram.com
scontent-lhr3-1.xx.fbcdn.net
scontent.xx.fbcdn.net
scontent.fgdl5-1.fna.fbcdn.net
facebook.com
facebook.net
fbcdn.net
cdn.fbsbx.com
edge-mqtt.facebook.com
0-edge-chat.facebook.com
1-edge-chat.facebook.com
2-edge-chat.facebook.com
3-edge-chat.facebook.com
4-edge-chat.facebook.com
api-global.netflix.com
ichnaea.netflix.com
appboot.netflix.com
secure.netflix.com

@ -0,0 +1 @@
../init.d/pihole-FTL

@ -0,0 +1 @@
../init.d/pihole-FTL

@ -0,0 +1 @@
../init.d/pihole-FTL

@ -0,0 +1 @@
../init.d/pihole-FTL

@ -0,0 +1 @@
../init.d/pihole-FTL

@ -0,0 +1 @@
../init.d/pihole-FTL

@ -0,0 +1 @@
../init.d/pihole-FTL

@ -33,3 +33,4 @@ systemd-coredump:!!:17669::::::
mpd:*:17784:0:99999:7:::
_rpc:*:17868:0:99999:7:::
rush:*:18073:0:99999:7:::
pihole:!:18109::::::

@ -28,7 +28,6 @@ middle:$6$M8N7aBIv$5gaTB8ACCVT1N0DidZviQ3.T/YarR/FIkd86BUFDUxURJF32Wa.c1.KC6CNNp
jgdye:$6$taLG2n/D$WCkHqVIY3aICSXIeg9pfcjEHPX1WWlnTGO8SUqXfXM/3ns56GVKCwxeKvgvzLBF3Ix3QuenmuST9.u8E.XNYD/:17452:0:99999:7:::
bind:*:17452:0:99999:7:::
Debian-exim:!:17452:0:99999:7:::
duck:*:17452:0:99999:7:::
vnstat:*:17455:0:99999:7:::
systemd-coredump:!!:17669::::::
mpd:*:17784:0:99999:7:::

@ -0,0 +1,10 @@
# Pi-hole: A black hole for Internet advertisements
# (c) 2017 Pi-hole, LLC (https://pi-hole.net)
# Network-wide ad blocking via your own hardware.
#
# Allows the WebUI to use Pi-hole commands
#
# This file is copyright under the latest version of the EUPL.
# Please see LICENSE file for your rights under this license.
#
www-data ALL=NOPASSWD: /usr/local/bin/pihole
Loading…
Cancel
Save