Closed elulcao closed 2 years ago
For personal reference: #(1314)
Why are you referencing the other issue? It's not clear the two are related, in fact, you are hitting a
BUS_ADRERR (Non-existent physical address)
while the other issue mentions a
SEGV_MAPERR (Address not mapped to object)
In your case, it looks like an issue with the shared memory object as the crash seems to happen right after we enlarged memory on the next access. The verify/falsify this theory, I'd like you to add
DEBUG_SHMEM=true
DEBUG_LOCKS=true
to the file /etc/pihole/pihole-FTL.conf
(create if it does not exist) and run
pihole checkout ftl fix/shm_crash
to get a special version of FTL that has even more debugging output tailored to finding the bug you are seeing.
Next time the crash happens, please include again the crash report from /var/log/pihole/FTL.conf
with some extra lines of context above the !!!!!!
header. This may help us getting a better picture of where/why exactly the issue happens.
Changed the reference to personal reference
Followed the steps provided and uploaded the output. After the steps I noticed the FTL.log was flooded with check traces (see below), it was impossible to restart the DNS or using the the raspberry; the only way to access via SSH was after reboot.
The FTL.log is almost ~4GB size.
[2022-09-25 12:40:08.621 22644M] Range check is OKAY (0 <= 336 <= 512)
[2022-09-25 12:40:08.621 22255M] Thank you for helping us to improve our FTL engine!
[2022-09-25 12:40:08.621 22644M] Magic byte check is OKAY
[2022-09-25 12:40:08.621 22255M] Asking parent pihole-FTL (PID -1) to shut down
[2022-09-25 12:40:08.621 22644M] Returning 0x7f9af32f80
[2022-09-25 12:40:08.621 22644M] Range check is OKAY (0 <= 337 <= 512)
[2022-09-25 12:40:08.621 22644M] Magic byte check is OKAY
[2022-09-25 12:40:08.621 22644M] Returning 0x7f9af32f98
I removed the DB checks to make the log readable:
[2022-09-25 13:04:51.435 35892M] Using log file /var/log/pihole/FTL.log
[2022-09-25 13:04:51.435 35892M] ########## FTL started on raspberrypi! ##########
[2022-09-25 13:04:51.435 35892M] FTL branch: fix/shm_crash
[2022-09-25 13:04:51.435 35892M] FTL version: vDev-28153b1
[2022-09-25 13:04:51.435 35892M] FTL commit: 28153b1
[2022-09-25 13:04:51.435 35892M] FTL date: 2022-09-25 10:14:48 +0200
[2022-09-25 13:04:51.435 35892M] FTL user: pihole
[2022-09-25 13:04:51.435 35892M] Compiled for aarch64 (compiled on CI) using aarch64-linux-gnu-gcc (Debian 8.3.0-2) 8.3.0
[2022-09-25 13:04:51.436 35892M] Creating mutex
[2022-09-25 13:04:51.436 35892M] Creating mutex
[2022-09-25 13:04:51.437 35892M] Starting config file parsing (/etc/pihole/pihole-FTL.conf)
[2022-09-25 13:04:51.437 35892M] SOCKET_LISTENING: only local
[2022-09-25 13:04:51.437 35892M] AAAA_QUERY_ANALYSIS: Show AAAA queries
[2022-09-25 13:04:51.437 35892M] MAXDBDAYS: max age for stored queries is 365 days
[2022-09-25 13:04:51.437 35892M] RESOLVE_IPV6: Resolve IPv6 addresses
[2022-09-25 13:04:51.437 35892M] RESOLVE_IPV4: Resolve IPv4 addresses
[2022-09-25 13:04:51.437 35892M] DBINTERVAL: saving to DB file every minute
[2022-09-25 13:04:51.437 35892M] DBFILE: Using /etc/pihole/pihole-FTL.db
[2022-09-25 13:04:51.437 35892M] MAXLOGAGE: Importing up to 24.0 hours of log data
[2022-09-25 13:04:51.437 35892M] PRIVACYLEVEL: Set to 0
[2022-09-25 13:04:51.437 35892M] IGNORE_LOCALHOST: Show queries from localhost
[2022-09-25 13:04:51.437 35892M] BLOCKINGMODE: Null IPs for blocked domains
[2022-09-25 13:04:51.437 35892M] ANALYZE_ONLY_A_AND_AAAA: Disabled. Analyzing all queries
[2022-09-25 13:04:51.437 35892M] DBIMPORT: Importing history from database
[2022-09-25 13:04:51.437 35892M] PIDFILE: Using /run/pihole-FTL.pid
[2022-09-25 13:04:51.437 35892M] SOCKETFILE: Using /run/pihole/FTL.sock
[2022-09-25 13:04:51.437 35892M] SETUPVARSFILE: Using /etc/pihole/setupVars.conf
[2022-09-25 13:04:51.437 35892M] MACVENDORDB: Using /etc/pihole/macvendor.db
[2022-09-25 13:04:51.437 35892M] GRAVITYDB: Using /etc/pihole/gravity.db
[2022-09-25 13:04:51.437 35892M] PARSE_ARP_CACHE: Active
[2022-09-25 13:04:51.437 35892M] CNAME_DEEP_INSPECT: Active
[2022-09-25 13:04:51.438 35892M] DELAY_STARTUP: No delay requested.
[2022-09-25 13:04:51.438 35892M] BLOCK_ESNI: Enabled, blocking _esni.{blocked domain}
[2022-09-25 13:04:51.438 35892M] NICE: Set process niceness to -10 (default)
[2022-09-25 13:04:51.438 35892M] MAXNETAGE: Removing IP addresses and host names from network table after 365 days
[2022-09-25 13:04:51.438 35892M] NAMES_FROM_NETDB: Enabled, trying to get names from network database
[2022-09-25 13:04:51.438 35892M] EDNS0_ECS: Overwrite client from ECS information
[2022-09-25 13:04:51.438 35892M] REFRESH_HOSTNAMES: Periodically refreshing IPv4 names
[2022-09-25 13:04:51.438 35892M] RATE_LIMIT: Rate-limiting client making more than 1000 queries in 60 seconds
[2022-09-25 13:04:51.438 35892M] LOCAL_IPV4: Automatic interface-dependent detection of address
[2022-09-25 13:04:51.438 35892M] LOCAL_IPV6: Automatic interface-dependent detection of address
[2022-09-25 13:04:51.438 35892M] BLOCK_IPV4: Automatic interface-dependent detection of address
[2022-09-25 13:04:51.438 35892M] BLOCK_IPV6: Automatic interface-dependent detection of address
[2022-09-25 13:04:51.438 35892M] SHOW_DNSSEC: Enabled, showing automatically generated DNSSEC queries
[2022-09-25 13:04:51.438 35892M] MOZILLA_CANARY: Enabled
[2022-09-25 13:04:51.438 35892M] PIHOLE_PTR: internal PTR generation enabled (pi.hole)
[2022-09-25 13:04:51.438 35892M] ADDR2LINE: Enabled
[2022-09-25 13:04:51.438 35892M] REPLY_WHEN_BUSY: Drop queries when the database is busy
[2022-09-25 13:04:51.438 35892M] BLOCK_TTL: 2 seconds
[2022-09-25 13:04:51.438 35892M] BLOCK_ICLOUD_PR: Enabled
[2022-09-25 13:04:51.438 35892M] CHECK_LOAD: Enabled
[2022-09-25 13:04:51.438 35892M] CHECK_SHMEM: Warning if shared-memory usage exceeds 90%
[2022-09-25 13:04:51.438 35892M] CHECK_DISK: Warning if certain disk usage exceeds 90%
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (no match)
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (no match)
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (match)
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (no match)
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (no match)
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (no match)
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (no match)
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (no match)
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (no match)
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (no match)
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (no match)
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (no match)
[2022-09-25 13:04:51.439 35892M] Obtained config lock
[2022-09-25 13:04:51.439 35892M] Released config lock (no match)
[2022-09-25 13:04:51.440 35892M] Obtained config lock
[2022-09-25 13:04:51.440 35892M] Released config lock (no match)
[2022-09-25 13:04:51.440 35892M] Obtained config lock
[2022-09-25 13:04:51.440 35892M] Released config lock (no match)
[2022-09-25 13:04:51.440 35892M] Obtained config lock
[2022-09-25 13:04:51.440 35892M] Released config lock (no match)
[2022-09-25 13:04:51.440 35892M] Obtained config lock
[2022-09-25 13:04:51.440 35892M] Released config lock (no match)
[2022-09-25 13:04:51.440 35892M] Obtained config lock
[2022-09-25 13:04:51.440 35892M] Released config lock (no match)
[2022-09-25 13:04:51.440 35892M] Obtained config lock
[2022-09-25 13:04:51.440 35892M] Released config lock (no match)
[2022-09-25 13:04:51.440 35892M] Obtained config lock
[2022-09-25 13:04:51.440 35892M] Released config lock (no match)
[2022-09-25 13:04:51.440 35892M] *****************************
[2022-09-25 13:04:51.440 35892M] * Debugging enabled *
[2022-09-25 13:04:51.440 35892M] * DEBUG_DATABASE NO *
[2022-09-25 13:04:51.440 35892M] * DEBUG_NETWORKING NO *
[2022-09-25 13:04:51.440 35892M] * DEBUG_LOCKS YES *
[2022-09-25 13:04:51.440 35892M] * DEBUG_QUERIES NO *
[2022-09-25 13:04:51.440 35892M] * DEBUG_FLAGS NO *
[2022-09-25 13:04:51.440 35892M] * DEBUG_SHMEM YES *
[2022-09-25 13:04:51.440 35892M] * DEBUG_GC NO *
[2022-09-25 13:04:51.440 35892M] * DEBUG_ARP NO *
[2022-09-25 13:04:51.440 35892M] * DEBUG_REGEX NO *
[2022-09-25 13:04:51.440 35892M] * DEBUG_API NO *
[2022-09-25 13:04:51.441 35892M] * DEBUG_OVERTIME NO *
[2022-09-25 13:04:51.441 35892M] * DEBUG_STATUS NO *
[2022-09-25 13:04:51.441 35892M] * DEBUG_CAPS NO *
[2022-09-25 13:04:51.441 35892M] * DEBUG_VECTORS NO *
[2022-09-25 13:04:51.441 35892M] * DEBUG_RESOLVER NO *
[2022-09-25 13:04:51.441 35892M] * DEBUG_EDNS0 NO *
[2022-09-25 13:04:51.441 35892M] * DEBUG_CLIENTS NO *
[2022-09-25 13:04:51.441 35892M] * DEBUG_ALIASCLIENTS NO *
[2022-09-25 13:04:51.441 35892M] * DEBUG_EVENTS NO *
[2022-09-25 13:04:51.441 35892M] * DEBUG_HELPER NO *
[2022-09-25 13:04:51.441 35892M] * DEBUG_EXTRA NO *
[2022-09-25 13:04:51.441 35892M] *****************************
[2022-09-25 13:04:51.441 35892M] Finished config file parsing
[2022-09-25 13:04:51.442 35892M] Database version is 12
[2022-09-25 13:04:51.442 35892M] Waiting for SHM lock in db_init() (/__w/FTL/FTL/src/database/common.c:468)
[2022-09-25 13:04:51.442 35892M] Resizing "FTL-strings" from 40960 to (81920 * 1) == 81920 (/dev/shm: 712.7KB used, 4.1GB total, FTL uses 700.8KB)
[2022-09-25 13:04:51.442 35892M] SHMEM pointer updated: 0x7f9594d000 -> 0x7f9589f000 (40960 81920)
[2022-09-25 13:04:51.442 35892M] Obtained SHM lock for db_init() (/__w/FTL/FTL/src/database/common.c:468)
[2022-09-25 13:04:51.442 35892M] Imported 0 alias-clients
[2022-09-25 13:04:51.442 35892M] Removed lock in db_init() (/__w/FTL/FTL/src/database/common.c:470)
[2022-09-25 13:04:51.442 35892M] Database successfully initialized
[2022-09-25 13:04:56.616 35892M] Waiting for SHM lock in DB_read_queries() (/__w/FTL/FTL/src/database/query-table.c:730)
[2022-09-25 13:04:56.616 35892M] Obtained SHM lock for DB_read_queries() (/__w/FTL/FTL/src/database/query-table.c:730)
[2022-09-25 13:04:56.616 35892M] New upstream server: 127.0.0.1:5335 (0/512)
[2022-09-25 13:04:56.616 35892M] Adding "127.0.0.1" (len 10) to buffer. next_str_pos is 1
[2022-09-25 13:04:56.617 35892M] Adding "c.apple.news" (len 13) to buffer. next_str_pos is 11
[2022-09-25 13:04:56.617 35892M] Adding "192.168.1.55" (len 13) to buffer. next_str_pos is 24
[2022-09-25 13:04:56.619 35892M] Adding "configuration.ls.apple.com" (len 27) to buffer. next_str_pos is 37
[2022-09-25 13:04:56.621 35892M] Adding "e10499.dsce9.akamaiedge.net" (len 28) to buffer. next_str_pos is 64
[2022-09-25 13:04:56.622 35892M] Adding "e12919.dscd.akamaiedge.net" (len 27) to buffer. next_str_pos is 92
[2022-09-25 13:04:56.623 35892M] Adding "weather-data.apple.com" (len 23) to buffer. next_str_pos is 119
[2022-09-25 13:04:56.625 35892M] Adding "a2047.dscb.akamai.net" (len 22) to buffer. next_str_pos is 142
[2022-09-25 13:04:56.627 35892M] Adding "web.whatsapp.com" (len 17) to buffer. next_str_pos is 164
[2022-09-25 13:04:56.628 35892M] Adding "192.168.1.61" (len 13) to buffer. next_str_pos is 181
[2022-09-25 13:04:56.633 35892M] New upstream server: 192.168.1.254:53 (1/512)
[2022-09-25 13:04:56.633 35892M] Adding "192.168.1.254" (len 14) to buffer. next_str_pos is 194
[2022-09-25 13:04:56.634 35892M] Adding "lb._dns-sd._udp.0.1.168.192.in-addr.arpa" (len 41) to buffer. next_str_pos is 208
[2022-09-25 13:04:56.634 35892M] Adding "192.168.1.51" (len 13) to buffer. next_str_pos is 249
[2022-09-25 13:04:56.640 35892M] Adding "key4._domainkey.emails.catfootwear.com.mx" (len 42) to buffer. next_str_pos is 262
[2022-09-25 13:04:56.641 35892M] Adding "192.168.1.53" (len 13) to buffer. next_str_pos is 304
[2022-09-25 13:04:56.643 35892M] Adding "_dns.resolver.arpa" (len 19) to buffer. next_str_pos is 317
[2022-09-25 13:04:56.645 35892M] Adding "mask.icloud.com" (len 16) to buffer. next_str_pos is 336
[2022-09-25 13:04:56.649 35892M] Adding "mask-h2.icloud.com" (len 19) to buffer. next_str_pos is 352
[2022-09-25 13:04:56.653 35892M] Adding "gs-loc-new.ls-apple.com.akadns.net" (len 35) to buffer. next_str_pos is 371
[2022-09-25 13:04:56.658 35892M] Adding "gs-loc.ls-apple.com.akadns.net" (len 31) to buffer. next_str_pos is 406
[2022-09-25 13:04:56.660 35892M] Adding "iphone-ld.apple.com" (len 20) to buffer. next_str_pos is 437
[2022-09-25 13:04:56.661 35892M] Adding "192.168.1.54" (len 13) to buffer. next_str_pos is 457
[2022-09-25 13:04:56.667 35892M] Adding "a1931.dscgi3.akamai.net" (len 24) to buffer. next_str_pos is 470
[2022-09-25 13:04:56.671 35892M] Adding "dkim1024._domainkey.e.converse.com.mx" (len 38) to buffer. next_str_pos is 494
[2022-09-25 13:04:56.674 35892M] Adding "star.c10r.facebook.com" (len 23) to buffer. next_str_pos is 532
[2022-09-25 13:04:56.677 35892M] Adding "edge-mqtt.facebook.com" (len 23) to buffer. next_str_pos is 555
[2022-09-25 13:04:56.680 35892M] Adding "m.facebook.com" (len 15) to buffer. next_str_pos is 578
[2022-09-25 13:04:56.683 35892M] Adding "www.facebook.com" (len 17) to buffer. next_str_pos is 593
[2022-09-25 13:04:56.689 35892M] Adding "gateway.facebook.com" (len 21) to buffer. next_str_pos is 610
[2022-09-25 13:04:56.693 35892M] Adding "web.facebook.com" (len 17) to buffer. next_str_pos is 631
[2022-09-25 13:04:56.700 35892M] Adding "star-mini.c10r.facebook.com" (len 28) to buffer. next_str_pos is 648
[2022-09-25 13:04:56.703 35892M] Adding "star.fallback.c10r.facebook.com" (len 32) to buffer. next_str_pos is 676
[2022-09-25 13:04:56.711 35892M] Adding "gateway.fe.apple-dns.net" (len 25) to buffer. next_str_pos is 708
[2022-09-25 13:04:56.712 35892M] Adding "192.168.1.50" (len 13) to buffer. next_str_pos is 733
[2022-09-25 13:04:56.717 35892M] Adding "e673.dsce9.akamaiedge.net" (len 26) to buffer. next_str_pos is 746
[2022-09-25 13:04:56.721 35892M] Adding "17-courier.push.apple.com" (len 26) to buffer. next_str_pos is 772
[2022-09-25 13:04:56.729 35892M] Adding "init-cdn.itunes-apple.com.akadns.net" (len 37) to buffer. next_str_pos is 798
[2022-09-25 13:04:56.782 35892M] Adding "us-sw-courier-4.push-apple.com.akadns.net" (len 42) to buffer. next_str_pos is 835
[2022-09-25 13:04:56.790 35892M] Adding "discord.com" (len 12) to buffer. next_str_pos is 877
[2022-09-25 13:04:56.795 35892M] Adding "external.fgdl12-1.fna.fbcdn.net" (len 32) to buffer. next_str_pos is 889
[2022-09-25 13:04:56.801 35892M] Adding "lookaside.facebook.com" (len 23) to buffer. next_str_pos is 921
[2022-09-25 13:04:56.805 35892M] Adding "aod.itunes.g.aaplimg.com" (len 25) to buffer. next_str_pos is 944
[2022-09-25 13:04:56.810 35892M] Adding "instagram.fgdl12-1.fna.fbcdn.net" (len 33) to buffer. next_str_pos is 969
[2022-09-25 13:04:56.814 35892M] Adding "cdn.fbsbx.com" (len 14) to buffer. next_str_pos is 1002
[2022-09-25 13:04:56.819 35892M] Adding "scontent.fgdl12-1.fna.fbcdn.net" (len 32) to buffer. next_str_pos is 1016
[2022-09-25 13:04:56.824 35892M] Adding "doh.dns.apple.com" (len 18) to buffer. next_str_pos is 1048
[2022-09-25 13:04:56.834 35892M] Adding "doh.dns.apple.com.v.aaplimg.com" (len 32) to buffer. next_str_pos is 1066
[2022-09-25 13:04:56.839 35892M] Adding "a1806.dscw154.akamai.net" (len 25) to buffer. next_str_pos is 1098
[2022-09-25 13:04:56.845 35892M] Adding "catalog.gamepass.com" (len 21) to buffer. next_str_pos is 1123
[2022-09-25 13:04:56.852 35892M] Adding "www.google.com" (len 15) to buffer. next_str_pos is 1144
[2022-09-25 13:04:56.866 35892M] Adding "cma.itunes-apple.com.akadns.net" (len 32) to buffer. next_str_pos is 1159
[2022-09-25 13:04:56.877 35892M] Adding "time.apple.com" (len 15) to buffer. next_str_pos is 1191
[2022-09-25 13:04:56.878 35892M] Adding "192.168.1.59" (len 13) to buffer. next_str_pos is 1206
[2022-09-25 13:04:56.887 35892M] Adding "epdg.ims.mnc020.mcc334.pub.3gppnetwork.org" (len 43) to buffer. next_str_pos is 1219
[2022-09-25 13:04:56.895 35892M] Adding "init.push.apple.com" (len 20) to buffer. next_str_pos is 1262
[2022-09-25 13:04:56.908 35892M] Adding "captive.apple.com" (len 18) to buffer. next_str_pos is 1282
[2022-09-25 13:04:56.920 35892M] Adding "gspe35-ssl.ls.apple.com" (len 24) to buffer. next_str_pos is 1300
[2022-09-25 13:04:56.933 35892M] Adding "gsp85-ssl.ls.apple.com" (len 23) to buffer. next_str_pos is 1324
[2022-09-25 13:04:56.946 35892M] Adding "xp.apple.com" (len 13) to buffer. next_str_pos is 1347
[2022-09-25 13:04:56.959 35892M] Adding "e17437.dsct.akamaiedge.net" (len 27) to buffer. next_str_pos is 1360
[2022-09-25 13:04:56.966 35892M] Adding "e6987.dsce9.akamaiedge.net" (len 27) to buffer. next_str_pos is 1387
[2022-09-25 13:04:56.973 35892M] Adding "init.push-apple.com.akadns.net" (len 31) to buffer. next_str_pos is 1414
[2022-09-25 13:04:56.980 35892M] Adding "gsp85-ssl.ls2-apple.com.akadns.net" (len 35) to buffer. next_str_pos is 1445
[2022-09-25 13:04:56.987 35892M] Adding "captive.g.aaplimg.com" (len 22) to buffer. next_str_pos is 1480
[2022-09-25 13:04:56.994 35892M] Adding "6-courier.push.apple.com" (len 25) to buffer. next_str_pos is 1502
[2022-09-25 13:04:57.020 35892M] Adding "secure.download.dm.origin.com" (len 30) to buffer. next_str_pos is 1527
[2022-09-25 13:04:57.027 35892M] Adding "video.fgdl12-1.fna.fbcdn.net" (len 29) to buffer. next_str_pos is 1557
[2022-09-25 13:04:57.037 35892M] Adding "gateway-us-east1-b.discord.gg" (len 30) to buffer. next_str_pos is 1586
[2022-09-25 13:04:57.044 35892M] Adding "cdp.cloud.unity3d.com" (len 22) to buffer. next_str_pos is 1616
[2022-09-25 13:04:57.056 35892M] Adding "play.itunes.apple.com.edgesuite.net" (len 36) to buffer. next_str_pos is 1638
[2022-09-25 13:04:57.072 35892M] Adding "pds-init.ess.apple.com" (len 23) to buffer. next_str_pos is 1674
[2022-09-25 13:04:57.088 35892M] Adding "a1864.gi3.akamai.net" (len 21) to buffer. next_str_pos is 1697
[2022-09-25 13:04:57.096 35892M] Adding "app-site-association.cdn-apple.com" (len 35) to buffer. next_str_pos is 1718
[2022-09-25 13:04:57.132 35892M] Adding "cl3.apple.com" (len 14) to buffer. next_str_pos is 1753
[2022-09-25 13:04:57.149 35892M] Adding "cl4.apple.com" (len 14) to buffer. next_str_pos is 1767
[2022-09-25 13:04:57.166 35892M] Adding "icloud.com" (len 11) to buffer. next_str_pos is 1781
[2022-09-25 13:04:57.182 35892M] Adding "apple.com" (len 10) to buffer. next_str_pos is 1792
[2022-09-25 13:04:57.199 35892M] Adding "e14868.dsce9.akamaiedge.net" (len 28) to buffer. next_str_pos is 1802
[2022-09-25 13:04:57.208 35892M] Adding "cl4.g.aaplimg.com" (len 18) to buffer. next_str_pos is 1830
[2022-09-25 13:04:57.217 35892M] Adding "gspe79-ssl.ls.apple.com" (len 24) to buffer. next_str_pos is 1848
[2022-09-25 13:04:57.234 35892M] Adding "a1818.dscg2.akamai.net" (len 23) to buffer. next_str_pos is 1872
[2022-09-25 13:04:57.243 35892M] Adding "mesu.apple.com" (len 15) to buffer. next_str_pos is 1895
[2022-09-25 13:04:57.261 35892M] Adding "e1329.g.akamaiedge.net" (len 23) to buffer. next_str_pos is 1910
[2022-09-25 13:04:57.279 35892M] Adding "bag.itunes.apple.com" (len 21) to buffer. next_str_pos is 1933
[2022-09-25 13:04:57.317 35892M] Adding "p101-fmfmobile.icloud.com" (len 26) to buffer. next_str_pos is 1954
[2022-09-25 13:04:57.354 35892M] Adding "cl2.apple.com" (len 14) to buffer. next_str_pos is 1980
[2022-09-25 13:04:57.428 35892M] Adding "identity.ess.apple.com" (len 23) to buffer. next_str_pos is 1994
[2022-09-25 13:04:57.447 35892M] Adding "init.itunes.apple.com" (len 22) to buffer. next_str_pos is 2017
[2022-09-25 13:04:57.467 35892M] Adding "gsa.apple.com" (len 14) to buffer. next_str_pos is 2039
[2022-09-25 13:04:57.486 35892M] Adding "setup.icloud.com" (len 17) to buffer. next_str_pos is 2053
[2022-09-25 13:04:57.506 35892M] Adding "p101-acsegateway.icloud.com" (len 28) to buffer. next_str_pos is 2070
[2022-09-25 13:04:57.587 35892M] Adding "fmfmobile.fe.apple-dns.net" (len 27) to buffer. next_str_pos is 2098
[2022-09-25 13:04:57.597 35892M] Adding "acsegateway.fe.apple-dns.net" (len 29) to buffer. next_str_pos is 2125
[2022-09-25 13:04:57.607 35892M] Adding "setup.fe.apple-dns.net" (len 23) to buffer. next_str_pos is 2154
[2022-09-25 13:04:57.638 35892M] Adding "cl2.g.aaplimg.com" (len 18) to buffer. next_str_pos is 2177
[2022-09-25 13:04:57.648 35892M] Adding "identity.ess-apple.com.akadns.net" (len 34) to buffer. next_str_pos is 2195
[2022-09-25 13:04:57.659 35892M] Adding "gsa.idms-apple.com.akadns.net" (len 30) to buffer. next_str_pos is 2229
[2022-09-25 13:04:57.670 35892M] Adding "sandbox.itunes.apple.com" (len 25) to buffer. next_str_pos is 2259
[2022-09-25 13:04:57.693 35892M] Adding "p27-buy.itunes.apple.com" (len 25) to buffer. next_str_pos is 2284
[2022-09-25 13:04:57.715 35892M] Adding "play.itunes.apple.com" (len 22) to buffer. next_str_pos is 2309
[2022-09-25 13:04:57.738 35892M] Adding "sandbox.itunes-apple.com.akadns.net" (len 36) to buffer. next_str_pos is 2331
[2022-09-25 13:04:57.755 35892M] Adding "p27-buy-lb.itunes-apple.com.akadns.net" (len 39) to buffer. next_str_pos is 2367
[2022-09-25 13:04:57.773 35892M] Adding "apps.mzstatic.com" (len 18) to buffer. next_str_pos is 2406
[2022-09-25 13:04:57.803 35892M] Adding "su.itunes.apple.com" (len 20) to buffer. next_str_pos is 2424
[2022-09-25 13:04:57.827 35892M] Adding "gateway.icloud.com" (len 19) to buffer. next_str_pos is 2444
[2022-09-25 13:04:57.855 35892M] Adding "_aaplcache3._tcp.lan" (len 21) to buffer. next_str_pos is 2463
[2022-09-25 13:04:57.867 35892M] Adding "_aaplcache1._tcp.lan" (len 21) to buffer. next_str_pos is 2484
[2022-09-25 13:04:57.878 35892M] Adding "_aaplcache2._tcp.lan" (len 21) to buffer. next_str_pos is 2505
[2022-09-25 13:04:57.890 35892M] Adding "_aaplcache._tcp.lan" (len 20) to buffer. next_str_pos is 2526
[2022-09-25 13:04:57.902 35892M] Adding "_aaplcache4._tcp.lan" (len 21) to buffer. next_str_pos is 2546
[2022-09-25 13:04:57.915 35892M] Adding "lcdn-locator.apple.com" (len 23) to buffer. next_str_pos is 2567
[2022-09-25 13:04:57.941 35892M] Adding "iadsdk.apple.com" (len 17) to buffer. next_str_pos is 2590
[2022-09-25 13:04:57.968 35892M] Adding "publicassets.cdn-apple.com" (len 27) to buffer. next_str_pos is 2607
[2022-09-25 13:04:57.996 35892M] Adding "lcdn-locator-usuqo.apple.com.akadns.net" (len 40) to buffer. next_str_pos is 2634
[2022-09-25 13:04:58.009 35892M] Adding "publicassets.cdn-apple.g.aaplimg.com" (len 37) to buffer. next_str_pos is 2674
[2022-09-25 13:04:58.024 35892M] Adding "p56-sharedstreams.icloud.com" (len 29) to buffer. next_str_pos is 2711
[2022-09-25 13:04:58.050 35892M] Adding "sharedstreams.fe.apple-dns.net" (len 31) to buffer. next_str_pos is 2740
[2022-09-25 13:04:58.067 35892M] Adding "api.smoot.apple.com" (len 20) to buffer. next_str_pos is 2771
[2022-09-25 13:04:58.095 35892M] Adding "bag-smoot.v.aaplimg.com" (len 24) to buffer. next_str_pos is 2791
[2022-09-25 13:04:58.109 35892M] Adding "init.ess.apple.com" (len 19) to buffer. next_str_pos is 2815
[2022-09-25 13:04:58.135 35892M] Adding "musicstatus.itunes.apple.com" (len 29) to buffer. next_str_pos is 2834
[2022-09-25 13:04:58.162 35892M] Adding "a239.gi3.akamai.net" (len 20) to buffer. next_str_pos is 2863
[2022-09-25 13:04:58.175 35892M] Adding "s.mzstatic.com" (len 15) to buffer. next_str_pos is 2883
[2022-09-25 13:04:58.202 35892M] Adding "musicstatus-us-w.edge-itunes-apple.com.akadns.net" (len 50) to buffer. next_str_pos is 2898
[2022-09-25 13:04:58.220 35892M] Adding "netcts.cdn-apple.com" (len 21) to buffer. next_str_pos is 2948
[2022-09-25 13:04:58.248 35892M] Adding "a1744.dscg2.akamai.net" (len 23) to buffer. next_str_pos is 2969
[2022-09-25 13:04:58.261 35892M] Adding "se2.itunes.apple.com" (len 21) to buffer. next_str_pos is 2992
[2022-09-25 13:04:58.289 35892M] Adding "gsas.apple.com" (len 15) to buffer. next_str_pos is 3013
[2022-09-25 13:04:58.317 35892M] Adding "a1802.dscw154.akamai.net" (len 25) to buffer. next_str_pos is 3028
[2022-09-25 13:04:58.331 35892M] Adding "gsas.idms-apple.com.akadns.net" (len 31) to buffer. next_str_pos is 3053
[2022-09-25 13:04:58.345 35892M] Adding "gsp-ssl.ls.apple.com" (len 21) to buffer. next_str_pos is 3084
[2022-09-25 13:04:58.374 35892M] Adding "get-bx.g.aaplimg.com" (len 21) to buffer. next_str_pos is 3105
[2022-09-25 13:04:58.394 35892M] Adding "mask-api.icloud.com" (len 20) to buffer. next_str_pos is 3126
[2022-09-25 13:04:58.423 35892M] Adding "mask-api.fe.apple-dns.net" (len 26) to buffer. next_str_pos is 3146
[2022-09-25 13:04:58.438 35892M] Adding "itunes.com" (len 11) to buffer. next_str_pos is 3172
[2022-09-25 13:04:58.474 35892M] Adding "p101-quota.icloud.com" (len 22) to buffer. next_str_pos is 3183
[2022-09-25 13:04:58.504 35892M] Adding "quota.fe.apple-dns.net" (len 23) to buffer. next_str_pos is 3205
[2022-09-25 13:04:58.519 35892M] Adding "amp-api.media.apple.com" (len 24) to buffer. next_str_pos is 3228
[2022-09-25 13:04:58.549 35892M] Adding "ocsp2.apple.com" (len 16) to buffer. next_str_pos is 3252
[2022-09-25 13:04:58.579 35892M] Adding "e3925.dscx.akamaiedge.net" (len 26) to buffer. next_str_pos is 3268
[2022-09-25 13:04:58.595 35892M] Adding "ocsp2.g.aaplimg.com" (len 20) to buffer. next_str_pos is 3294
[2022-09-25 13:04:58.610 35892M] Adding "p67-imap.mail.me.com" (len 21) to buffer. next_str_pos is 3314
[2022-09-25 13:04:58.626 35892M] Adding "metrics.icloud.com" (len 19) to buffer. next_str_pos is 3335
[2022-09-25 13:04:58.662 35892M] Adding "itunes.apple.com" (len 17) to buffer. next_str_pos is 3354
[2022-09-25 13:04:58.694 35892M] Adding "is5-ssl.mzstatic.com" (len 21) to buffer. next_str_pos is 3371
[2022-09-25 13:04:58.725 35892M] Adding "is1-ssl.mzstatic.com" (len 21) to buffer. next_str_pos is 3392
[2022-09-25 13:04:58.757 35892M] Adding "is2-ssl.mzstatic.com" (len 21) to buffer. next_str_pos is 3413
[2022-09-25 13:04:58.816 35892M] Adding "static.ess.apple.com" (len 21) to buffer. next_str_pos is 3434
[2022-09-25 13:04:58.847 35892M] Adding "staticess.g.aaplimg.com" (len 24) to buffer. next_str_pos is 3455
[2022-09-25 13:04:58.864 35892M] Adding "gcs-us-00003.content-storage-upload.googleapis.com" (len 51) to buffer. next_str_pos is 3479
[2022-09-25 13:04:58.903 35892M] Adding "ocsp2-lb.apple.com.akadns.net" (len 30) to buffer. next_str_pos is 3530
[2022-09-25 13:04:58.952 35892M] Adding "profile.ess.apple.com" (len 22) to buffer. next_str_pos is 3560
[2022-09-25 13:04:58.985 35892M] Adding "profile.ess-apple.com.akadns.net" (len 33) to buffer. next_str_pos is 3582
[2022-09-25 13:04:58.002 35892M] Adding "p101-contacts.icloud.com" (len 25) to buffer. next_str_pos is 3615
[2022-09-25 13:04:59.035 35892M] Adding "p101-caldav.icloud.com" (len 23) to buffer. next_str_pos is 3640
[2022-09-25 13:04:59.069 35892M] Adding "caldav.fe.apple-dns.net" (len 24) to buffer. next_str_pos is 3663
[2022-09-25 13:04:59.086 35892M] Adding "contacts.fe.apple-dns.net" (len 26) to buffer. next_str_pos is 3687
[2022-09-25 13:04:59.103 35892M] Adding "m.hotmail.com" (len 14) to buffer. next_str_pos is 3713
[2022-09-25 13:04:59.139 35892M] Adding "amd-infra.itunes.apple.com" (len 27) to buffer. next_str_pos is 3727
[2022-09-25 13:04:59.175 35892M] Adding "amd-infra.itunes.g.aaplimg.com" (len 31) to buffer. next_str_pos is 3754
[2022-09-25 13:04:59.193 35892M] Adding "sat-efz.ms-acdc.office.com" (len 27) to buffer. next_str_pos is 3785
[2022-09-25 13:04:59.212 35892M] Adding "configuration.apple.com" (len 24) to buffer. next_str_pos is 3812
[2022-09-25 13:04:59.276 35892M] Adding "ipv6-c011-gdl001-totalplay-isp.1.oca.nflxvideo.net" (len 51) to buffer. next_str_pos is 3836
[2022-09-25 13:04:59.312 35892M] Adding "ipv6-c010-gdl001-totalplay-isp.1.oca.nflxvideo.net" (len 51) to buffer. next_str_pos is 3887
[2022-09-25 13:04:59.349 35892M] Adding "www.netflix.com" (len 16) to buffer. next_str_pos is 3938
[2022-09-25 13:04:59.367 35892M] Adding "ichnaea-web.netflix.com" (len 24) to buffer. next_str_pos is 3954
[2022-09-25 13:04:59.404 35892M] Adding "ios.prod.ftl.netflix.com" (len 25) to buffer. next_str_pos is 3978
[2022-09-25 13:04:59.440 35892M] Adding "mqtt.c10r.facebook.com" (len 23) to buffer. next_str_pos is 4003
[2022-09-25 13:04:59.458 35892M] Adding "p101-fmf.icloud.com" (len 20) to buffer. next_str_pos is 4026
[2022-09-25 13:04:59.495 35892M] Adding "fmf.fe.apple-dns.net" (len 21) to buffer. next_str_pos is 4046
[2022-09-25 13:04:59.514 35892M] Adding "presence-heartbeat.xboxlive.com" (len 32) to buffer. next_str_pos is 4067
[2022-09-25 13:04:59.588 35892M] Adding "inappcheck.itunes.apple.com" (len 28) to buffer. next_str_pos is 4099
[2022-09-25 13:04:59.624 35892M] Adding "ca.iadsdk.apple.com" (len 20) to buffer. next_str_pos is 4127
[2022-09-25 13:04:59.661 35892M] Adding "mobilecrush.king.com" (len 21) to buffer. next_str_pos is 4147
[2022-09-25 13:04:59.680 35892M] Adding "buy.itunes-apple.com.akadns.net" (len 32) to buffer. next_str_pos is 4168
[2022-09-25 13:04:59.728 35892M] Adding "functional.events.data.microsoft.com" (len 37) to buffer. next_str_pos is 4200
[2022-09-25 13:04:59.765 35892M] Adding "p101-fmip.icloud.com" (len 21) to buffer. next_str_pos is 4237
[2022-09-25 13:04:59.803 35892M] Adding "fmip.fe.apple-dns.net" (len 22) to buffer. next_str_pos is 4258
[2022-09-25 13:04:59.823 35892M] Adding "fbs.smoot.apple.com" (len 20) to buffer. next_str_pos is 4280
[2022-09-25 13:04:59.861 35892M] Adding "ipcdn.apple.com" (len 16) to buffer. next_str_pos is 4300
[2022-09-25 13:04:59.900 35892M] Adding "smoot-feedback.v.aaplimg.com" (len 29) to buffer. next_str_pos is 4316
[2022-09-25 13:04:59.920 35892M] Adding "ipcdn.g.aaplimg.com" (len 20) to buffer. next_str_pos is 4345
[2022-09-25 13:04:59.939 35892M] Adding "king-marketing-hub-prod-default-rtdb.europe-west1.firebasedatabase.app" (len 71) to buffer. next_str_pos is 4365
[2022-09-25 13:04:59.978 35892M] Adding "servicelayer.king.com" (len 22) to buffer. next_str_pos is 4436
[2022-09-25 13:05:00.056 35892M] Adding "cf.iadsdk.apple.com" (len 20) to buffer. next_str_pos is 4458
[2022-09-25 13:05:00.114 35892M] Adding "partiality.itunes.apple.com" (len 28) to buffer. next_str_pos is 4478
[2022-09-25 13:05:00.155 35892M] Adding "mobile-data.onetrust.io" (len 24) to buffer. next_str_pos is 4506
[2022-09-25 13:05:00.253 35892M] Adding "init.supersonicads.com" (len 23) to buffer. next_str_pos is 4530
[2022-09-25 13:05:00.311 35892M] Adding "amp-api.apps.apple.com" (len 23) to buffer. next_str_pos is 4553
[2022-09-25 13:05:00.392 35892M] Adding "ams.king.com" (len 13) to buffer. next_str_pos is 4576
[2022-09-25 13:05:00.432 35892M] Adding "e7248.dscb.akamaiedge.net" (len 26) to buffer. next_str_pos is 4589
[2022-09-25 13:05:00.470 35892M] Adding "ocsp.pki.goog" (len 14) to buffer. next_str_pos is 4615
[2022-09-25 13:05:00.512 35892M] Adding "cdn-ukwest.onetrust.com" (len 24) to buffer. next_str_pos is 4629
[2022-09-25 13:05:00.555 35892M] Adding "pki-goog.l.google.com" (len 22) to buffer. next_str_pos is 4653
[2022-09-25 13:05:00.577 35892M] Adding "googleads.g.doubleclick.net" (len 28) to buffer. next_str_pos is 4675
[2022-09-25 13:05:00.621 35892M] Adding "p36-imap.mail.me.com.akadns.net" (len 32) to buffer. next_str_pos is 4703
[2022-09-25 13:05:00.655 35892M] Adding "192.168.1.142" (len 14) to buffer. next_str_pos is 4735
[2022-09-25 13:05:00.953 35892M] Adding "cdsassets.apple.com" (len 20) to buffer. next_str_pos is 4749
[2022-09-25 13:05:01.008 35892M] Adding "world-gen.g.aaplimg.com" (len 24) to buffer. next_str_pos is 4769
[2022-09-25 13:05:01.030 35892M] Adding "sse-ws-p189.apple.com" (len 22) to buffer. next_str_pos is 4793
[2022-09-25 13:05:01.073 35892M] Adding "sse-ws-p189.apple.com.akadns.net" (len 33) to buffer. next_str_pos is 4815
[2022-09-25 13:05:01.095 35892M] Adding "cstat.cdn-apple.com" (len 20) to buffer. next_str_pos is 4848
[2022-09-25 13:05:01.138 35892M] Adding "a1951.dscg2.akamai.net" (len 23) to buffer. next_str_pos is 4868
[2022-09-25 13:05:01.160 35892M] Adding "platform-lookaside.fbsbx.com" (len 29) to buffer. next_str_pos is 4891
[2022-09-25 13:05:01.182 35892M] Adding "mesu-cdn.origin-apple.com.akadns.net" (len 37) to buffer. next_str_pos is 4920
[2022-09-25 13:05:01.226 35892M] Adding "mesu.g.aaplimg.com" (len 19) to buffer. next_str_pos is 4957
[2022-09-25 13:05:01.249 35892M] Adding "13-courier.push.apple.com" (len 26) to buffer. next_str_pos is 4976
[2022-09-25 13:05:01.300 35892M] Adding "p106-fmip.icloud.com" (len 21) to buffer. next_str_pos is 5002
[2022-09-25 13:05:01.382 35892M] Adding "tbsc.apple.com" (len 15) to buffer. next_str_pos is 5023
[2022-09-25 13:05:01.427 35892M] Adding "tbsc.apple.com.v.aaplimg.com" (len 29) to buffer. next_str_pos is 5038
[2022-09-25 13:05:01.449 35892M] Adding "gspe1-ssl.ls.apple.com" (len 23) to buffer. next_str_pos is 5067
[2022-09-25 13:05:01.542 35892M] Adding "e6987.a.akamaiedge.net" (len 23) to buffer. next_str_pos is 5090
[2022-09-25 13:05:01.637 35892M] Adding "cma-china.itunes-apple.com.akadns.net" (len 38) to buffer. next_str_pos is 5113
[2022-09-25 13:05:01.786 35892M] Adding "gsp64-ssl.ls.apple.com" (len 23) to buffer. next_str_pos is 5151
[2022-09-25 13:05:01.831 35892M] Adding "gsp64-ssl.ls-apple.com.akadns.net" (len 34) to buffer. next_str_pos is 5174
[2022-09-25 13:05:01.871 35892M] Adding "wpad.lan" (len 9) to buffer. next_str_pos is 5208
[2022-09-25 13:05:01.914 35892M] Adding "steamcdn-a.akamaihd.net" (len 24) to buffer. next_str_pos is 5217
[2022-09-25 13:05:01.938 35892M] Adding "guzzoni.apple.com" (len 18) to buffer. next_str_pos is 5241
[2022-09-25 13:05:01.986 35892M] Adding "guzzoni-apple-com.v.aaplimg.com" (len 32) to buffer. next_str_pos is 5259
[2022-09-25 13:05:02.010 35892M] Adding "gs-loc.apple.com" (len 17) to buffer. next_str_pos is 5291
[2022-09-25 13:05:02.290 35892M] Adding "42-courier.push.apple.com" (len 26) to buffer. next_str_pos is 5308
[2022-09-25 13:05:02.340 35892M] Adding "api-glb-use1a.smoot.apple.com" (len 30) to buffer. next_str_pos is 5334
[2022-09-25 13:05:02.387 35892M] Adding "smoot-searchv2-use1a.v.aaplimg.com" (len 35) to buffer. next_str_pos is 5364
[2022-09-25 13:05:02.462 35892M] Adding "outlook.ha.office365.com" (len 25) to buffer. next_str_pos is 5399
[2022-09-25 13:05:02.870 35892M] Adding "cstat-lb.apple.com.akadns.net" (len 30) to buffer. next_str_pos is 5424
[2022-09-25 13:05:03.152 35892M] Adding "0-courier.push.apple.com" (len 25) to buffer. next_str_pos is 5454
[2022-09-25 13:05:03.211 35892M] Adding "dts.podtrac.com" (len 16) to buffer. next_str_pos is 5479
[2022-09-25 13:05:03.263 35892M] Adding "play.podtrac.com" (len 17) to buffer. next_str_pos is 5495
[2022-09-25 13:05:03.288 35892M] Adding "api.spreaker.com" (len 17) to buffer. next_str_pos is 5512
[2022-09-25 13:05:03.339 35892M] Adding "d1bxy2pveef3fq.cloudfront.net" (len 30) to buffer. next_str_pos is 5529
[2022-09-25 13:05:03.460 35892M] Adding "upp.itunes.apple.com" (len 21) to buffer. next_str_pos is 5559
[2022-09-25 13:05:03.636 35892M] Adding "16-courier.push.apple.com" (len 26) to buffer. next_str_pos is 5580
[2022-09-25 13:05:03.688 35892M] Adding "amp-api.podcasts.apple.com" (len 27) to buffer. next_str_pos is 5606
[2022-09-25 13:05:03.839 35892M] Adding "steamstore-a.akamaihd.net" (len 26) to buffer. next_str_pos is 5633
[2022-09-25 13:05:03.928 35892M] Adding "radio-activity.itunes.apple.com" (len 32) to buffer. next_str_pos is 5659
[2022-09-25 13:05:03.978 35892M] Adding "configuration.apple.com.akadns.net" (len 35) to buffer. next_str_pos is 5691
[2022-09-25 13:05:04.042 35892M] Adding "gdmf.apple.com" (len 15) to buffer. next_str_pos is 5726
[2022-09-25 13:05:04.093 35892M] Adding "gdmf.v.aaplimg.com" (len 19) to buffer. next_str_pos is 5741
[2022-09-25 13:05:04.262 35892M] Adding "api1.origin.com" (len 16) to buffer. next_str_pos is 5760
[2022-09-25 13:05:04.287 35892M] Adding "ld-1.itunes.apple.com" (len 22) to buffer. next_str_pos is 5776
[2022-09-25 13:05:04.323 35892M] Adding "50-courier.push.apple.com" (len 26) to buffer. next_str_pos is 5798
[2022-09-25 13:05:04.350 35892M] Adding "47-courier.push.apple.com" (len 26) to buffer. next_str_pos is 5824
[2022-09-25 13:05:04.407 35892M] Adding "rtm.tnt-ea.com" (len 15) to buffer. next_str_pos is 5850
[2022-09-25 13:05:04.434 35892M] Adding "p106-caldav.icloud.com" (len 23) to buffer. next_str_pos is 5865
[2022-09-25 13:05:04.545 35892M] Adding "scontent.xx.fbcdn.net" (len 22) to buffer. next_str_pos is 5888
[2022-09-25 13:05:04.680 35892M] Adding "edge.microsoft.com" (len 19) to buffer. next_str_pos is 5910
[2022-09-25 13:05:04.954 35892M] Adding "gsp-ssl.ls-apple.com.akadns.net" (len 32) to buffer. next_str_pos is 5929
[2022-09-25 13:05:05.036 35892M] Adding "xp.itunes-apple.com.akadns.net" (len 31) to buffer. next_str_pos is 5961
[2022-09-25 13:05:05.207 35892M] Adding "39-courier.push.apple.com" (len 26) to buffer. next_str_pos is 5992
[2022-09-25 13:05:05.208 35892M] Adding "192.168.1.67" (len 13) to buffer. next_str_pos is 6018
[2022-09-25 13:05:05.454 35892M] Adding "36-courier.push.apple.com" (len 26) to buffer. next_str_pos is 6031
[2022-09-25 13:05:05.508 35892M] Adding "time.g.aaplimg.com" (len 19) to buffer. next_str_pos is 6057
[2022-09-25 13:05:05.540 35892M] Adding "45-courier.push.apple.com" (len 26) to buffer. next_str_pos is 6076
[2022-09-25 13:05:05.596 35892M] Adding "g.whatsapp.net" (len 15) to buffer. next_str_pos is 6102
[2022-09-25 13:05:05.623 35892M] Adding "settings-win.data.microsoft.com" (len 32) to buffer. next_str_pos is 6117
[2022-09-25 13:05:05.649 35892M] Adding "pr-pod4-smp-device.apple.com" (len 29) to buffer. next_str_pos is 6149
[2022-09-25 13:05:05.704 35892M] Adding "pr-pod4-smp-device.gcsis-apple.com.akadns.net" (len 46) to buffer. next_str_pos is 6178
[2022-09-25 13:05:05.750 35892M] Adding "ocsp.digicert.com" (len 18) to buffer. next_str_pos is 6224
[2022-09-25 13:05:05.804 35892M] Adding "cs9.wac.phicdn.net" (len 19) to buffer. next_str_pos is 6242
[2022-09-25 13:05:05.865 35892M] Adding "e3528.dscg.akamaiedge.net" (len 26) to buffer. next_str_pos is 6261
[2022-09-25 13:05:05.923 35892M] Adding "ingest.apple-studies.com" (len 25) to buffer. next_str_pos is 6287
[2022-09-25 13:05:06.064 35892M] Adding "p21-buy.itunes.apple.com" (len 25) to buffer. next_str_pos is 6312
[2022-09-25 13:05:06.206 35892M] Adding "p21-buy-lb.itunes-apple.com.akadns.net" (len 39) to buffer. next_str_pos is 6337
[2022-09-25 13:05:06.428 35892M] Adding "token.safebrowsing.apple" (len 25) to buffer. next_str_pos is 6376
[2022-09-25 13:05:06.484 35892M] Adding "www.newgrounds.com" (len 19) to buffer. next_str_pos is 6401
[2022-09-25 13:05:06.540 35892M] Adding "sequoia.cdn-apple.com" (len 22) to buffer. next_str_pos is 6420
[2022-09-25 13:05:06.597 35892M] Adding "websitereview.corp.apple.com" (len 29) to buffer. next_str_pos is 6442
[2022-09-25 13:05:06.924 35892M] Adding "updates.cdn-apple.com" (len 22) to buffer. next_str_pos is 6471
[2022-09-25 13:05:07.422 35892M] Adding "36.courier-push-apple.com.akadns.net" (len 37) to buffer. next_str_pos is 6493
[2022-09-25 13:05:07.508 35892M] Adding "safebrowsing.g.aaplimg.com" (len 27) to buffer. next_str_pos is 6530
[2022-09-25 13:05:07.539 35892M] Adding "updates.g.aaplimg.com" (len 22) to buffer. next_str_pos is 6557
[2022-09-25 13:05:07.598 35892M] Adding "a1943.dscgi3.akamai.net" (len 24) to buffer. next_str_pos is 6579
[2022-09-25 13:05:07.654 35892M] Adding "pd.itunes.apple.com" (len 20) to buffer. next_str_pos is 6603
[2022-09-25 13:05:07.830 35892M] Adding "gsp57-ssl-locus.ls.apple.com" (len 29) to buffer. next_str_pos is 6623
[2022-09-25 13:05:07.887 35892M] Adding "gsp57-ssl-background.ls-apple.com.akadns.net" (len 45) to buffer. next_str_pos is 6652
[2022-09-25 13:05:07.921 35892M] Adding "x1.c.lencr.org" (len 15) to buffer. next_str_pos is 6697
[2022-09-25 13:05:07.979 35892M] Adding "crl.apple.com" (len 14) to buffer. next_str_pos is 6712
[2022-09-25 13:05:08.021 35892M] Adding "i.instagram.com" (len 16) to buffer. next_str_pos is 6726
[2022-09-25 13:05:08.057 35892M] Adding "msgr-latest.c10r.facebook.com" (len 30) to buffer. next_str_pos is 6742
[2022-09-25 13:05:08.146 35892M] Adding "chat-e2ee-ig-p42.c10r.facebook.com" (len 35) to buffer. next_str_pos is 6772
[2022-09-25 13:05:08.175 35892M] Adding "connectivitycheck.gstatic.com" (len 30) to buffer. next_str_pos is 6807
[2022-09-25 13:05:08.235 35892M] Adding "app-measurement.com" (len 20) to buffer. next_str_pos is 6837
[2022-09-25 13:05:08.264 35892M] Adding "api.twitter.com" (len 16) to buffer. next_str_pos is 6857
[2022-09-25 13:05:08.324 35892M] Adding "pbs.twimg.com" (len 14) to buffer. next_str_pos is 6873
[2022-09-25 13:05:08.384 35892M] Adding "video.twimg.com" (len 16) to buffer. next_str_pos is 6887
[2022-09-25 13:05:08.444 35892M] Adding "d1yr9eoaem0ejb.cloudfront.net" (len 30) to buffer. next_str_pos is 6903
[2022-09-25 13:05:08.474 35892M] Adding "crashlyticsreports-pa.googleapis.com" (len 37) to buffer. next_str_pos is 6933
[2022-09-25 13:05:08.534 35892M] Adding "dualstack.twimg.twitter.map.fastly.net" (len 39) to buffer. next_str_pos is 6970
[2022-09-25 13:05:08.566 35892M] Adding "dualstack.video.twitter.map.fastly.net" (len 39) to buffer. next_str_pos is 7009
[2022-09-25 13:05:08.598 35892M] Adding "api-stream.twitter.com" (len 23) to buffer. next_str_pos is 7048
[2022-09-25 13:05:08.667 35892M] Adding "abs.twimg.com" (len 14) to buffer. next_str_pos is 7071
[2022-09-25 13:05:08.729 35892M] Adding "cs510.wpc.edgecastcdn.net" (len 26) to buffer. next_str_pos is 7085
[2022-09-25 13:05:08.759 35892M] Adding "na.albtls.t.co" (len 15) to buffer. next_str_pos is 7111
[2022-09-25 13:05:08.821 35892M] Adding "api-0-4-3.twitter.com" (len 22) to buffer. next_str_pos is 7126
[2022-09-25 13:05:08.883 35892M] Adding "cs531.wpc.edgecastcdn.net" (len 26) to buffer. next_str_pos is 7148
[2022-09-25 13:05:08.915 35892M] Adding "dlp3zj68t5lvh.cloudfront.net" (len 29) to buffer. next_str_pos is 7174
[2022-09-25 13:05:08.946 35892M] Adding "global.glbtls.t.co" (len 19) to buffer. next_str_pos is 7203
[2022-09-25 13:05:09.009 35892M] Adding "api-0-5-0.twitter.com" (len 22) to buffer. next_str_pos is 7222
[2022-09-25 13:05:09.072 35892M] Adding "api-0-4-2.twitter.com" (len 22) to buffer. next_str_pos is 7244
[2022-09-25 13:05:09.177 35892M] Adding "api-31-0-0.twitter.com" (len 23) to buffer. next_str_pos is 7266
[2022-09-25 13:05:09.267 35892M] Adding "www.bloomberg.com.shared.bloomberga.com" (len 40) to buffer. next_str_pos is 7289
[2022-09-25 13:05:09.299 35892M] Adding "3-courier.push.apple.com" (len 25) to buffer. next_str_pos is 7329
[2022-09-25 13:05:09.364 35892M] Adding "eas.outlook.com" (len 16) to buffer. next_str_pos is 7354
[2022-09-25 13:05:09.522 35892M] Adding "www.sonrie.mx" (len 14) to buffer. next_str_pos is 7370
[2022-09-25 13:05:09.618 35892M] Adding "bit.ly" (len 7) to buffer. next_str_pos is 7384
[2022-09-25 13:05:09.656 35892M] Adding "www.tadadelivery.com.mx" (len 24) to buffer. next_str_pos is 7391
[2022-09-25 13:05:09.751 35892M] Adding "gspe35-ssl.ls-apple.com.akadns.net" (len 35) to buffer. next_str_pos is 7415
[2022-09-25 13:05:09.817 35892M] Adding "gsp36-ssl.ls.apple.com" (len 23) to buffer. next_str_pos is 7450
[2022-09-25 13:05:09.884 35892M] Adding "gsp36-ssl.ls-apple.com.akadns.net" (len 34) to buffer. next_str_pos is 7473
[2022-09-25 13:05:09.917 35892M] Adding "gsp51-ssl.ls.apple.com" (len 23) to buffer. next_str_pos is 7507
[2022-09-25 13:05:09.982 35892M] Adding "gsp51-ssl-ds.ls-apple.com.akadns.net" (len 37) to buffer. next_str_pos is 7530
[2022-09-25 13:05:10.120 35892M] Adding "v10.events.data.microsoft.com" (len 30) to buffer. next_str_pos is 7567
[2022-09-25 13:05:10.224 35892M] Adding "48-courier.push.apple.com" (len 26) to buffer. next_str_pos is 7597
[2022-09-25 13:05:10.536 35892M] Adding "31-courier.push.apple.com" (len 26) to buffer. next_str_pos is 7623
[2022-09-25 13:05:10.675 35892M] Adding "p21-buy.itunes-apple.com.akadns.net" (len 36) to buffer. next_str_pos is 7649
[2022-09-25 13:05:10.780 35892M] Adding "41-courier.push.apple.com" (len 26) to buffer. next_str_pos is 7685
[2022-09-25 13:05:10.922 35892M] Adding "35-courier.push.apple.com" (len 26) to buffer. next_str_pos is 7711
[2022-09-25 13:05:10.992 35892M] Adding "i.ytimg.com" (len 12) to buffer. next_str_pos is 7737
[2022-09-25 13:05:11.058 35892M] Adding "www.bingapis.com" (len 17) to buffer. next_str_pos is 7749
[2022-09-25 13:05:11.092 35892M] Adding "rr4---sn-9gv7lns7.googlevideo.com" (len 34) to buffer. next_str_pos is 7766
[2022-09-25 13:05:11.125 35892M] Adding "i1.ytimg.com" (len 13) to buffer. next_str_pos is 7800
[2022-09-25 13:05:11.159 35892M] Adding "yt3.ggpht.com" (len 14) to buffer. next_str_pos is 7813
[2022-09-25 13:05:11.193 35892M] Adding "rr5---sn-9gv7ened.googlevideo.com" (len 34) to buffer. next_str_pos is 7827
[2022-09-25 13:05:11.226 35892M] Adding "www.bing.com" (len 13) to buffer. next_str_pos is 7861
[2022-09-25 13:05:11.361 35892M] Adding "ocsp.apple.com" (len 15) to buffer. next_str_pos is 7874
[2022-09-25 13:05:11.690 35892M] Adding "apps-mzstatic-cdn.itunes-apple.com.akadns.net" (len 46) to buffer. next_str_pos is 7889
[2022-09-25 13:05:11.789 35892M] Adding "hls-svod.itunes.apple.com" (len 26) to buffer. next_str_pos is 7935
[2022-09-25 13:05:11.858 35892M] Adding "a1865.dscw11.akamai.net" (len 24) to buffer. next_str_pos is 7961
[2022-09-25 13:05:11.893 35892M] Adding "is-ssl.mzstatic.com.itunes-apple.com.akadns.net" (len 48) to buffer. next_str_pos is 7985
[2022-09-25 13:05:12.014 35892M] Adding "metrics-config.icloud.com" (len 26) to buffer. next_str_pos is 8033
[2022-09-25 13:05:12.354 35892M] Adding "config.me.apple-dns.net" (len 24) to buffer. next_str_pos is 8059
[2022-09-25 13:05:12.534 35892M] Adding "7-courier.push.apple.com" (len 25) to buffer. next_str_pos is 8083
[2022-09-25 13:05:12.760 35892M] Adding "lcdn-locator.apple.com.akadns.net" (len 34) to buffer. next_str_pos is 8108
[2022-09-25 13:05:12.916 35892M] Adding "chat.cdn.whatsapp.net" (len 22) to buffer. next_str_pos is 8142
[2022-09-25 13:05:13.691 35892M] Adding "p34-calendars.icloud.com" (len 25) to buffer. next_str_pos is 8164
[2022-09-25 13:05:13.831 35892M] Adding "calendars.fe.apple-dns.net" (len 27) to buffer. next_str_pos is 8189
[2022-09-25 13:05:13.867 35892M] Adding "28-courier.push.apple.com" (len 26) to buffer. next_str_pos is 8216
[2022-09-25 13:05:14.072 35892M] Adding "www.youtube.com" (len 16) to buffer. next_str_pos is 8242
[2022-09-25 13:05:14.171 35892M] Adding "24-courier.push.apple.com" (len 26) to buffer. next_str_pos is 8258
[2022-09-25 13:05:14.305 35892M] Adding "cdn-icloud-content.g.aaplimg.com" (len 33) to buffer. next_str_pos is 8284
[2022-09-25 13:05:14.505 35892M] Adding "1-courier.push.apple.com" (len 25) to buffer. next_str_pos is 8317
[2022-09-25 13:05:14.644 35892M] Adding "storecatalogrevocation.storequality.microsoft.com" (len 50) to buffer. next_str_pos is 8342
[2022-09-25 13:05:14.742 35892M] Adding "activity.windows.com" (len 21) to buffer. next_str_pos is 8392
[2022-09-25 13:05:14.948 35892M] Adding "login.live.com" (len 15) to buffer. next_str_pos is 8413
[2022-09-25 13:05:15.056 35892M] Adding "cs.dds.microsoft.com" (len 21) to buffer. next_str_pos is 8428
[2022-09-25 13:05:15.094 35892M] Adding "assets.activity.windows.com" (len 28) to buffer. next_str_pos is 8449
[2022-09-25 13:05:15.168 35892M] Adding "river.data.ea.com" (len 18) to buffer. next_str_pos is 8477
[2022-09-25 13:05:15.535 35892M] Adding "p67-imap.mail.me.com.akadns.net" (len 32) to buffer. next_str_pos is 8495
[2022-09-25 13:05:15.715 35892M] Adding "login.microsoftonline.com" (len 26) to buffer. next_str_pos is 8527
[2022-09-25 13:05:16.018 35892M] Adding "ctldl.windowsupdate.com" (len 24) to buffer. next_str_pos is 8553
[2022-09-25 13:05:16.271 35892M] Adding "www.tm.ak.prd.aadg.trafficmanager.net" (len 38) to buffer. next_str_pos is 8577
[2022-09-25 13:05:16.308 35892M] Adding "init-p01md-lb.push-apple.com.akadns.net" (len 40) to buffer. next_str_pos is 8615
[2022-09-25 13:05:16.382 35892M] Adding "a1051.b.akamai.net" (len 19) to buffer. next_str_pos is 8655
[2022-09-25 13:05:16.560 35892M] Adding "p35-content.icloud.com" (len 23) to buffer. next_str_pos is 8674
[2022-09-25 13:05:16.635 35892M] Adding "content.fe.apple-dns.net" (len 25) to buffer. next_str_pos is 8697
[2022-09-25 13:05:16.672 35892M] Adding "gateway-asset.icloud-content.com" (len 33) to buffer. next_str_pos is 8722
[2022-09-25 13:05:16.747 35892M] Adding "p29-content.icloud.com" (len 23) to buffer. next_str_pos is 8755
[2022-09-25 13:05:16.823 35892M] Adding "gateway-asset.ce.apple-dns.net" (len 31) to buffer. next_str_pos is 8778
[2022-09-25 13:05:16.898 35892M] Adding "edge-022.usmsc2.icloud-content.com" (len 35) to buffer. next_str_pos is 8809
[2022-09-25 13:05:17.112 35892M] Adding "edge-022.usmsc2.ce.apple-dns.net" (len 33) to buffer. next_str_pos is 8844
[2022-09-25 13:05:25.044 35892M] Adding "p31-content.icloud.com" (len 23) to buffer. next_str_pos is 8877
[2022-09-25 13:05:25.344 35892M] Adding "p61-content.icloud.com" (len 23) to buffer. next_str_pos is 8900
[2022-09-25 13:05:26.148 35892M] Adding "p23-content.icloud.com" (len 23) to buffer. next_str_pos is 8923
[2022-09-25 13:05:26.355 35892M] Adding "p25-content.icloud.com" (len 23) to buffer. next_str_pos is 8946
[2022-09-25 13:05:26.432 35892M] Adding "p63-content.icloud.com" (len 23) to buffer. next_str_pos is 8969
[2022-09-25 13:05:26.800 35892M] Adding "p27-content.icloud.com" (len 23) to buffer. next_str_pos is 8992
[2022-09-25 13:05:27.107 35892M] Adding "p37-content.icloud.com" (len 23) to buffer. next_str_pos is 9015
[2022-09-25 13:05:27.411 35892M] Adding "wdcp.microsoft.com" (len 19) to buffer. next_str_pos is 9038
[2022-09-25 13:05:27.525 35892M] Adding "p59-content.icloud.com" (len 23) to buffer. next_str_pos is 9057
[2022-09-25 13:05:27.624 35892M] Adding "p57-content.icloud.com" (len 23) to buffer. next_str_pos is 9080
[2022-09-25 13:05:31.232 35892M] Adding "www.petco.com.mx" (len 17) to buffer. next_str_pos is 9103
[2022-09-25 13:05:31.302 35892M] Adding "recommender.scarabresearch.com" (len 31) to buffer. next_str_pos is 9120
[2022-09-25 13:05:31.380 35892M] Adding "www.google-analytics.com" (len 25) to buffer. next_str_pos is 9151
[2022-09-25 13:05:31.458 35892M] Adding "us.creativecdn.com" (len 19) to buffer. next_str_pos is 9176
[2022-09-25 13:05:31.571 35892M] Adding "p41-quota.icloud.com" (len 21) to buffer. next_str_pos is 9195
[2022-09-25 13:05:31.761 35892M] Adding "acuityplatform.com" (len 19) to buffer. next_str_pos is 9216
[2022-09-25 13:05:31.839 35892M] Adding "pixel.sitescout.com" (len 20) to buffer. next_str_pos is 9235
[2022-09-25 13:05:31.919 35892M] Adding "api.ipify.org" (len 14) to buffer. next_str_pos is 9255
[2022-09-25 13:05:31.998 35892M] Adding "graph.facebook.com" (len 19) to buffer. next_str_pos is 9269
[2022-09-25 13:05:32.078 35892M] Adding "analytics.tiktok.com" (len 21) to buffer. next_str_pos is 9288
[2022-09-25 13:05:32.165 35892M] Adding "9038889.fls.doubleclick.net" (len 28) to buffer. next_str_pos is 9309
[2022-09-25 13:05:32.205 35892M] Adding "dart.l.doubleclick.net" (len 23) to buffer. next_str_pos is 9337
[2022-09-25 13:05:32.324 35892M] Adding "a2.adform.net" (len 14) to buffer. next_str_pos is 9360
[2022-09-25 13:05:32.405 35892M] Adding "in.hotjar.com" (len 14) to buffer. next_str_pos is 9374
[2022-09-25 13:05:32.485 35892M] Adding "vc.hotjar.io" (len 13) to buffer. next_str_pos is 9388
[2022-09-25 13:05:32.614 35892M] Adding "api.ipify.org.herokudns.com" (len 28) to buffer. next_str_pos is 9401
[2022-09-25 13:05:32.655 35892M] Adding "in-live.live.eks.hotjar.com" (len 28) to buffer. next_str_pos is 9429
[2022-09-25 13:05:32.704 35892M] Adding "track-us.adformnet.akadns.net" (len 30) to buffer. next_str_pos is 9457
[2022-09-25 13:05:32.767 35892M] Adding "sts.eccmp.com" (len 14) to buffer. next_str_pos is 9487
[2022-09-25 13:05:32.951 35892M] Adding "m.youtube.com" (len 14) to buffer. next_str_pos is 9501
[2022-09-25 13:05:33.035 35892M] Adding "fonts.gstatic.com" (len 18) to buffer. next_str_pos is 9515
[2022-09-25 13:05:33.119 35892M] Adding "accounts.google.com" (len 20) to buffer. next_str_pos is 9533
[2022-09-25 13:05:33.201 35892M] Adding "gstaticadssl.l.google.com" (len 26) to buffer. next_str_pos is 9553
[2022-09-25 13:05:33.310 35892M] Adding "rr4---sn-9gv7lnes.googlevideo.com" (len 34) to buffer. next_str_pos is 9579
[2022-09-25 13:05:33.460 35892M] Adding "rr4.sn-9gv7lnes.googlevideo.com" (len 32) to buffer. next_str_pos is 9613
[2022-09-25 13:05:33.739 35892M] Adding "p42-imap.mail.me.com" (len 21) to buffer. next_str_pos is 9645
[2022-09-25 13:05:34.487 35892M] Adding "updates.discord.com" (len 20) to buffer. next_str_pos is 9666
[2022-09-25 13:05:34.533 35892M] Adding "styles.redditmedia.com" (len 23) to buffer. next_str_pos is 9686
[2022-09-25 13:05:34.616 35892M] Adding "mailroom-api.reddit.com" (len 24) to buffer. next_str_pos is 9709
[2022-09-25 13:05:34.699 35892M] Adding "e.reddit.com" (len 13) to buffer. next_str_pos is 9733
[2022-09-25 13:05:34.783 35892M] Adding "gql.reddit.com" (len 15) to buffer. next_str_pos is 9746
[2022-09-25 13:05:34.866 35892M] Adding "reddit.map.fastly.net" (len 22) to buffer. next_str_pos is 9761
[2022-09-25 13:05:34.908 35892M] Adding "dualstack.reddit.map.fastly.net" (len 32) to buffer. next_str_pos is 9783
[2022-09-25 13:05:35.415 35892M] Adding "weather-edge.apple.com" (len 23) to buffer. next_str_pos is 9815
[2022-09-25 13:05:35.500 35892M] Adding "weather-edge.news.apple-dns.net" (len 32) to buffer. next_str_pos is 9838
[2022-09-25 13:05:35.543 35892M] Adding "46-courier.push.apple.com" (len 26) to buffer. next_str_pos is 9870
[2022-09-25 13:05:35.814 35892M] Adding "32-courier.push.apple.com" (len 26) to buffer. next_str_pos is 9896
[2022-09-25 13:05:35.902 35892M] Adding "imap.gmail.com" (len 15) to buffer. next_str_pos is 9922
[2022-09-25 13:05:35.946 35892M] Adding "www.origin.com" (len 15) to buffer. next_str_pos is 9937
[2022-09-25 13:05:36.331 35892M] Adding "api.github.com" (len 15) to buffer. next_str_pos is 9952
[2022-09-25 13:05:36.332 35892M] Adding "127.0.0.1" (len 10) to buffer. next_str_pos is 9967
[2022-09-25 13:05:36.744 35892M] Adding "p37-buy.itunes.apple.com" (len 25) to buffer. next_str_pos is 9977
[2022-09-25 13:05:36.830 35892M] Adding "p37-buy-lb.itunes-apple.com.akadns.net" (len 39) to buffer. next_str_pos is 10002
[2022-09-25 13:05:37.146 35892M] Adding "192.168.1.66" (len 13) to buffer. next_str_pos is 10041
[2022-09-25 13:05:37.826 35892M] Adding "z-p42-chat-e2ee-ig.facebook.com" (len 32) to buffer. next_str_pos is 10054
[2022-09-25 13:05:37.870 35892M] Adding "instagram.c10r.instagram.com" (len 29) to buffer. next_str_pos is 10086
[2022-09-25 13:05:37.943 35892M] Adding "gateway.instagram.com" (len 22) to buffer. next_str_pos is 10115
[2022-09-25 13:05:37.986 35892M] Adding "graph.instagram.com" (len 20) to buffer. next_str_pos is 10137
[2022-09-25 13:05:38.057 35892M] Adding "launches.appsflyer.com" (len 23) to buffer. next_str_pos is 10157
[2022-09-25 13:05:38.145 35892M] Adding "api22-core-c-useast1a.tiktokv.com" (len 34) to buffer. next_str_pos is 10180
[2022-09-25 13:05:38.189 35892M] Adding "api22-normal-c-useast1a.tiktokv.com" (len 36) to buffer. next_str_pos is 10214
[2022-09-25 13:05:38.234 35892M] Adding "search22-normal-c-useast1a.tiktokv.com" (len 39) to buffer. next_str_pos is 10250
[2022-09-25 13:05:38.279 35892M] Adding "log22-normal-useast1a.tiktokv.com" (len 34) to buffer. next_str_pos is 10289
[2022-09-25 13:05:38.324 35892M] Adding "webcast22-normal-c-useast1a.tiktokv.com" (len 40) to buffer. next_str_pos is 10323
[2022-09-25 13:05:38.369 35892M] Adding "vcs-va.tiktokv.com" (len 19) to buffer. next_str_pos is 10363
[2022-09-25 13:05:38.444 35892M] Adding "gecko-va.tiktokv.com" (len 21) to buffer. next_str_pos is 10382
[2022-09-25 13:05:38.534 35892M] Adding "api.snapkit.com" (len 16) to buffer. next_str_pos is 10403
[2022-09-25 13:05:38.624 35892M] Adding "www.apple.com" (len 14) to buffer. next_str_pos is 10419
[2022-09-25 13:05:39.358 35892M] Adding "p16-amd-va.tiktokcdn.com" (len 25) to buffer. next_str_pos is 10433
[2022-09-25 13:05:39.403 35892M] Adding "p16-sign-va.tiktokcdn.com" (len 26) to buffer. next_str_pos is 10458
[2022-09-25 13:05:39.448 35892M] Adding "im16-normal-c-useast1a.tiktokv.com" (len 35) to buffer. next_str_pos is 10484
[2022-09-25 13:05:39.494 35892M] Adding "lf16-gecko-source.tiktokcdn.com" (len 32) to buffer. next_str_pos is 10519
[2022-09-25 13:05:39.539 35892M] Adding "a1974.r.akamai.net" (len 19) to buffer. next_str_pos is 10551
[2022-09-25 13:05:39.585 35892M] Adding "tnc16-platform-useast1a.tiktokv.com" (len 36) to buffer. next_str_pos is 10570
[2022-09-25 13:05:39.631 35892M] Adding "libra22-normal-useast1a.tiktokv.com" (len 36) to buffer. next_str_pos is 10606
[2022-09-25 13:05:39.676 35892M] Adding "ghs.googlehosted.com" (len 21) to buffer. next_str_pos is 10642
[2022-09-25 13:05:39.737 35892M] Adding "mon15-normal-useast1a.tiktokv.com" (len 34) to buffer. next_str_pos is 10663
[2022-09-25 13:05:39.783 35892M] Adding "pitaya-va.tiktokv.com" (len 22) to buffer. next_str_pos is 10697
[2022-09-25 13:05:39.831 35892M] Adding "frontier-va.tiktokv.com" (len 24) to buffer. next_str_pos is 10719
[2022-09-25 13:05:39.877 35892M] Adding "hotapi22-normal-useast1a.tiktokv.com" (len 37) to buffer. next_str_pos is 10743
[2022-09-25 13:05:40.106 35892M] Adding "mssdk22-normal-useast1a.tiktokv.com" (len 36) to buffer. next_str_pos is 10780
[2022-09-25 13:05:40.519 35892M] Adding "gecko16-normal-useast1a.tiktokv.com" (len 36) to buffer. next_str_pos is 10816
[2022-09-25 13:05:40.565 35892M] Adding "bsync-va.tiktokv.com" (len 21) to buffer. next_str_pos is 10852
[2022-09-25 13:05:40.612 35892M] Adding "webcast22-ws-useast1a.tiktokv.com" (len 34) to buffer. next_str_pos is 10873
[2022-09-25 13:05:40.659 35892M] Adding "webcast16-ws-useast1a.tiktokv.com" (len 34) to buffer. next_str_pos is 10907
[2022-09-25 13:05:40.706 35892M] Adding "pitaya-task-va.tiktokv.com" (len 27) to buffer. next_str_pos is 10941
[2022-09-25 13:05:40.753 35892M] Adding "v16m.tiktokcdn.com" (len 19) to buffer. next_str_pos is 10968
[2022-09-25 13:05:40.800 35892M] Adding "whoami.akamai.net" (len 18) to buffer. next_str_pos is 10987
[2022-09-25 13:05:40.893 35892M] Adding "pull-cmaf-f16-gcp01.ttlivecdn.com" (len 34) to buffer. next_str_pos is 11005
[2022-09-25 13:05:40.940 35892M] Adding "pull-f5-tt02.fcdn.us.tiktokv.com" (len 33) to buffer. next_str_pos is 11039
[2022-09-25 13:05:40.988 35892M] Adding "v77.tiktokcdn.com" (len 18) to buffer. next_str_pos is 11072
[2022-09-25 13:05:41.504 35892M] Adding "p77-va.tiktokcdn.com" (len 21) to buffer. next_str_pos is 11090
[2022-09-25 13:05:42.114 35892M] Adding "p16-webcast.tiktokcdn.com" (len 26) to buffer. next_str_pos is 11111
[2022-09-25 13:05:42.162 35892M] Adding "p19-sign.tiktokcdn-us.com" (len 26) to buffer. next_str_pos is 11137
[2022-09-25 13:05:42.210 35892M] Adding "sf16-scmcdn-sg.ibytedtos.com" (len 29) to buffer. next_str_pos is 11163
[2022-09-25 13:05:42.258 35892M] Adding "pull-flv-l1-va01.ttlivecdn.com" (len 31) to buffer. next_str_pos is 11192
[2022-09-25 13:05:42.306 35892M] Adding "api16-normal-c-useast1a.tiktokv.com" (len 36) to buffer. next_str_pos is 11223
[2022-09-25 13:05:42.354 35892M] Adding "rtlog22-normal-useast1a.tiktokv.com" (len 36) to buffer. next_str_pos is 11259
[2022-09-25 13:05:42.404 35892M] Adding "api19-core-c-useast1a.tiktokv.com" (len 34) to buffer. next_str_pos is 11295
[2022-09-25 13:05:42.452 35892M] Adding "pull-w5-sg01.tiktokcdn.com" (len 27) to buffer. next_str_pos is 11329
[2022-09-25 13:05:42.500 35892M] Adding "pull-cmaf-l10-sg01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 11356
[2022-09-25 13:05:42.549 35892M] Adding "api19-normal-c-useast1a.tiktokv.com" (len 36) to buffer. next_str_pos is 11389
[2022-09-25 13:05:42.695 35892M] Adding "pull-flv-l1-sg01.tiktokcdn.com" (len 31) to buffer. next_str_pos is 11425
[2022-09-25 13:05:42.743 35892M] Adding "webcast19-normal-c-useast1a.tiktokv.com" (len 40) to buffer. next_str_pos is 11456
[2022-09-25 13:05:42.792 35892M] Adding "search19-normal-c-useast1a.tiktokv.com" (len 39) to buffer. next_str_pos is 11496
[2022-09-25 13:05:42.841 35892M] Adding "pull-q5-va01.tiktokcdn.com" (len 27) to buffer. next_str_pos is 11535
[2022-09-25 13:05:42.932 35892M] Adding "v58.tiktokcdn.com" (len 18) to buffer. next_str_pos is 11562
[2022-09-25 13:05:42.982 35892M] Adding "pull-cmaf-f16-tt02.tiktokcdn.com" (len 33) to buffer. next_str_pos is 11580
[2022-09-25 13:05:43.031 35892M] Adding "pull-flv-l11-gcp01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 11613
[2022-09-25 13:05:43.081 35892M] Adding "pull-cmaf-f77-sg01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 11646
[2022-09-25 13:05:43.130 35892M] Adding "pull-a5-tt02-infra.fcdn.us.tiktokv.com" (len 39) to buffer. next_str_pos is 11679
[2022-09-25 13:05:43.179 35892M] Adding "pull-flv-l11-gcp01.ttlivecdn.com" (len 33) to buffer. next_str_pos is 11718
[2022-09-25 13:05:43.229 35892M] Adding "push-rtmp-l16-va01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 11751
[2022-09-25 13:05:43.308 35892M] Adding "v19.tiktokcdn.com" (len 18) to buffer. next_str_pos is 11784
[2022-09-25 13:05:43.358 35892M] Adding "pull-q5-sg01.tiktokcdn.com" (len 27) to buffer. next_str_pos is 11802
[2022-09-25 13:05:43.408 35892M] Adding "pull-flv-l1-va01.tiktokcdn.com" (len 31) to buffer. next_str_pos is 11829
[2022-09-25 13:05:43.458 35892M] Adding "pull-flv-f77-gcp01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 11860
[2022-09-25 13:05:43.508 35892M] Adding "push-rtmp-f5-tt02.fcdn.us.tiktokv.com" (len 38) to buffer. next_str_pos is 11893
[2022-09-25 13:05:43.560 35892M] Adding "push-rtmp-f5-va01.ttlivecdn.com" (len 32) to buffer. next_str_pos is 11931
[2022-09-25 13:05:43.613 35892M] Adding "pull-cmaf-f77-va01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 11963
[2022-09-25 13:05:43.664 35892M] Adding "pull-o5-sg01.tiktokcdn.com" (len 27) to buffer. next_str_pos is 11996
[2022-09-25 13:05:43.714 35892M] Adding "pull-cmaf-f16-tt02.fcdn.us.tiktokv.com" (len 39) to buffer. next_str_pos is 12023
[2022-09-25 13:05:43.766 35892M] Adding "pull-f5-tt01.tiktokcdn.com" (len 27) to buffer. next_str_pos is 12062
[2022-09-25 13:05:43.817 35892M] Adding "pull-a5-tt01.fcdn.us.tiktokv.com" (len 33) to buffer. next_str_pos is 12089
[2022-09-25 13:05:43.868 35892M] Adding "pull-hls-l77-va01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 12122
[2022-09-25 13:05:43.919 35892M] Adding "pull-hls-f58-sg01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 12154
[2022-09-25 13:05:43.970 35892M] Adding "push-rtmp-f5-va01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 12186
[2022-09-25 13:05:44.021 35892M] Adding "pull-cmaf-l77-va01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 12218
[2022-09-25 13:05:44.072 35892M] Adding "push-rtmp-l11-va01.ttlivecdn.com" (len 33) to buffer. next_str_pos is 12251
[2022-09-25 13:05:44.124 35892M] Adding "pull-a5-gcp01.tiktokcdn.com" (len 28) to buffer. next_str_pos is 12284
[2022-09-25 13:05:44.176 35892M] Adding "pull-flv-l77-va01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 12312
[2022-09-25 13:05:44.227 35892M] Adding "pull-cmaf-f16-tt01.fcdn.us.tiktokv.com" (len 39) to buffer. next_str_pos is 12344
[2022-09-25 13:05:44.279 35892M] Adding "pull-flv-f10-gcp01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 12383
[2022-09-25 13:05:44.331 35892M] Adding "pull-hls-f77-sg01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 12416
[2022-09-25 13:05:44.383 35892M] Adding "pull-lls-l11-sg01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 12448
[2022-09-25 13:05:44.435 35892M] Adding "pull-w5-gcp01.tiktokcdn.com" (len 28) to buffer. next_str_pos is 12480
[2022-09-25 13:05:44.487 35892M] Adding "pull-f5-gcp01.tiktokcdn.com" (len 28) to buffer. next_str_pos is 12508
[2022-09-25 13:05:44.591 35892M] Adding "pull-lls-l11.tiktokcdn.com" (len 27) to buffer. next_str_pos is 12536
[2022-09-25 13:05:44.644 35892M] Adding "push-rtmp-l1-va01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 12563
[2022-09-25 13:05:44.696 35892M] Adding "pull-hls-f77-va01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 12595
[2022-09-25 13:05:44.749 35892M] Adding "pull-flv-l16-tt01.tiktokcdn-us.com" (len 35) to buffer. next_str_pos is 12627
[2022-09-25 13:05:44.802 35892M] Adding "pull-f5-va01.tiktokcdn.com" (len 27) to buffer. next_str_pos is 12662
[2022-09-25 13:05:44.854 35892M] Adding "push-rtmp-l11-va01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 12689
[2022-09-25 13:05:44.907 35892M] Adding "pull-cmaf-f77-gcp01.tiktokcdn.com" (len 34) to buffer. next_str_pos is 12722
[2022-09-25 13:05:44.960 35892M] Adding "pull-flv-f77-sg01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 12756
[2022-09-25 13:05:45.013 35892M] Adding "pull-flv-l10-sg01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 12788
[2022-09-25 13:05:45.067 35892M] Adding "push-rtmp-l1-va01.ttlivecdn.com" (len 32) to buffer. next_str_pos is 12820
[2022-09-25 13:05:45.173 35892M] Adding "pull-flv-l16-gcp01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 12852
[2022-09-25 13:05:45.226 35892M] Adding "pull-flv-f77-va01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 12885
[2022-09-25 13:05:45.310 35892M] Adding "pull-cmaf-l16-gcp01.tiktokcdn.com" (len 34) to buffer. next_str_pos is 12917
[2022-09-25 13:05:45.363 35892M] Adding "pull-flv-l11-sg01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 12951
[2022-09-25 13:05:45.417 35892M] Adding "pull-c5-va01.tiktokcdn.com" (len 27) to buffer. next_str_pos is 12983
[2022-09-25 13:05:45.471 35892M] Adding "pull-cmaf-f16-sg01.ttlivecdn.com" (len 33) to buffer. next_str_pos is 13010
[2022-09-25 13:05:45.525 35892M] Adding "pull-f5-sg01.tiktokcdn.com" (len 27) to buffer. next_str_pos is 13043
[2022-09-25 13:05:45.579 35892M] Adding "pull-cmaf-l10-gcp01.tiktokcdn.com" (len 34) to buffer. next_str_pos is 13070
[2022-09-25 13:05:45.934 35892M] Adding "pull-flv-l11-va01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 13104
[2022-09-25 13:05:45.988 35892M] Adding "pull-flv-l11-sg01.ttlivecdn.com" (len 32) to buffer. next_str_pos is 13136
[2022-09-25 13:05:46.103 35892M] Adding "pull-flv-l1-gcp01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 13168
[2022-09-25 13:05:46.188 35892M] Adding "mon-i18n.tiktokv.com" (len 21) to buffer. next_str_pos is 13200
[2022-09-25 13:05:46.303 35892M] Adding "pull-flv-f10-sg01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 13221
[2022-09-25 13:05:46.358 35892M] Adding "pull-cmaf-f58-sg01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 13253
[2022-09-25 13:05:46.413 35892M] Adding "pull-cmaf-f16-sg01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 13286
[2022-09-25 13:05:46.468 35892M] Adding "pull-flv-f11-gcp01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 13319
[2022-09-25 13:05:46.523 35892M] Adding "pull-flv-l11-va01.ttlivecdn.com" (len 32) to buffer. next_str_pos is 13352
[2022-09-25 13:05:46.524 35892M] DEBUG: LCM(4096, 24) == 12288 >= 24
[2022-09-25 13:05:46.524 35892M] Resizing "FTL-domains" from 12288 to (1024 * 24) == 24576 (/dev/shm: 753.7KB used, 4.1GB total, FTL uses 741.7KB)
[2022-09-25 13:05:46.524 35892M] SHMEM pointer updated: 0x7f95c0d000 -> 0x7f95951000 (12288 24576)
[2022-09-25 13:05:46.578 35892M] Adding "pull-a5-va01.tiktokcdn.com" (len 27) to buffer. next_str_pos is 13384
[2022-09-25 13:05:46.634 35892M] Adding "pull-flv-l1-gcp01.ttlivecdn.com" (len 32) to buffer. next_str_pos is 13411
[2022-09-25 13:05:46.744 35892M] Adding "pull-flv-f10-va01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 13443
[2022-09-25 13:05:46.800 35892M] Adding "api-0-4-7.twitter.com" (len 22) to buffer. next_str_pos is 13475
[2022-09-25 13:05:46.911 35892M] Adding "pull-f5-va01.ttlivecdn.com" (len 27) to buffer. next_str_pos is 13497
[2022-09-25 13:05:47.028 35892M] Adding "pull-flv-f11-sg01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 13524
[2022-09-25 13:05:47.115 35892M] Adding "pull-flv-f1-sg01.tiktokcdn.com" (len 31) to buffer. next_str_pos is 13556
[2022-09-25 13:05:47.171 35892M] Adding "pull-o5-gcp01.tiktokcdn.com" (len 28) to buffer. next_str_pos is 13587
[2022-09-25 13:05:47.227 35892M] Adding "pull-cmaf-f16-va01.ttlivecdn.com" (len 33) to buffer. next_str_pos is 13615
[2022-09-25 13:05:47.283 35892M] Adding "pull-cmaf-f16-va01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 13648
[2022-09-25 13:05:47.339 35892M] Adding "pull-cmaf-l16-va01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 13681
[2022-09-25 13:05:47.395 35892M] Adding "pull-cmaf-l16-sg01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 13714
[2022-09-25 13:05:47.451 35892M] Adding "pull-flv-f11-va01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 13747
[2022-09-25 13:05:47.508 35892M] Adding "pull-f5-tt01.fcdn.us.tiktokv.com" (len 33) to buffer. next_str_pos is 13779
[2022-09-25 13:05:47.565 35892M] Adding "pull-f5-tt02-infra.fcdn.us.tiktokv.com" (len 39) to buffer. next_str_pos is 13812
[2022-09-25 13:05:47.622 35892M] Adding "pull-a5-sg01.tiktokcdn.com" (len 27) to buffer. next_str_pos is 13851
[2022-09-25 13:05:47.679 35892M] Adding "pull-f5-tt02.tiktokcdn.com" (len 27) to buffer. next_str_pos is 13878
[2022-09-25 13:05:47.735 35892M] Adding "pull-cmaf-f16-tt01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 13905
[2022-09-25 13:05:47.792 35892M] Adding "pull-cmaf-f16-gcp01.tiktokcdn.com" (len 34) to buffer. next_str_pos is 13938
[2022-09-25 13:05:47.850 35892M] Adding "pull-f5-sg01.ttlivecdn.com" (len 27) to buffer. next_str_pos is 13972
[2022-09-25 13:05:47.908 35892M] Adding "push-rtmp-l77-va01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 13999
[2022-09-25 13:05:47.968 35892M] Adding "pull-flv-l16-sg01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 14032
[2022-09-25 13:05:48.026 35892M] Adding "pull-flv-l1-sg01.ttlivecdn.com" (len 31) to buffer. next_str_pos is 14064
[2022-09-25 13:05:48.084 35892M] Adding "pull-flv-f1-va01.tiktokcdn.com" (len 31) to buffer. next_str_pos is 14095
[2022-09-25 13:05:48.141 35892M] Adding "pull-q5-gcp01.tiktokcdn.com" (len 28) to buffer. next_str_pos is 14126
[2022-09-25 13:05:48.199 35892M] Adding "pull-flv-l10-gcp01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 14154
[2022-09-25 13:05:48.257 35892M] Adding "pull-flv-l16-va01.tiktokcdn.com" (len 32) to buffer. next_str_pos is 14187
[2022-09-25 13:05:48.315 35892M] Adding "pull-w5-va01.tiktokcdn.com" (len 27) to buffer. next_str_pos is 14219
[2022-09-25 13:05:48.373 35892M] Adding "pull-hls-f77-gcp01.tiktokcdn.com" (len 33) to buffer. next_str_pos is 14246
[2022-09-25 13:05:48.431 35892M] Adding "pull-f5-gcp01.ttlivecdn.com" (len 28) to buffer. next_str_pos is 14279
[2022-09-25 13:05:48.490 35892M] Adding "pull-cmaf-l16-tt01.tiktokcdn-us.com" (len 36) to buffer. next_str_pos is 14307
[2022-09-25 13:05:48.548 35892M] Adding "api-33-0-0.twitter.com" (len 23) to buffer. next_str_pos is 14343
[2022-09-25 13:05:48.664 35892M] Adding "probe-t.twitter.com" (len 20) to buffer. next_str_pos is 14366
[2022-09-25 13:05:48.782 35892M] Adding "api-1-0-0.twitter.com" (len 22) to buffer. next_str_pos is 14386
[2022-09-25 13:05:48.901 35892M] Adding "api-44-0-0.twitter.com" (len 23) to buffer. next_str_pos is 14408
[2022-09-25 13:05:49.085 35892M] Adding "outlook.office365.com" (len 22) to buffer. next_str_pos is 14431
[2022-09-25 13:05:49.215 35892M] Adding "www.mastercard.com" (len 19) to buffer. next_str_pos is 14453
[2022-09-25 13:05:49.274 35892M] Adding "media.discordapp.net" (len 21) to buffer. next_str_pos is 14472
[2022-09-25 13:05:49.333 35892M] Adding "jsb16-normal-useast1a.tiktokv.com" (len 34) to buffer. next_str_pos is 14493
[2022-09-25 13:05:49.489 35892M] Adding "caps.twitter.com" (len 17) to buffer. next_str_pos is 14527
[2022-09-25 13:05:49.607 35892M] Adding "s.twitter.com" (len 14) to buffer. next_str_pos is 14544
[2022-09-25 13:05:49.667 35892M] Adding "lb._dns-sd._udp.lan" (len 20) to buffer. next_str_pos is 14558
[2022-09-25 13:05:49.830 35892M] Adding "www.eluniversal.com.mx" (len 23) to buffer. next_str_pos is 14578
[2022-09-25 13:05:50.316 35892M] Adding "consumer.huawei.com" (len 20) to buffer. next_str_pos is 14601
[2022-09-25 13:05:50.467 35892M] Adding "174.1.168.192.in-addr.arpa" (len 27) to buffer. next_str_pos is 14621
[2022-09-25 13:05:50.468 35892M] Adding "192.168.1.174" (len 14) to buffer. next_str_pos is 14648
[2022-09-25 13:05:50.530 35892M] Adding "appleid.apple.com" (len 18) to buffer. next_str_pos is 14662
[2022-09-25 13:05:50.591 35892M] Adding "1-courier.sandbox.push.apple.com" (len 33) to buffer. next_str_pos is 14680
[2022-09-25 13:05:50.735 35892M] Adding "albert.apple.com" (len 17) to buffer. next_str_pos is 14713
[2022-09-25 13:05:51.245 35892M] Adding "albert.v.aaplimg.com" (len 21) to buffer. next_str_pos is 14730
[2022-09-25 13:05:51.475 35892M] Adding "26-courier.push.apple.com" (len 26) to buffer. next_str_pos is 14751
[2022-09-25 13:05:52.022 35892M] Adding "t.co" (len 5) to buffer. next_str_pos is 14777
[2022-09-25 13:05:52.100 35892M] Adding "www.duckdns.org" (len 16) to buffer. next_str_pos is 14782
[2022-09-25 13:05:52.347 35892M] Adding "53.1.168.192.in-addr.arpa" (len 26) to buffer. next_str_pos is 14798
[2022-09-25 13:05:52.532 35892M] Adding "51.1.168.192.in-addr.arpa" (len 26) to buffer. next_str_pos is 14824
[2022-09-25 13:05:52.656 35892M] Adding "55.1.168.192.in-addr.arpa" (len 26) to buffer. next_str_pos is 14850
[2022-09-25 13:05:52.782 35892M] Adding "54.1.168.192.in-addr.arpa" (len 26) to buffer. next_str_pos is 14876
[2022-09-25 13:05:52.990 35892M] Adding "weather-data.apple.com.akadns.net" (len 34) to buffer. next_str_pos is 14902
[2022-09-25 13:05:53.161 35892M] Adding "50.1.168.192.in-addr.arpa" (len 26) to buffer. next_str_pos is 14936
[2022-09-25 13:05:53.343 35892M] Adding "59.1.168.192.in-addr.arpa" (len 26) to buffer. next_str_pos is 14962
[2022-09-25 13:05:53.467 35892M] Adding "142.1.168.192.in-addr.arpa" (len 27) to buffer. next_str_pos is 14988
[2022-09-25 13:05:53.685 35892M] Adding "66.1.168.192.in-addr.arpa" (len 26) to buffer. next_str_pos is 15015
[2022-09-25 13:05:53.874 35892M] Adding "67.1.168.192.in-addr.arpa" (len 26) to buffer. next_str_pos is 15041
[2022-09-25 13:05:53.998 35892M] Adding "61.1.168.192.in-addr.arpa" (len 26) to buffer. next_str_pos is 15067
[2022-09-25 13:05:54.064 35892M] Adding "3.110.92.10.in-addr.arpa" (len 25) to buffer. next_str_pos is 15093
[2022-09-25 13:05:54.189 35892M] Adding "254.1.168.192.in-addr.arpa" (len 27) to buffer. next_str_pos is 15118
[2022-09-25 13:05:54.322 35892M] Adding "70.1.168.192.in-addr.arpa" (len 26) to buffer. next_str_pos is 15145
[2022-09-25 13:05:54.323 35892M] Adding "192.168.1.70" (len 13) to buffer. next_str_pos is 15171
[2022-09-25 13:05:54.389 35892M] Adding "winatp-gw-cane.microsoft.com" (len 29) to buffer. next_str_pos is 15184
[2022-09-25 13:05:54.498 35892M] Adding "api.apple-cloudkit.com" (len 23) to buffer. next_str_pos is 15213
[2022-09-25 13:05:54.686 35892M] Adding "i.manage-beta.microsoft.com" (len 28) to buffer. next_str_pos is 15236
[2022-09-25 13:05:54.749 35892M] Adding "in.appcenter.ms" (len 16) to buffer. next_str_pos is 15264
[2022-09-25 13:05:54.870 35892M] Adding "192.168.1.109" (len 14) to buffer. next_str_pos is 15280
[2022-09-25 13:05:55.048 35892M] Adding "self.events.data.microsoft.com" (len 31) to buffer. next_str_pos is 15294
[2022-09-25 13:05:56.686 35892M] Adding "manage.microsoft.com" (len 21) to buffer. next_str_pos is 15325
[2022-09-25 13:05:56.003 35892M] Adding "unitedstates.cp.wd.microsoft.com" (len 33) to buffer. next_str_pos is 15346
[2022-09-25 13:05:57.361 35892M] Adding "20-courier.push.apple.com" (len 26) to buffer. next_str_pos is 15379
[2022-09-25 13:05:57.000 35892M] Adding "humb.apple.com" (len 15) to buffer. next_str_pos is 15405
[2022-09-25 13:05:58.298 35892M] Adding "in1-gw2-01-ce7dd027.eastus2.cloudapp.azure.com" (len 47) to buffer. next_str_pos is 15420
[2022-09-25 13:05:58.363 35892M] Adding "pexsucpna02.eastus.cloudapp.azure.com" (len 38) to buffer. next_str_pos is 15467
[2022-09-25 13:05:58.429 35892M] Adding "onedscolprdcus06.centralus.cloudapp.azure.com" (len 46) to buffer. next_str_pos is 15505
[2022-09-25 13:05:58.518 35892M] Adding "manage.microsoft.us" (len 20) to buffer. next_str_pos is 15551
[2022-09-25 13:06:07.142 35892M] Adding "ctipxsucpna02.eastus2.cloudapp.azure.com" (len 41) to buffer. next_str_pos is 15571
[2022-09-25 13:06:07.233 35892M] Adding "go.microsoft.com" (len 17) to buffer. next_str_pos is 15612
[2022-09-25 13:06:07.589 35892M] Adding "init-p01md.apple.com" (len 21) to buffer. next_str_pos is 15629
[2022-09-25 13:06:07.803 35892M] Adding "local" (len 6) to buffer. next_str_pos is 15650
[2022-09-25 13:06:07.869 35892M] Adding "us-v20.events.data.microsoft.com" (len 33) to buffer. next_str_pos is 15656
[2022-09-25 13:06:07.999 35892M] Adding "fxpxsucpna02.usgovtexas.cloudapp.usgovcloudapi.net" (len 51) to buffer. next_str_pos is 15689
[2022-09-25 13:06:08.131 35892M] Adding "unitedstates.x.cp.wd.microsoft.com" (len 35) to buffer. next_str_pos is 15740
[2022-09-25 13:06:08.196 35892M] Adding "manage-beta.microsoft.com" (len 26) to buffer. next_str_pos is 15775
[2022-09-25 13:06:08.365 35892M] Adding "fef.bmsua01.manage-beta.microsoft.com" (len 38) to buffer. next_str_pos is 15801
[2022-09-25 13:06:08.496 35892M] Adding "p106-fmfmobile.icloud.com" (len 26) to buffer. next_str_pos is 15839
[2022-09-25 13:06:08.628 35892M] Adding "www.microsoft.com" (len 18) to buffer. next_str_pos is 15865
[2022-09-25 13:06:08.755 35892M] Adding "b._dns-sd._udp.0.1.168.192.in-addr.arpa" (len 40) to buffer. next_str_pos is 15883
[2022-09-25 13:06:08.821 35892M] Adding "db._dns-sd._udp.0.1.168.192.in-addr.arpa" (len 41) to buffer. next_str_pos is 15923
[2022-09-25 13:06:08.888 35892M] Adding "b._dns-sd._udp.lan" (len 19) to buffer. next_str_pos is 15964
[2022-09-25 13:06:08.954 35892M] Adding "db._dns-sd._udp.lan" (len 20) to buffer. next_str_pos is 15983
[2022-09-25 13:06:09.099 35892M] Adding "bmsua01sfrp.centralus.cloudapp.azure.com" (len 41) to buffer. next_str_pos is 16003
[2022-09-25 13:06:09.318 35892M] Adding "p106-acsegateway.icloud.com" (len 28) to buffer. next_str_pos is 16044
[2022-09-25 13:06:09.730 35892M] Adding "api.apple-cloudkit.fe.apple-dns.net" (len 36) to buffer. next_str_pos is 16072
[2022-09-25 13:06:10.191 35892M] Adding "edge-116.usdal2.icloud-content.com" (len 35) to buffer. next_str_pos is 16108
[2022-09-25 13:06:10.324 35892M] Adding "assets.airbuddy.app" (len 20) to buffer. next_str_pos is 16143
[2022-09-25 13:06:10.458 35892M] Adding "appfeedback.rambo.codes" (len 24) to buffer. next_str_pos is 16163
[2022-09-25 13:06:10.592 35892M] Adding "v3.paddleapi.com" (len 17) to buffer. next_str_pos is 16187
[2022-09-25 13:06:10.725 35892M] Adding "apphousekitchen.com" (len 20) to buffer. next_str_pos is 16204
[2022-09-25 13:06:10.859 35892M] Adding "edge-116.usdal2.ce.apple-dns.net" (len 33) to buffer. next_str_pos is 16224
[2022-09-25 13:06:10.926 35892M] Adding "officeci-mauservice.azurewebsites.net" (len 38) to buffer. next_str_pos is 16257
[2022-09-25 13:06:11.062 35892M] Adding "waws-prod-bay-045a.cloudapp.net" (len 32) to buffer. next_str_pos is 16295
[2022-09-25 13:06:11.130 35892M] Adding "r3.o.lencr.org" (len 15) to buffer. next_str_pos is 16327
[2022-09-25 13:06:11.264 35892M] Adding "a1887.dscq.akamai.net" (len 22) to buffer. next_str_pos is 16342
[2022-09-25 13:06:11.463 35892M] Adding "g.live.com" (len 11) to buffer. next_str_pos is 16364
[2022-09-25 13:06:11.617 35892M] Adding "officecdnmac.microsoft.com" (len 27) to buffer. next_str_pos is 16375
[2022-09-25 13:06:11.752 35892M] Adding "g-msn-com-nsatc.trafficmanager.net" (len 35) to buffer. next_str_pos is 16402
[2022-09-25 13:06:11.820 35892M] Adding "a1779.dscd.akamai.net" (len 22) to buffer. next_str_pos is 16437
[2022-09-25 13:06:11.953 35892M] Adding "oneclient.sfx.ms" (len 17) to buffer. next_str_pos is 16459
[2022-09-25 13:06:12.089 35892M] Adding "apple-finance.query.yahoo.com" (len 30) to buffer. next_str_pos is 16476
[2022-09-25 13:06:12.311 35892M] Adding "geo-applefinance-cache.internal.query.g03.yahoodns.net" (len 55) to buffer. next_str_pos is 16506
[2022-09-25 13:06:12.514 35892M] Adding "config.teams.microsoft.com" (len 27) to buffer. next_str_pos is 16561
[2022-09-25 13:06:12.582 35892M] Adding "s-0005-teams.config.skype.com" (len 30) to buffer. next_str_pos is 16588
[2022-09-25 13:06:12.850 35892M] Adding "e9659.dspg.akamaiedge.net" (len 26) to buffer. next_str_pos is 16618
[2022-09-25 13:06:13.174 35892M] Adding "definitionupdates.microsoft.com" (len 32) to buffer. next_str_pos is 16644
[2022-09-25 13:06:13.246 35892M] Adding "msftvpn-alt.ras.microsoft.com" (len 30) to buffer. next_str_pos is 16676
[2022-09-25 13:06:13.316 35892M] Adding "swscan.apple.com" (len 17) to buffer. next_str_pos is 16706
[2022-09-25 13:06:13.455 35892M] Adding "ipv4-msftvpn-alt.trafficmanager.net" (len 36) to buffer. next_str_pos is 16723
[2022-09-25 13:06:13.601 35892M] Adding "e5977.dsce9.akamaiedge.net" (len 27) to buffer. next_str_pos is 16759
[2022-09-25 13:06:13.755 35892M] Adding "www.tm.ak.prd.aadg.akadns.net" (len 30) to buffer. next_str_pos is 16786
[2022-09-25 13:06:13.825 35892M] Adding "wd-prod-cp-us-west-1-fe.westus.cloudapp.azure.com" (len 50) to buffer. next_str_pos is 16816
[2022-09-25 13:06:13.894 35892M] Adding "147.241.248.17.in-addr.arpa" (len 28) to buffer. next_str_pos is 16866
[2022-09-25 13:06:13.963 35892M] Adding "onedscolprdcus03.centralus.cloudapp.azure.com" (len 46) to buffer. next_str_pos is 16894
[2022-09-25 13:06:14.068 35892M] Adding "bristow.msftvpn-alt.ras.microsoft.com" (len 38) to buffer. next_str_pos is 16940
[2022-09-25 13:06:14.138 35892M] Adding "229.0.252.10.in-addr.arpa" (len 26) to buffer. next_str_pos is 16978
[2022-09-25 13:06:14.207 35892M] Adding "cheyenne.msftvpn-alt.ras.microsoft.com" (len 39) to buffer. next_str_pos is 17004
[2022-09-25 13:06:14.277 35892M] Adding "hyderabad.msftvpn-alt.ras.microsoft.com" (len 40) to buffer. next_str_pos is 17043
[2022-09-25 13:06:14.347 35892M] Adding "dublin.msftvpn-alt.ras.microsoft.com" (len 37) to buffer. next_str_pos is 17083
[2022-09-25 13:06:14.417 35892M] Adding "bay.msftvpn-alt.ras.microsoft.com" (len 34) to buffer. next_str_pos is 17120
[2022-09-25 13:06:14.487 35892M] Adding "redmond.msftvpn-alt.ras.microsoft.com" (len 38) to buffer. next_str_pos is 17154
[2022-09-25 13:06:14.557 35892M] Adding "irving.msftvpn-alt.ras.microsoft.com" (len 37) to buffer. next_str_pos is 17192
[2022-09-25 13:06:14.627 35892M] Adding "singapore.msftvpn-alt.ras.microsoft.com" (len 40) to buffer. next_str_pos is 17229
[2022-09-25 13:06:14.698 35892M] Adding "sydney.msftvpn-alt.ras.microsoft.com" (len 37) to buffer. next_str_pos is 17269
[2022-09-25 13:06:14.768 35892M] Adding "munich.msftvpn-alt.ras.microsoft.com" (len 37) to buffer. next_str_pos is 17306
[2022-09-25 13:06:14.838 35892M] Adding "tokyo.msftvpn-alt.ras.microsoft.com" (len 36) to buffer. next_str_pos is 17343
[2022-09-25 13:06:14.909 35892M] Adding "saopaulo.msftvpn-alt.ras.microsoft.com" (len 39) to buffer. next_str_pos is 17379
[2022-09-25 13:06:14.980 35892M] Adding "herzelia.msftvpn-alt.ras.microsoft.com" (len 39) to buffer. next_str_pos is 17418
[2022-09-25 13:06:15.051 35892M] Adding "london.msftvpn-alt.ras.microsoft.com" (len 37) to buffer. next_str_pos is 17457
[2022-09-25 13:06:15.485 35892M] Adding "p30-content.icloud.com" (len 23) to buffer. next_str_pos is 17494
[2022-09-25 13:06:15.771 35892M] Adding "p67-content.icloud.com" (len 23) to buffer. next_str_pos is 17517
[2022-09-25 13:06:15.948 35892M] Adding "p47-content.icloud.com" (len 23) to buffer. next_str_pos is 17540
[2022-09-25 13:06:16.225 35892M] Adding "clientconfig.akamai.steamstatic.com" (len 36) to buffer. next_str_pos is 17563
[2022-09-25 13:06:16.626 35892M] Adding "push.apple.com" (len 15) to buffer. next_str_pos is 17599
[2022-09-25 13:06:16.992 35892M] Adding "21-courier.push.apple.com" (len 26) to buffer. next_str_pos is 17614
[2022-09-25 13:06:19.173 35892M] Adding "speedtracer.apple.com" (len 22) to buffer. next_str_pos is 17640
[2022-09-25 13:06:19.572 35892M] Adding "valid.apple.com" (len 16) to buffer. next_str_pos is 17662
[2022-09-25 13:06:19.783 35892M] Adding "pds.ess.apple.com" (len 18) to buffer. next_str_pos is 17678
[2022-09-25 13:06:19.926 35892M] Adding "aidc.apple.com" (len 15) to buffer. next_str_pos is 17696
[2022-09-25 13:06:20.070 35892M] Adding "pds-prod.v.aaplimg.com" (len 23) to buffer. next_str_pos is 17711
[2022-09-25 13:06:20.142 35892M] Adding "aidc.origin-apple.com.akadns.net" (len 33) to buffer. next_str_pos is 17734
[2022-09-25 13:06:20.499 35892M] Adding "onedscolprdcus01.centralus.cloudapp.azure.com" (len 46) to buffer. next_str_pos is 17767
[2022-09-25 13:06:20.586 35892M] Adding "gspe21-ssl.ls.apple.com" (len 24) to buffer. next_str_pos is 17813
[2022-09-25 13:06:21.919 35892M] Adding "valid-apple.g.aaplimg.com" (len 26) to buffer. next_str_pos is 17837
[2022-09-25 13:06:22.660 35892M] Adding "smp-device-content.apple.com" (len 29) to buffer. next_str_pos is 17863
[2022-09-25 13:06:22.806 35892M] Adding "smp-device-content.g.aaplimg.com" (len 33) to buffer. next_str_pos is 17892
[2022-09-25 13:06:22.901 35892M] Adding "nc-pod5-smp-device.apple.com" (len 29) to buffer. next_str_pos is 17925
[2022-09-25 13:06:23.045 35892M] Adding "nc-pod5-smp-device.gcsis-apple.com.akadns.net" (len 46) to buffer. next_str_pos is 17954
[2022-09-25 13:06:23.518 35892M] Adding "init-p01st.push.apple.com" (len 26) to buffer. next_str_pos is 18000
[2022-09-25 13:06:24.151 35892M] Adding "p56-content.icloud.com" (len 23) to buffer. next_str_pos is 18026
[2022-09-25 13:06:24.678 35892M] Adding "p43-content.icloud.com" (len 23) to buffer. next_str_pos is 18049
[2022-09-25 13:06:24.822 35892M] Adding "p53-content.icloud.com" (len 23) to buffer. next_str_pos is 18072
[2022-09-25 13:06:25.256 35892M] Adding "p66-content.icloud.com" (len 23) to buffer. next_str_pos is 18095
[2022-09-25 13:06:25.401 35892M] Adding "gsp10-ssl.apple.com" (len 20) to buffer. next_str_pos is 18118
[2022-09-25 13:06:25.660 35892M] Adding "gsp10-ssl.ls-apple.com.akadns.net" (len 34) to buffer. next_str_pos is 18138
[2022-09-25 13:06:25.880 35892M] Adding "p58-content.icloud.com" (len 23) to buffer. next_str_pos is 18172
[2022-09-25 13:06:26.102 35892M] Adding "p26-content.icloud.com" (len 23) to buffer. next_str_pos is 18195
[2022-09-25 13:06:26.248 35892M] Adding "p68-content.icloud.com" (len 23) to buffer. next_str_pos is 18218
[2022-09-25 13:06:26.397 35892M] Adding "p72-content.icloud.com" (len 23) to buffer. next_str_pos is 18241
[2022-09-25 13:06:28.445 35892M] Adding "p34-content.icloud.com" (len 23) to buffer. next_str_pos is 18264
[2022-09-25 13:06:28.740 35892M] Adding "p32-content.icloud.com" (len 23) to buffer. next_str_pos is 18287
[2022-09-25 13:06:29.605 35892M] Adding "p50-content.icloud.com" (len 23) to buffer. next_str_pos is 18310
[2022-09-25 13:06:38.285 35892M] Adding "p64-content.icloud.com" (len 23) to buffer. next_str_pos is 18333
[2022-09-25 13:06:40.025 35892M] Adding "p54-content.icloud.com" (len 23) to buffer. next_str_pos is 18356
[2022-09-25 13:06:41.203 35892M] Adding "p28-content.icloud.com" (len 23) to buffer. next_str_pos is 18379
[2022-09-25 13:06:41.353 35892M] Adding "p60-content.icloud.com" (len 23) to buffer. next_str_pos is 18402
[2022-09-25 13:06:41.646 35892M] Adding "p48-content.icloud.com" (len 23) to buffer. next_str_pos is 18425
[2022-09-25 13:06:42.091 35892M] Adding "p44-content.icloud.com" (len 23) to buffer. next_str_pos is 18448
[2022-09-25 13:06:43.607 35892M] Adding "smartscreen-prod.microsoft.com" (len 31) to buffer. next_str_pos is 18471
[2022-09-25 13:06:44.078 35892M] Adding "p62-content.icloud.com" (len 23) to buffer. next_str_pos is 18502
[2022-09-25 13:06:44.223 35892M] Adding "p40-content.icloud.com" (len 23) to buffer. next_str_pos is 18525
[2022-09-25 13:06:44.636 35892M] Adding "p24-content.icloud.com" (len 23) to buffer. next_str_pos is 18548
[2022-09-25 13:06:44.002 35892M] Adding "p52-content.icloud.com" (len 23) to buffer. next_str_pos is 18571
[2022-09-25 13:06:45.442 35892M] Adding "p42-content.icloud.com" (len 23) to buffer. next_str_pos is 18594
[2022-09-25 13:06:45.601 35892M] Adding "auth.smtp.1and1.co.uk" (len 22) to buffer. next_str_pos is 18617
[2022-09-25 13:06:45.836 35892M] Adding "steamcommunity-a.akamaihd.net" (len 30) to buffer. next_str_pos is 18639
[2022-09-25 13:06:45.983 35892M] Adding "adservice.google.com" (len 21) to buffer. next_str_pos is 18669
[2022-09-25 13:06:46.058 35892M] Adding "encrypted-tbn0.gstatic.com" (len 27) to buffer. next_str_pos is 18690
[2022-09-25 13:06:46.650 35892M] Adding "play.google.com" (len 16) to buffer. next_str_pos is 18717
[2022-09-25 13:06:47.969 35892M] Adding "p46-content.icloud.com" (len 23) to buffer. next_str_pos is 18733
[2022-09-25 13:06:51.616 35892M] Adding "www.gstatic.com" (len 16) to buffer. next_str_pos is 18756
[2022-09-25 13:06:53.404 35892M] Adding "bookkeeper.itunes.apple.com" (len 28) to buffer. next_str_pos is 18772
[2022-09-25 13:06:53.820 35892M] Adding "firebase-settings.crashlytics.com" (len 34) to buffer. next_str_pos is 18800
[2022-09-25 13:06:54.076 35892M] Adding "repository-images.githubusercontent.com" (len 40) to buffer. next_str_pos is 18834
[2022-09-25 13:06:54.238 35892M] Adding "avatars.githubusercontent.com" (len 30) to buffer. next_str_pos is 18874
[2022-09-25 13:06:54.443 35892M] Adding "firebaselogging-pa.googleapis.com" (len 34) to buffer. next_str_pos is 18904
[2022-09-25 13:06:54.001 35892M] Adding "p106-quota.icloud.com" (len 22) to buffer. next_str_pos is 18938
[2022-09-25 13:06:55.234 35892M] Adding "p106-fmf.icloud.com" (len 20) to buffer. next_str_pos is 18960
[2022-09-25 13:06:55.469 35892M] Adding "p42-imap.mail.me.com.akadns.net" (len 32) to buffer. next_str_pos is 18980
[2022-09-25 13:06:55.547 35892M] Adding "p106-contacts.icloud.com" (len 25) to buffer. next_str_pos is 19012
[2022-09-25 13:06:55.826 35892M] Adding "p42-mailws.icloud.com" (len 22) to buffer. next_str_pos is 19037
[2022-09-25 13:06:55.983 35892M] Adding "mr-mailws.icloud.com.akadns.net" (len 32) to buffer. next_str_pos is 19059
[2022-09-25 13:06:56.444 35892M] Adding "lb._dns-sd._udp.15.32.10.10.in-addr.arpa" (len 41) to buffer. next_str_pos is 19091
[2022-09-25 13:06:56.551 35892M] Adding "130.184.137.17.in-addr.arpa" (len 28) to buffer. next_str_pos is 19132
[2022-09-25 13:06:57.183 35892M] Adding "cp4.cloudflare.com" (len 19) to buffer. next_str_pos is 19160
[2022-09-25 13:06:57.617 35892M] Adding "www.googletagmanager.com" (len 25) to buffer. next_str_pos is 19179
[2022-09-25 13:06:57.950 35892M] Adding "assets.a-mo.net" (len 16) to buffer. next_str_pos is 19204
[2022-09-25 13:06:58.206 35892M] Adding "www.googletagservices.com" (len 26) to buffer. next_str_pos is 19220
[2022-09-25 13:06:58.445 35892M] Adding "mediacomglobaluberdcm314152543953.s.moatpixel.com" (len 50) to buffer. next_str_pos is 19246
[2022-09-25 13:06:58.523 35892M] Adding "moatpixel1.edgekey.net" (len 23) to buffer. next_str_pos is 19296
[2022-09-25 13:06:58.914 35892M] Adding "nineto5mac-d.openx.net" (len 23) to buffer. next_str_pos is 19319
[2022-09-25 13:06:59.171 35892M] Adding "ampcid.google.com" (len 18) to buffer. next_str_pos is 19342
[2022-09-25 13:06:59.643 35892M] Adding "pagead2.googlesyndication.com" (len 30) to buffer. next_str_pos is 19360
[2022-09-25 13:06:59.879 35892M] Adding "ampcid.google.com.mx" (len 21) to buffer. next_str_pos is 19390
[2022-09-25 13:07:06.833 35892M] Adding "btloader.com" (len 13) to buffer. next_str_pos is 19411
[2022-09-25 13:07:07.092 35892M] Adding "cdn.parsely.com" (len 16) to buffer. next_str_pos is 19424
[2022-09-25 13:07:07.331 35892M] Adding "ad-delivery.net" (len 16) to buffer. next_str_pos is 19440
[2022-09-25 13:07:07.570 35892M] Adding "cdn.viglink.com" (len 16) to buffer. next_str_pos is 19456
[2022-09-25 13:07:07.826 35892M] Adding "sb.scorecardresearch.com" (len 25) to buffer. next_str_pos is 19472
[2022-09-25 13:07:09.681 35892M] Adding "bid.g.doubleclick.net" (len 22) to buffer. next_str_pos is 19497
[2022-09-25 13:07:09.920 35892M] Adding "pxl.qccerttest.com" (len 19) to buffer. next_str_pos is 19519
[2022-09-25 13:07:10.173 35892M] Adding "signal-beacon.s-onetag.com" (len 27) to buffer. next_str_pos is 19538
[2022-09-25 13:07:10.441 35892M] Adding "ad.doubleclick.net" (len 19) to buffer. next_str_pos is 19565
[2022-09-25 13:07:10.695 35892M] Adding "rules.quantcount.com" (len 21) to buffer. next_str_pos is 19584
[2022-09-25 13:07:10.935 35892M] Adding "tpc.googlesyndication.com" (len 26) to buffer. next_str_pos is 19605
[2022-09-25 13:07:11.300 35892M] Adding "c.bannerflow.net" (len 17) to buffer. next_str_pos is 19631
[2022-09-25 13:07:11.660 35892M] Adding "www.google.com.mx" (len 18) to buffer. next_str_pos is 19648
[2022-09-25 13:07:11.942 35892M] Adding "cdn.branch.io" (len 14) to buffer. next_str_pos is 19666
[2022-09-25 13:07:12.185 35892M] Adding "github.githubassets.com" (len 24) to buffer. next_str_pos is 19680
[2022-09-25 13:07:12.425 35892M] Adding "adservice.google.com.mx" (len 24) to buffer. next_str_pos is 19704
[2022-09-25 13:07:12.506 35892M] Adding "pagead46.l.doubleclick.net" (len 27) to buffer. next_str_pos is 19728
[2022-09-25 13:07:12.916 35892M] Adding "c.amazon-adsystem.com" (len 22) to buffer. next_str_pos is 19755
[2022-09-25 13:07:13.161 35892M] Adding "px.moatads.com" (len 15) to buffer. next_str_pos is 19777
[2022-09-25 13:07:13.402 35892M] Adding "signal-segments.s-onetag.com" (len 29) to buffer. next_str_pos is 19792
[2022-09-25 13:07:13.644 35892M] Adding "38ec6660bc6b4efe9d1668b8b66b9992.safeframe.googlesyndication.com" (len 65) to buffer. next_str_pos is 19821
[2022-09-25 13:07:13.725 35892M] Adding "pagead-googlehosted.l.google.com" (len 33) to buffer. next_str_pos is 19886
[2022-09-25 13:07:14.270 35892M] Adding "d3v20vel0io03z.cloudfront.net" (len 30) to buffer. next_str_pos is 19919
[2022-09-25 13:07:14.513 35892M] Adding "partner.googleadservices.com" (len 29) to buffer. next_str_pos is 19949
[2022-09-25 13:07:14.756 35892M] Adding "stats.g.doubleclick.net" (len 24) to buffer. next_str_pos is 19978
[2022-09-25 13:07:14.999 35892M] Adding "gcdn.2mdn.net" (len 14) to buffer. next_str_pos is 20002
[2022-09-25 13:07:15.255 35892M] Adding "get.s-onetag.com" (len 17) to buffer. next_str_pos is 20016
[2022-09-25 13:07:15.501 35892M] Adding "aax-dtb-cf.amazon-adsystem.com" (len 31) to buffer. next_str_pos is 20033
[2022-09-25 13:07:15.746 35892M] Adding "cdn.sprig.com" (len 14) to buffer. next_str_pos is 20064
[2022-09-25 13:07:15.991 35892M] Adding "googleads4.g.doubleclick.net" (len 29) to buffer. next_str_pos is 20078
[2022-09-25 13:07:16.236 35892M] Adding "cdn.ampproject.org" (len 19) to buffer. next_str_pos is 20107
[2022-09-25 13:07:16.494 35892M] Adding "onetag-geo.s-onetag.com" (len 24) to buffer. next_str_pos is 20126
[2022-09-25 13:07:16.741 35892M] Adding "cdn.9to5terminal.com" (len 21) to buffer. next_str_pos is 20150
[2022-09-25 13:07:16.988 35892M] Adding "c.disquscdn.com" (len 16) to buffer. next_str_pos is 20171
[2022-09-25 13:07:17.237 35892M] Adding "api2.branch.io" (len 15) to buffer. next_str_pos is 20187
[2022-09-25 13:07:17.488 35892M] Adding "securepubads.g.doubleclick.net" (len 31) to buffer. next_str_pos is 20202
[2022-09-25 13:07:17.770 35892M] Adding "fundingchoicesmessages.google.com" (len 34) to buffer. next_str_pos is 20233
[2022-09-25 13:07:18.042 35892M] Adding "s0.2mdn.net" (len 12) to buffer. next_str_pos is 20267
[2022-09-25 13:07:18.296 35892M] Adding "api.btloader.com" (len 17) to buffer. next_str_pos is 20279
[2022-09-25 13:07:18.543 35892M] Adding "fonts.googleapis.com" (len 21) to buffer. next_str_pos is 20296
[2022-09-25 13:07:18.792 35892M] Adding "9to5mac-com.videoplayerhub.com" (len 31) to buffer. next_str_pos is 20317
[2022-09-25 13:07:19.268 35892M] Adding "www3.l.google.com" (len 18) to buffer. next_str_pos is 20348
[2022-09-25 13:07:19.357 35892M] Adding "cdn-content.ampproject.org" (len 27) to buffer. next_str_pos is 20366
[2022-09-25 13:07:19.442 35892M] Adding "imap.mail.me.com.akadns.net" (len 28) to buffer. next_str_pos is 20393
[2022-09-25 13:07:19.537 35892M] Adding "d231vab146qzfb.cloudfront.net" (len 30) to buffer. next_str_pos is 20421
[2022-09-25 13:07:19.621 35892M] Adding "us-sandbox-courier-4.push-apple.com.akadns.net" (len 47) to buffer. next_str_pos is 20451
[2022-09-25 13:07:19.709 35892M] Adding "d1jvc9b8z3vcjs.cloudfront.net" (len 30) to buffer. next_str_pos is 20498
[2022-09-25 13:07:19.793 35892M] Adding "24.172.7.96.in-addr.arpa" (len 25) to buffer. next_str_pos is 20528
[2022-09-25 13:07:19.962 35892M] Adding "7.206.248.17.in-addr.arpa" (len 26) to buffer. next_str_pos is 20553
[2022-09-25 13:07:20.377 35892M] Adding "136.189.248.17.in-addr.arpa" (len 28) to buffer. next_str_pos is 20579
[2022-09-25 13:07:20.618 35892M] Adding "wdatp-prd-cane-3.eastus2.cloudapp.azure.com" (len 44) to buffer. next_str_pos is 20607
[2022-09-25 13:07:20.706 35892M] Adding "fast.com" (len 9) to buffer. next_str_pos is 20651
[2022-09-25 13:07:20.882 35892M] Adding "hacker-news.firebaseio.com" (len 27) to buffer. next_str_pos is 20660
[2022-09-25 13:07:21.052 35892M] Adding "feeds.macrumors.com" (len 20) to buffer. next_str_pos is 20687
[2022-09-25 13:07:21.225 35892M] Adding "ipinfo.io" (len 10) to buffer. next_str_pos is 20707
[2022-09-25 13:07:21.396 35892M] Adding "suconfig.apple.com" (len 19) to buffer. next_str_pos is 20717
[2022-09-25 13:07:21.666 35892M] Adding "a803.g4.akamai.net" (len 19) to buffer. next_str_pos is 20736
[2022-09-25 13:07:21.848 35892M] Adding "66.206.248.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 20755
[2022-09-25 13:07:22.117 35892M] Adding "fs.microsoft.com" (len 17) to buffer. next_str_pos is 20782
[2022-09-25 13:07:22.380 35892M] Adding "154.141.79.40.in-addr.arpa" (len 27) to buffer. next_str_pos is 20799
[2022-09-25 13:07:22.766 35892M] Adding "p1.parsely.com" (len 15) to buffer. next_str_pos is 20826
[2022-09-25 13:07:29.587 35892M] Adding "204.31.253.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 20841
[2022-09-25 13:07:29.793 37324M] Using log file /var/log/pihole/FTL.log
[2022-09-25 13:07:29.793 37324M] ########## FTL started on raspberrypi! ##########
[2022-09-25 13:07:29.793 37324M] FTL branch: fix/shm_crash
[2022-09-25 13:07:29.793 37324M] FTL version: vDev-28153b1
[2022-09-25 13:07:29.793 37324M] FTL commit: 28153b1
[2022-09-25 13:07:29.794 37324M] FTL date: 2022-09-25 10:14:48 +0200
[2022-09-25 13:07:29.794 37324M] FTL user: pihole
[2022-09-25 13:07:29.794 37324M] Compiled for aarch64 (compiled on CI) using aarch64-linux-gnu-gcc (Debian 8.3.0-2) 8.3.0
[2022-09-25 13:07:29.794 37324M] Creating mutex
[2022-09-25 13:07:29.794 37324M] Creating mutex
[2022-09-25 13:07:29.795 37324M] Starting config file parsing (/etc/pihole/pihole-FTL.conf)
[2022-09-25 13:07:29.795 37324M] SOCKET_LISTENING: only local
[2022-09-25 13:07:29.795 37324M] AAAA_QUERY_ANALYSIS: Show AAAA queries
[2022-09-25 13:07:29.795 37324M] MAXDBDAYS: max age for stored queries is 365 days
[2022-09-25 13:07:29.795 37324M] RESOLVE_IPV6: Resolve IPv6 addresses
[2022-09-25 13:07:29.795 37324M] RESOLVE_IPV4: Resolve IPv4 addresses
[2022-09-25 13:07:29.795 37324M] DBINTERVAL: saving to DB file every minute
[2022-09-25 13:07:29.795 37324M] DBFILE: Using /etc/pihole/pihole-FTL.db
[2022-09-25 13:07:29.795 37324M] MAXLOGAGE: Importing up to 24.0 hours of log data
[2022-09-25 13:07:29.795 37324M] PRIVACYLEVEL: Set to 0
[2022-09-25 13:07:29.795 37324M] IGNORE_LOCALHOST: Show queries from localhost
[2022-09-25 13:07:29.795 37324M] BLOCKINGMODE: Null IPs for blocked domains
[2022-09-25 13:07:29.795 37324M] ANALYZE_ONLY_A_AND_AAAA: Disabled. Analyzing all queries
[2022-09-25 13:07:29.795 37324M] DBIMPORT: Importing history from database
[2022-09-25 13:07:29.795 37324M] PIDFILE: Using /run/pihole-FTL.pid
[2022-09-25 13:07:29.795 37324M] SOCKETFILE: Using /run/pihole/FTL.sock
[2022-09-25 13:07:29.795 37324M] SETUPVARSFILE: Using /etc/pihole/setupVars.conf
[2022-09-25 13:07:29.795 37324M] MACVENDORDB: Using /etc/pihole/macvendor.db
[2022-09-25 13:07:29.796 37324M] GRAVITYDB: Using /etc/pihole/gravity.db
[2022-09-25 13:07:29.796 37324M] PARSE_ARP_CACHE: Active
[2022-09-25 13:07:29.796 37324M] CNAME_DEEP_INSPECT: Active
[2022-09-25 13:07:29.796 37324M] DELAY_STARTUP: No delay requested.
[2022-09-25 13:07:29.796 37324M] BLOCK_ESNI: Enabled, blocking _esni.{blocked domain}
[2022-09-25 13:07:29.796 37324M] NICE: Set process niceness to -10 (default)
[2022-09-25 13:07:29.796 37324M] MAXNETAGE: Removing IP addresses and host names from network table after 365 days
[2022-09-25 13:07:29.796 37324M] NAMES_FROM_NETDB: Enabled, trying to get names from network database
[2022-09-25 13:07:29.796 37324M] EDNS0_ECS: Overwrite client from ECS information
[2022-09-25 13:07:29.796 37324M] REFRESH_HOSTNAMES: Periodically refreshing IPv4 names
[2022-09-25 13:07:29.796 37324M] RATE_LIMIT: Rate-limiting client making more than 1000 queries in 60 seconds
[2022-09-25 13:07:29.796 37324M] LOCAL_IPV4: Automatic interface-dependent detection of address
[2022-09-25 13:07:29.796 37324M] LOCAL_IPV6: Automatic interface-dependent detection of address
[2022-09-25 13:07:29.796 37324M] BLOCK_IPV4: Automatic interface-dependent detection of address
[2022-09-25 13:07:29.796 37324M] BLOCK_IPV6: Automatic interface-dependent detection of address
[2022-09-25 13:07:29.796 37324M] SHOW_DNSSEC: Enabled, showing automatically generated DNSSEC queries
[2022-09-25 13:07:29.796 37324M] MOZILLA_CANARY: Enabled
[2022-09-25 13:07:29.796 37324M] PIHOLE_PTR: internal PTR generation enabled (pi.hole)
[2022-09-25 13:07:29.796 37324M] ADDR2LINE: Enabled
[2022-09-25 13:07:29.796 37324M] REPLY_WHEN_BUSY: Drop queries when the database is busy
[2022-09-25 13:07:29.797 37324M] BLOCK_TTL: 2 seconds
[2022-09-25 13:07:29.797 37324M] BLOCK_ICLOUD_PR: Enabled
[2022-09-25 13:07:29.797 37324M] CHECK_LOAD: Enabled
[2022-09-25 13:07:29.797 37324M] CHECK_SHMEM: Warning if shared-memory usage exceeds 90%
[2022-09-25 13:07:29.797 37324M] CHECK_DISK: Warning if certain disk usage exceeds 90%
[2022-09-25 13:07:29.797 37324M] Finished config file parsing
[2022-09-25 13:07:29.798 37324M] Database version is 12
[2022-09-25 13:07:29.798 37324M] Resizing "FTL-strings" from 40960 to (81920 * 1) == 81920 (/dev/shm: 1.5MB used, 4.1GB total, FTL uses 700.8KB)
[2022-09-25 13:07:29.798 37324M] Imported 0 alias-clients
[2022-09-25 13:07:29.798 37324M] Database successfully initialized
[2022-09-25 13:07:30.247 35892M] Adding "128.203.194.173.in-addr.arpa" (len 29) to buffer. next_str_pos is 20868
[2022-09-25 13:07:30.799 37324M] ERROR: SQL query "DELETE FROM message;" failed: database is locked
[2022-09-25 13:07:30.799 37324M] WARNING: Database busy in flush_message_table()!
[2022-09-25 13:07:30.801 37324M] New upstream server: 192.168.1.254:53 (0/512)
[2022-09-25 13:07:30.802 37324M] New upstream server: 127.0.0.1:5335 (1/512)
[2022-09-25 13:07:30.825 37324M] Resizing "FTL-domains" from 12288 to (1024 * 24) == 24576 (/dev/shm: 1.5MB used, 4.1GB total, FTL uses 741.7KB)
[2022-09-25 13:07:30.852 37324M] Resizing "FTL-queries" from 229376 to (8192 * 56) == 458752 (/dev/shm: 1.5MB used, 4.1GB total, FTL uses 754.0KB)
[2022-09-25 13:07:30.866 37324M] Resizing "FTL-domains" from 24576 to (1536 * 24) == 36864 (/dev/shm: 1.8MB used, 4.1GB total, FTL uses 983.4KB)
[2022-09-25 13:07:30.911 37324M] Resizing "FTL-queries" from 458752 to (12288 * 56) == 688128 (/dev/shm: 1.8MB used, 4.1GB total, FTL uses 995.7KB)
[2022-09-25 13:07:38.186 37324M] Resizing "FTL-strings" from 81920 to (122880 * 1) == 122880 (/dev/shm: 2.0MB used, 4.1GB total, FTL uses 1.2MB)
[2022-09-25 13:07:38.190 37324M] Resizing "FTL-domains" from 36864 to (2048 * 24) == 49152 (/dev/shm: 2.0MB used, 4.1GB total, FTL uses 1.3MB)
[2022-09-25 13:07:38.198 37324M] Resizing "FTL-queries" from 688128 to (16384 * 56) == 917504 (/dev/shm: 2.1MB used, 4.1GB total, FTL uses 1.3MB)
[2022-09-25 13:07:38.279 37324M] Resizing "FTL-queries" from 917504 to (20480 * 56) == 1146880 (/dev/shm: 2.3MB used, 4.1GB total, FTL uses 1.5MB)
[2022-09-25 13:07:38.353 37324M] Resizing "FTL-queries" from 1146880 to (24576 * 56) == 1376256 (/dev/shm: 2.5MB used, 4.1GB total, FTL uses 1.7MB)
[2022-09-25 13:07:38.380 37324M] Resizing "FTL-domains" from 49152 to (2560 * 24) == 61440 (/dev/shm: 2.7MB used, 4.1GB total, FTL uses 2.0MB)
[2022-09-25 13:07:38.424 37324M] Resizing "FTL-queries" from 1376256 to (28672 * 56) == 1605632 (/dev/shm: 2.8MB used, 4.1GB total, FTL uses 2.0MB)
[2022-09-25 13:07:38.430 35892M] Adding "60.206.248.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 20897
[2022-09-25 13:07:38.495 37324M] Resizing "FTL-queries" from 1605632 to (32768 * 56) == 1835008 (/dev/shm: 3.0MB used, 4.1GB total, FTL uses 2.2MB)
[2022-09-25 13:07:38.560 37324M] Resizing "FTL-domains" from 61440 to (3072 * 24) == 73728 (/dev/shm: 3.2MB used, 4.1GB total, FTL uses 2.4MB)
[2022-09-25 13:07:38.573 37324M] Resizing "FTL-queries" from 1835008 to (36864 * 56) == 2064384 (/dev/shm: 3.2MB used, 4.1GB total, FTL uses 2.4MB)
[2022-09-25 13:07:38.650 37324M] Resizing "FTL-queries" from 2064384 to (40960 * 56) == 2293760 (/dev/shm: 3.5MB used, 4.1GB total, FTL uses 2.7MB)
[2022-09-25 13:07:38.716 37324M] Resizing "FTL-queries" from 2293760 to (45056 * 56) == 2523136 (/dev/shm: 3.7MB used, 4.1GB total, FTL uses 2.9MB)
[2022-09-25 13:07:38.772 37324M] Resizing "FTL-queries" from 2523136 to (49152 * 56) == 2752512 (/dev/shm: 3.9MB used, 4.1GB total, FTL uses 3.1MB)
[2022-09-25 13:07:38.826 37324M] Resizing "FTL-domains" from 73728 to (3584 * 24) == 86016 (/dev/shm: 4.1MB used, 4.1GB total, FTL uses 3.4MB)
[2022-09-25 13:07:38.832 37324M] Resizing "FTL-queries" from 2752512 to (53248 * 56) == 2981888 (/dev/shm: 4.2MB used, 4.1GB total, FTL uses 3.4MB)
[2022-09-25 13:07:38.850 37324M] Resizing "FTL-strings" from 122880 to (163840 * 1) == 163840 (/dev/shm: 4.4MB used, 4.1GB total, FTL uses 3.6MB)
[2022-09-25 13:07:38.889 37324M] Resizing "FTL-queries" from 2981888 to (57344 * 56) == 3211264 (/dev/shm: 4.4MB used, 4.1GB total, FTL uses 3.6MB)
[2022-09-25 13:07:38.895 37324M] Imported 53761 queries from the long-term database
[2022-09-25 13:07:38.896 37324M] -> Total DNS queries: 53761
[2022-09-25 13:07:38.896 37324M] -> Cached DNS queries: 3617
[2022-09-25 13:07:38.896 37324M] -> Forwarded DNS queries: 43896
[2022-09-25 13:07:38.896 37324M] -> Blocked DNS queries: 5360
[2022-09-25 13:07:38.896 37324M] -> Unknown DNS queries: 516
[2022-09-25 13:07:38.896 37324M] -> Unique domains: 3164
[2022-09-25 13:07:38.896 37324M] -> Unique clients: 15
[2022-09-25 13:07:38.896 37324M] -> Known forward destinations: 2
[2022-09-25 13:07:38.896 37324M] Successfully accessed setupVars.conf
[2022-09-25 13:07:38.897 37324M] listening on 0.0.0.0 port 53
[2022-09-25 13:07:38.906 37324M] listening on :: port 53
[2022-09-25 13:07:38.909 37390M] PID of FTL process: 37390
[2022-09-25 13:07:38.910 37390M] Listening on port 4711 for incoming IPv4 telnet connections
[2022-09-25 13:07:38.922 37390M] Error opening IPv6 telnet socket: Address family not supported by protocol (97)
[2022-09-25 13:07:38.922 37390M] WARN: Cannot bind to IPv6 telnet socket
[2022-09-25 13:07:38.922 37390M] Listening on port 4711 for incoming socket telnet connections
[2022-09-25 13:07:38.923 37390M] INFO: FTL is running as user pihole (UID 999)
[2022-09-25 13:07:38.924 37390M] Reloading DNS cache
[2022-09-25 13:07:38.947 35892M] Adding "25.40.126.104.in-addr.arpa" (len 27) to buffer. next_str_pos is 20924
[2022-09-25 13:07:39.039 35892M] Adding "10.206.248.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 20951
[2022-09-25 13:07:39.064 37390/T37402] Compiled 0 whitelist and 108 blacklist regex filters for 15 clients in 39.0 msec
[2022-09-25 13:07:39.064 37390/T37402] Blocking status is disabled
[2022-09-25 13:07:39.350 35892M] Adding "203.31.253.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 20978
[2022-09-25 13:07:39.528 35892M] Adding "100.1.168.192.in-addr.arpa" (len 27) to buffer. next_str_pos is 21005
[2022-09-25 13:07:39.614 35892M] Adding "106.217.250.142.in-addr.arpa" (len 29) to buffer. next_str_pos is 21032
[2022-09-25 13:07:39.703 35892M] Adding "199.253.78.40.in-addr.arpa" (len 27) to buffer. next_str_pos is 21061
[2022-09-25 13:07:39.794 35892M] Adding "79.173.7.96.in-addr.arpa" (len 25) to buffer. next_str_pos is 21088
[2022-09-25 13:07:40.748 35892M] Adding "signal-metrics-collector-beta.s-onetag.com" (len 43) to buffer. next_str_pos is 21113
[2022-09-25 13:07:41.009 35892M] Adding "a1.adform.net" (len 14) to buffer. next_str_pos is 21156
[2022-09-25 13:07:41.307 35892M] Adding "116.255.30.192.in-addr.arpa" (len 28) to buffer. next_str_pos is 21170
[2022-09-25 13:07:41.495 35892M] Adding "203.253.78.40.in-addr.arpa" (len 27) to buffer. next_str_pos is 21198
[2022-09-25 13:07:42.115 35892M] Adding "4.153.159.162.in-addr.arpa" (len 27) to buffer. next_str_pos is 21225
[2022-09-25 13:07:42.612 35892M] Adding "4.152.159.162.in-addr.arpa" (len 27) to buffer. next_str_pos is 21252
[2022-09-25 13:07:42.716 35892M] Adding "us.events.data.trafficmanager.net" (len 34) to buffer. next_str_pos is 21279
[2022-09-25 13:07:42.893 35892M] Adding "onedscolprdcus09.centralus.cloudapp.azure.com" (len 46) to buffer. next_str_pos is 21313
[2022-09-25 13:07:43.069 35892M] Adding "onedscolprdwus10.westus.cloudapp.azure.com" (len 43) to buffer. next_str_pos is 21359
[2022-09-25 13:07:43.160 35892M] Adding "36.242.248.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 21402
[2022-09-25 13:07:43.283 35892M] Adding "38.242.248.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 21429
[2022-09-25 13:07:43.374 35892M] Adding "wdatpsngatewaytmcacane.trafficmanager.net" (len 42) to buffer. next_str_pos is 21456
[2022-09-25 13:07:43.639 35892M] Adding "154.108.199.185.in-addr.arpa" (len 29) to buffer. next_str_pos is 21498
[2022-09-25 13:07:43.735 35892M] Adding "112.255.30.192.in-addr.arpa" (len 28) to buffer. next_str_pos is 21527
[2022-09-25 13:07:43.841 35892M] Adding "57.219.222.173.in-addr.arpa" (len 28) to buffer. next_str_pos is 21555
[2022-09-25 13:07:43.998 35892M] Adding "16.242.248.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 21583
[2022-09-25 13:07:44.182 35892M] Adding "202.31.253.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 21610
[2022-09-25 13:07:44.270 35892M] Adding "71.206.248.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 21637
[2022-09-25 13:07:44.362 35892M] Adding "12.242.248.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 21664
[2022-09-25 13:07:44.453 35892M] Adding "226.164.96.52.in-addr.arpa" (len 27) to buffer. next_str_pos is 21691
[2022-09-25 13:07:44.547 35892M] Adding "dc.services.visualstudio.com" (len 29) to buffer. next_str_pos is 21718
[2022-09-25 13:07:44.907 35892M] Adding "142.165.226.3.in-addr.arpa" (len 27) to buffer. next_str_pos is 21747
[2022-09-25 13:07:45.360 35892M] Adding "eus016-breeziest-in.cloudapp.net" (len 33) to buffer. next_str_pos is 21774
[2022-09-25 13:07:45.545 35892M] Adding "142.93.203.116.in-addr.arpa" (len 28) to buffer. next_str_pos is 21807
[2022-09-25 13:07:45.637 35892M] Adding "copilot-proxy.githubusercontent.com" (len 36) to buffer. next_str_pos is 21835
[2022-09-25 13:07:45.820 35892M] Adding "copilot-proxy.trafficmanager.net" (len 33) to buffer. next_str_pos is 21871
[2022-09-25 13:07:45.911 35892M] Adding "252.15.104.51.in-addr.arpa" (len 27) to buffer. next_str_pos is 21904
[2022-09-25 13:07:46.060 35892M] Adding "8.242.248.17.in-addr.arpa" (len 26) to buffer. next_str_pos is 21931
[2022-09-25 13:07:46.152 35892M] Adding "api.steampowered.com" (len 21) to buffer. next_str_pos is 21957
[2022-09-25 13:07:47.401 35892M] Adding "2.206.248.17.in-addr.arpa" (len 26) to buffer. next_str_pos is 21978
[2022-09-25 13:07:49.298 35892M] Adding "clients1.google.com" (len 20) to buffer. next_str_pos is 22004
[2022-09-25 13:07:49.576 35892M] Adding "www.macrumors.com" (len 18) to buffer. next_str_pos is 22024
[2022-09-25 13:07:49.849 35892M] Adding "clients.l.google.com" (len 21) to buffer. next_str_pos is 22042
[2022-09-25 13:07:50.181 35892M] Adding "ads.adthrive.com" (len 17) to buffer. next_str_pos is 22063
[2022-09-25 13:07:50.521 35892M] Adding "cdn.onthe.io" (len 13) to buffer. next_str_pos is 22080
[2022-09-25 13:07:50.800 35892M] Adding "cdn.brandmetrics.com" (len 21) to buffer. next_str_pos is 22093
[2022-09-25 13:07:51.106 35892M] Adding "pghub.io" (len 9) to buffer. next_str_pos is 22114
[2022-09-25 13:07:51.378 35892M] Adding "cdn.id5-sync.com" (len 17) to buffer. next_str_pos is 22123
[2022-09-25 13:07:51.961 35892M] Adding "static.scroll.com" (len 18) to buffer. next_str_pos is 22140
[2022-09-25 13:07:52.237 35892M] Adding "ats.rlcdn.com" (len 14) to buffer. next_str_pos is 22158
[2022-09-25 13:07:52.870 35892M] Adding "confiant-integrations.global.ssl.fastly.net" (len 44) to buffer. next_str_pos is 22172
[2022-09-25 13:07:53.163 35892M] Adding "images.macrumors.com" (len 21) to buffer. next_str_pos is 22216
[2022-09-25 13:07:53.443 35892M] Adding "s.skimresources.com" (len 20) to buffer. next_str_pos is 22237
[2022-09-25 13:07:53.717 35892M] Adding "tt.onthe.io" (len 12) to buffer. next_str_pos is 22257
[2022-09-25 13:07:53.990 35892M] Adding "48.242.248.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 22269
[2022-09-25 13:07:54.009 35892M] Resizing "FTL-queries" from 229376 to (8192 * 56) == 458752 (/dev/shm: 4.7MB used, 4.1GB total, FTL uses 754.0KB)
[2022-09-25 13:07:54.009 35892M] SHMEM pointer updated: 0x7f958b3000 -> 0x7f9582f000 (229376 458752)
[2022-09-25 13:07:54.016 35892M] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[2022-09-25 13:07:54.016 35892M] ----------------------------> FTL crashed! <----------------------------
[2022-09-25 13:07:54.016 35892M] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[2022-09-25 13:07:54.017 35892M] Please report a bug at https://github.com/pi-hole/FTL/issues
[2022-09-25 13:07:54.017 35892M] and include in your report already the following details:
[2022-09-25 13:07:54.017 35892M] FTL has been running for 183 seconds
[2022-09-25 13:07:54.017 35892M] FTL branch: fix/shm_crash
[2022-09-25 13:07:54.017 35892M] FTL version: vDev-28153b1
[2022-09-25 13:07:54.017 35892M] FTL commit: 28153b1
[2022-09-25 13:07:54.017 35892M] FTL date: 2022-09-25 10:14:48 +0200
[2022-09-25 13:07:54.017 35892M] FTL user: started as pihole, ended as pihole
[2022-09-25 13:07:54.017 35892M] Compiled for aarch64 (compiled on CI) using aarch64-linux-gnu-gcc (Debian 8.3.0-2) 8.3.0
[2022-09-25 13:07:54.017 35892M] Process details: MID: -1
[2022-09-25 13:07:54.017 35892M] PID: 35892
[2022-09-25 13:07:54.017 35892M] TID: 35892
[2022-09-25 13:07:54.017 35892M] Name: pihole-FTL
[2022-09-25 13:07:54.017 35892M] Received signal: Bus error
[2022-09-25 13:07:54.017 35892M] at address: 0x7f95867000
[2022-09-25 13:07:54.017 35892M] with code: BUS_ADRERR (Non-existent physical address)
[2022-09-25 13:07:54.018 35892M] Backtrace:
[2022-09-25 13:07:54.018 35892M] B[0000]: /usr/bin/pihole-FTL(generate_backtrace+0x38) [0x5579359870]
[2022-09-25 13:07:54.041 35892M] L[0000]: /__w/FTL/FTL/src/signals.c:98
[2022-09-25 13:07:54.044 35892M] B[0001]: /usr/bin/pihole-FTL(+0x59d44) [0x5579359d44]
[2022-09-25 13:07:54.066 35892M] L[0001]: /__w/FTL/FTL/src/signals.c:242
[2022-09-25 13:07:54.070 35892M] B[0002]: linux-vdso.so.1(__kernel_rt_sigreturn+0) [0x7f95c15788]
[2022-09-25 13:07:54.071 35892M] B[0003]: /usr/bin/pihole-FTL(_getQuery+0x138) [0x5579358c90]
[2022-09-25 13:07:54.101 35892M] L[0003]: /__w/FTL/FTL/src/shmem.c:1050
[2022-09-25 13:07:54.104 35892M] B[0004]: /usr/bin/pihole-FTL(DB_read_queries+0x408) [0x557936c828]
[2022-09-25 13:07:54.139 35892M] L[0004]: /__w/FTL/FTL/src/database/query-table.c:859
[2022-09-25 13:07:54.144 35892M] B[0005]: /usr/bin/pihole-FTL(main+0x1b4) [0x557933f884]
[2022-09-25 13:07:54.172 35892M] L[0005]: /__w/FTL/FTL/src/main.c:96
[2022-09-25 13:07:54.176 35892M] B[0006]: /lib/aarch64-linux-gnu/libc.so.6(__libc_start_main+0xe8) [0x7f9599ce18]
[2022-09-25 13:07:54.176 35892M] B[0007]: /usr/bin/pihole-FTL(+0x3f948) [0x557933f948]
[2022-09-25 13:07:54.217 35892M] L[0007]: ??:?
[2022-09-25 13:07:54.224 35892M] ------ Listing content of directory /dev/shm ------
[2022-09-25 13:07:54.224 35892M] File Mode User:Group Size Filename
[2022-09-25 13:07:54.225 35892M] rwxrwxrwx root:root 260 .
[2022-09-25 13:07:54.225 35892M] rwxr-xr-x root:root 4K ..
[2022-09-25 13:07:54.225 35892M] rw------- pihole:pihole 4K FTL-per-client-regex
[2022-09-25 13:07:54.225 35892M] rw------- pihole:pihole 4K FTL-dns-cache
[2022-09-25 13:07:54.225 35892M] rw------- pihole:pihole 8K FTL-overTime
[2022-09-25 13:07:54.225 35892M] rw------- pihole:pihole 3M FTL-queries
[2022-09-25 13:07:54.225 35892M] rw------- pihole:pihole 315K FTL-upstreams
[2022-09-25 13:07:54.225 35892M] rw------- pihole:pihole 86K FTL-clients
[2022-09-25 13:07:54.226 35892M] rw------- pihole:pihole 86K FTL-domains
[2022-09-25 13:07:54.226 35892M] rw------- pihole:pihole 164K FTL-strings
[2022-09-25 13:07:54.226 35892M] rw------- pihole:pihole 12 FTL-settings
[2022-09-25 13:07:54.226 35892M] rw------- pihole:pihole 244 FTL-counters
[2022-09-25 13:07:54.226 35892M] rw------- pihole:pihole 104 FTL-lock
[2022-09-25 13:07:54.226 35892M] ---------------------------------------------------
[2022-09-25 13:07:54.226 35892M] Please also include some lines from above the !!!!!!!!! header.
[2022-09-25 13:07:54.226 35892M] Thank you for helping us to improve our FTL engine!
[2022-09-25 13:07:54.226 35892M] Asking parent pihole-FTL (PID -1) to shut down
[2022-09-25 13:07:54.226 37390M] Received: Real-time signal 2 (36 -> 2)
[2022-09-25 13:07:54.227 37390M] Shutting down...
[2022-09-25 13:07:54.228 35892M] FTL fork terminated!
[2022-09-25 13:08:01.948 37390/T37404] SQLite3 message: database is locked in "SELECT name FROM network_addresses WHERE name IS NOT NULL AND ip = ?;" (5)
[2022-09-25 13:08:01.948 37390/T37404] getNameFromIP("192.168.1.54") - SQL error prepare: database is locked
[2022-09-25 13:08:18.152 37390M] Finished final database update (stored 175 queries)
[2022-09-25 13:08:18.152 37390M] Waiting for threads to join
[2022-09-25 13:08:18.154 37390/T37402] Terminating database thread
[2022-09-25 13:08:18.154 37390M] Thread housekeeper (1) is idle, terminating it.
[2022-09-25 13:08:20.154 37390M] Thread DNS client (2) is still busy, cancelling it.
[2022-09-25 13:08:20.155 37390M] All threads joined
[2022-09-25 13:08:20.155 37390M] Joining API worker thread 0
[2022-09-25 13:08:20.155 37390M] Joining API worker thread 1
[2022-09-25 13:08:20.155 37390M] Joining API worker thread 2
[2022-09-25 13:08:20.155 37390M] Joining API worker thread 3
[2022-09-25 13:08:20.155 37390M] Joining API worker thread 4
[2022-09-25 13:08:20.157 37390M] ########## FTL terminated after 50s (code 1)! ##########
[2022-09-25 13:08:36.508 37987M] Using log file /var/log/pihole/FTL.log
[2022-09-25 13:08:36.509 37987M] ########## FTL started on raspberrypi! ##########
[2022-09-25 13:08:36.509 37987M] FTL branch: fix/shm_crash
[2022-09-25 13:08:36.509 37987M] FTL version: vDev-28153b1
[2022-09-25 13:08:36.509 37987M] FTL commit: 28153b1
[2022-09-25 13:08:36.509 37987M] FTL date: 2022-09-25 10:14:48 +0200
[2022-09-25 13:08:36.509 37987M] FTL user: pihole
[2022-09-25 13:08:36.509 37987M] Compiled for aarch64 (compiled on CI) using aarch64-linux-gnu-gcc (Debian 8.3.0-2) 8.3.0
[2022-09-25 13:08:36.509 37987M] Creating mutex
[2022-09-25 13:08:36.509 37987M] Creating mutex
[2022-09-25 13:08:36.510 37987M] Starting config file parsing (/etc/pihole/pihole-FTL.conf)
[2022-09-25 13:08:36.510 37987M] SOCKET_LISTENING: only local
[2022-09-25 13:08:36.510 37987M] AAAA_QUERY_ANALYSIS: Show AAAA queries
[2022-09-25 13:08:36.510 37987M] MAXDBDAYS: max age for stored queries is 365 days
[2022-09-25 13:08:36.510 37987M] RESOLVE_IPV6: Resolve IPv6 addresses
[2022-09-25 13:08:36.510 37987M] RESOLVE_IPV4: Resolve IPv4 addresses
[2022-09-25 13:08:36.510 37987M] DBINTERVAL: saving to DB file every minute
[2022-09-25 13:08:36.510 37987M] DBFILE: Using /etc/pihole/pihole-FTL.db
[2022-09-25 13:08:36.510 37987M] MAXLOGAGE: Importing up to 24.0 hours of log data
[2022-09-25 13:08:36.510 37987M] PRIVACYLEVEL: Set to 0
[2022-09-25 13:08:36.510 37987M] IGNORE_LOCALHOST: Show queries from localhost
[2022-09-25 13:08:36.510 37987M] BLOCKINGMODE: Null IPs for blocked domains
[2022-09-25 13:08:36.510 37987M] ANALYZE_ONLY_A_AND_AAAA: Disabled. Analyzing all queries
[2022-09-25 13:08:36.510 37987M] DBIMPORT: Importing history from database
[2022-09-25 13:08:36.510 37987M] PIDFILE: Using /run/pihole-FTL.pid
[2022-09-25 13:08:36.511 37987M] SOCKETFILE: Using /run/pihole/FTL.sock
[2022-09-25 13:08:36.511 37987M] SETUPVARSFILE: Using /etc/pihole/setupVars.conf
[2022-09-25 13:08:36.511 37987M] MACVENDORDB: Using /etc/pihole/macvendor.db
[2022-09-25 13:08:36.511 37987M] GRAVITYDB: Using /etc/pihole/gravity.db
[2022-09-25 13:08:36.511 37987M] PARSE_ARP_CACHE: Active
[2022-09-25 13:08:36.511 37987M] CNAME_DEEP_INSPECT: Active
[2022-09-25 13:08:36.511 37987M] DELAY_STARTUP: No delay requested.
[2022-09-25 13:08:36.511 37987M] BLOCK_ESNI: Enabled, blocking _esni.{blocked domain}
[2022-09-25 13:08:36.511 37987M] NICE: Set process niceness to -10 (default)
[2022-09-25 13:08:36.511 37987M] MAXNETAGE: Removing IP addresses and host names from network table after 365 days
[2022-09-25 13:08:36.511 37987M] NAMES_FROM_NETDB: Enabled, trying to get names from network database
[2022-09-25 13:08:36.511 37987M] EDNS0_ECS: Overwrite client from ECS information
[2022-09-25 13:08:36.511 37987M] REFRESH_HOSTNAMES: Periodically refreshing IPv4 names
[2022-09-25 13:08:36.511 37987M] RATE_LIMIT: Rate-limiting client making more than 1000 queries in 60 seconds
[2022-09-25 13:08:36.511 37987M] LOCAL_IPV4: Automatic interface-dependent detection of address
[2022-09-25 13:08:36.511 37987M] LOCAL_IPV6: Automatic interface-dependent detection of address
[2022-09-25 13:08:36.511 37987M] BLOCK_IPV4: Automatic interface-dependent detection of address
[2022-09-25 13:08:36.511 37987M] BLOCK_IPV6: Automatic interface-dependent detection of address
[2022-09-25 13:08:36.511 37987M] SHOW_DNSSEC: Enabled, showing automatically generated DNSSEC queries
[2022-09-25 13:08:36.511 37987M] MOZILLA_CANARY: Enabled
[2022-09-25 13:08:36.511 37987M] PIHOLE_PTR: internal PTR generation enabled (pi.hole)
[2022-09-25 13:08:36.512 37987M] ADDR2LINE: Enabled
[2022-09-25 13:08:36.512 37987M] REPLY_WHEN_BUSY: Drop queries when the database is busy
[2022-09-25 13:08:36.512 37987M] BLOCK_TTL: 2 seconds
[2022-09-25 13:08:36.512 37987M] BLOCK_ICLOUD_PR: Enabled
[2022-09-25 13:08:36.512 37987M] CHECK_LOAD: Enabled
[2022-09-25 13:08:36.512 37987M] CHECK_SHMEM: Warning if shared-memory usage exceeds 90%
[2022-09-25 13:08:36.512 37987M] CHECK_DISK: Warning if certain disk usage exceeds 90%
[2022-09-25 13:08:36.512 37987M] Finished config file parsing
[2022-09-25 13:08:36.513 37987M] Database version is 12
[2022-09-25 13:08:36.513 37987M] Resizing "FTL-strings" from 40960 to (81920 * 1) == 81920 (/dev/shm: 712.7KB used, 4.1GB total, FTL uses 700.8KB)
[2022-09-25 13:08:36.513 37987M] Imported 0 alias-clients
[2022-09-25 13:08:36.513 37987M] Database successfully initialized
[2022-09-25 13:08:40.705 37987M] New upstream server: 127.0.0.1:5335 (0/512)
[2022-09-25 13:08:40.710 37987M] New upstream server: 192.168.1.254:53 (1/512)
[2022-09-25 13:08:40.769 37987M] Resizing "FTL-domains" from 12288 to (1024 * 24) == 24576 (/dev/shm: 753.7KB used, 4.1GB total, FTL uses 741.7KB)
[2022-09-25 13:08:40.806 37987M] Resizing "FTL-queries" from 229376 to (8192 * 56) == 458752 (/dev/shm: 766.0KB used, 4.1GB total, FTL uses 754.0KB)
[2022-09-25 13:08:40.819 37987M] Resizing "FTL-domains" from 24576 to (1536 * 24) == 36864 (/dev/shm: 995.3KB used, 4.1GB total, FTL uses 983.4KB)
[2022-09-25 13:08:40.862 37987M] Resizing "FTL-queries" from 458752 to (12288 * 56) == 688128 (/dev/shm: 1.0MB used, 4.1GB total, FTL uses 995.7KB)
[2022-09-25 13:08:40.911 37987M] Resizing "FTL-strings" from 81920 to (122880 * 1) == 122880 (/dev/shm: 1.2MB used, 4.1GB total, FTL uses 1.2MB)
[2022-09-25 13:08:40.914 37987M] Resizing "FTL-domains" from 36864 to (2048 * 24) == 49152 (/dev/shm: 1.3MB used, 4.1GB total, FTL uses 1.3MB)
[2022-09-25 13:08:40.919 37987M] Resizing "FTL-queries" from 688128 to (16384 * 56) == 917504 (/dev/shm: 1.3MB used, 4.1GB total, FTL uses 1.3MB)
[2022-09-25 13:08:40.982 37987M] Resizing "FTL-queries" from 917504 to (20480 * 56) == 1146880 (/dev/shm: 1.5MB used, 4.1GB total, FTL uses 1.5MB)
[2022-09-25 13:08:41.054 37987M] Resizing "FTL-queries" from 1146880 to (24576 * 56) == 1376256 (/dev/shm: 1.7MB used, 4.1GB total, FTL uses 1.7MB)
[2022-09-25 13:08:41.081 37987M] Resizing "FTL-domains" from 49152 to (2560 * 24) == 61440 (/dev/shm: 2.0MB used, 4.1GB total, FTL uses 2.0MB)
[2022-09-25 13:08:41.126 37987M] Resizing "FTL-queries" from 1376256 to (28672 * 56) == 1605632 (/dev/shm: 2.0MB used, 4.1GB total, FTL uses 2.0MB)
[2022-09-25 13:08:41.196 37987M] Resizing "FTL-queries" from 1605632 to (32768 * 56) == 1835008 (/dev/shm: 2.2MB used, 4.1GB total, FTL uses 2.2MB)
[2022-09-25 13:08:41.259 37987M] Resizing "FTL-domains" from 61440 to (3072 * 24) == 73728 (/dev/shm: 2.4MB used, 4.1GB total, FTL uses 2.4MB)
[2022-09-25 13:08:41.271 37987M] Resizing "FTL-queries" from 1835008 to (36864 * 56) == 2064384 (/dev/shm: 2.5MB used, 4.1GB total, FTL uses 2.4MB)
[2022-09-25 13:08:41.344 37987M] Resizing "FTL-queries" from 2064384 to (40960 * 56) == 2293760 (/dev/shm: 2.7MB used, 4.1GB total, FTL uses 2.7MB)
[2022-09-25 13:08:41.407 37987M] Resizing "FTL-queries" from 2293760 to (45056 * 56) == 2523136 (/dev/shm: 2.9MB used, 4.1GB total, FTL uses 2.9MB)
[2022-09-25 13:08:41.462 37987M] Resizing "FTL-queries" from 2523136 to (49152 * 56) == 2752512 (/dev/shm: 3.1MB used, 4.1GB total, FTL uses 3.1MB)
[2022-09-25 13:08:41.515 37987M] Resizing "FTL-domains" from 73728 to (3584 * 24) == 86016 (/dev/shm: 3.4MB used, 4.1GB total, FTL uses 3.4MB)
[2022-09-25 13:08:41.522 37987M] Resizing "FTL-queries" from 2752512 to (53248 * 56) == 2981888 (/dev/shm: 3.4MB used, 4.1GB total, FTL uses 3.4MB)
[2022-09-25 13:08:41.539 37987M] Resizing "FTL-strings" from 122880 to (163840 * 1) == 163840 (/dev/shm: 3.6MB used, 4.1GB total, FTL uses 3.6MB)
[2022-09-25 13:08:41.578 37987M] Resizing "FTL-queries" from 2981888 to (57344 * 56) == 3211264 (/dev/shm: 3.7MB used, 4.1GB total, FTL uses 3.6MB)
[2022-09-25 13:08:41.587 37987M] Imported 53934 queries from the long-term database
[2022-09-25 13:08:41.587 37987M] -> Total DNS queries: 53934
[2022-09-25 13:08:41.587 37987M] -> Cached DNS queries: 3625
[2022-09-25 13:08:41.587 37987M] -> Forwarded DNS queries: 44057
[2022-09-25 13:08:41.587 37987M] -> Blocked DNS queries: 5361
[2022-09-25 13:08:41.587 37987M] -> Unknown DNS queries: 519
[2022-09-25 13:08:41.587 37987M] -> Unique domains: 3165
[2022-09-25 13:08:41.587 37987M] -> Unique clients: 15
[2022-09-25 13:08:41.587 37987M] -> Known forward destinations: 2
[2022-09-25 13:08:41.588 37987M] Successfully accessed setupVars.conf
[2022-09-25 13:08:41.589 37987M] listening on 0.0.0.0 port 53
[2022-09-25 13:08:41.597 37987M] listening on :: port 53
[2022-09-25 13:08:41.600 38033M] PID of FTL process: 38033
[2022-09-25 13:08:41.601 38033M] Listening on port 4711 for incoming IPv4 telnet connections
[2022-09-25 13:08:41.606 38033M] Error opening IPv6 telnet socket: Address family not supported by protocol (97)
[2022-09-25 13:08:41.606 38033M] WARN: Cannot bind to IPv6 telnet socket
[2022-09-25 13:08:41.606 38033M] Listening on port 4711 for incoming socket telnet connections
[2022-09-25 13:08:41.607 38033M] INFO: FTL is running as user pihole (UID 999)
[2022-09-25 13:08:41.608 38033M] Reloading DNS cache
[2022-09-25 13:08:41.745 38033/T38045] Compiled 0 whitelist and 108 blacklist regex filters for 15 clients in 36.0 msec
[2022-09-25 13:08:41.745 38033/T38045] Blocking status is disabled
[2022-09-25 13:09:04.634 38033/T38047] SQLite3 message: database is locked in "SELECT name FROM network_addresses WHERE name IS NOT NULL AND ip = ?;" (5)
[2022-09-25 13:09:04.635 38033/T38047] getNameFromIP("192.168.1.59") - SQL error prepare: database is locked
[2022-09-25 13:10:06.460 38033/T38047] SQLite3 message: database is locked in "SELECT name FROM network_addresses WHERE name IS NOT NULL AND ip = ?;" (5)
[2022-09-25 13:10:06.461 38033/T38047] getNameFromIP("192.168.1.67") - SQL error prepare: database is locked
Thanks for your further details, the relevant lines are
[2022-09-25 13:07:54.009 35892M] Resizing "FTL-queries" from 229376 to (8192 * 56) == 458752 (/dev/shm: 4.7MB used, 4.1GB total, FTL uses 754.0KB)
[2022-09-25 13:07:54.009 35892M] SHMEM pointer updated: 0x7f958b3000 -> 0x7f9582f000 (229376 458752)
and
[2022-09-25 13:07:54.017 35892M] Received signal: Bus error
[2022-09-25 13:07:54.017 35892M] at address: 0x7f95867000
[2022-09-25 13:07:54.017 35892M] with code: BUS_ADRERR (Non-existent physical address)
We see that the shared memory object had enough space for 4096 queries before the resize and 8192 after. The crash now happened when trying to access the first entry of the resized block (0x7f95867000 == 0x7f9582f000+4096*56
) suggesting that resizing wasn't accepted by your system and, hence, accessing memory into the unallocated space crashed FTL.
Now the interesting part:
[2022-09-25 13:07:54.224 35892M] File Mode User:Group Size Filename
[2022-09-25 13:07:54.225 35892M] rw------- pihole:pihole 3M FTL-queries
suggests that the shared memory object is way larger than what we'd expect at this point: 8092*56 bytes so less than half a megabyte (not 3M
). Indeed, the log after your subsequent restart backs this:
[2022-09-25 13:08:41.578 37987M] Resizing "FTL-queries" from 2981888 to (57344 * 56) == 3211264 (/dev/shm: 3.7MB used, 4.1GB total, FTL uses 3.6MB)
now saying FTL-queries
is about 3M
in size.
This made me take a closer look at what processes are running at the same time on your system. I found
[2022-09-25 13:07:29.587 35892M] Adding "204.31.253.17.in-addr.arpa" (len 27) to buffer. next_str_pos is 20841
[2022-09-25 13:07:29.793 37324M] Using log file /var/log/pihole/FTL.log
[2022-09-25 13:07:29.793 37324M] ########## FTL started on raspberrypi! ##########
so while process 35892
was still importing from the database another copy of FTL was started (PID 37324
). It is 35892
who crashes later on as 37324
modified the shared memory object taking away memory that was previously allocated. Two independent processes running at the same time using the same shared memory trying to resize it at their own discretion is a major problem and also explains the multitude of database is locked
errors.
Please ensure only one FTL process is started at the same time and your problem should be solved.
Thanks so much @DL6ER for the detailed explanation.
After reading the update I reconfigured Pihole (pihole -r) to have a clean env, still using fix/shm_crash
, and no errors reported after enabling/disabling groups from UI or cron.
I don't recall starting twice FTL or pihole, such as fork process or custom pihole start, however I remember the initial installation was interrupted (ssh lost connection) and started a new pihole installation.
This ticket should be closed if no other info is requested, if not the case please let me know.
pihole -v
Pi-hole version is v5.12.2 (Latest: v5.12.2)
AdminLTE version is v5.15.1 (Latest: v5.15.1)
FTL version is fix/shm_crash vDev-28153b1 (Latest: v5.18.1)
Thanks for coming back. We have safety measures in place to ensure exactly what happened here cannot happen. I'll continue investigating in the back what happened here and how to robustify the code to prevent this from happening again in the future.
Please go back to the regular release using pihole checkout ftl master
to enure you will receive further updates in the future. This branch you have tried will not be updated and abandoned as it didn't change anything despite adding some more debug messages (which we didn't need in the end).
Versions
Platform
Expected behavior
Enabling/disabling a group of blocked domains.
Actual behavior / bug
FTL crashed after enabling/disabling a group of blocked domains
Steps to reproduce
Steps to reproduce the behavior:
I have two scripts that are executed via cron, sometimes the same crash is seen:
stopDomains.sh
startDomains.sh
crontab
Debug Token
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.
Added extra screenshot, an unknown pop-up windows after disabling a group.