Carrion unfortunately discontinued by DivestOS team, maybe there is continuation under another name I can’t find?
SpamBlocker is a to bit complex for me to set up…
Spam Call/SMS blocker
How Google phone does handle spam blocking so well?
I’m sick of that app but I need spam and spoofed calls blocker very much.
This is what is being used for database.
#!/bin/sh
#License: CC0
#Description: Carrion conversion script for https://www.ftc.gov/policy-notices/open-government/data-sets/do-not-call-data
#Archive: past 360 data sets, number occurs at least ten times
tail -n +2 current30/*.csv previous60/*.csv ancient270/*.csv | sort -u | sed 's/,/ , /' | awk '{ print $1 }' | grep -E '^[[:digit:]]{10}$' | grep -v -f 0exclusions.grep | sort | uniq -c | sort | grep -v -e " 1 " -e " 2 " -e " 3 " -e " 4 " -e " 5 " -e " 6 " -e " 7 " -e " 8 " -e " 9 " | awk '{ print $2 }' | sort -u > complaint_numbers-archive.txt;
#High confidence: past 90 data sets, number occurs at least twice + archive
tail -n +2 current30/*.csv previous60/*.csv | sort -u | sed 's/,/ , /' | awk '{ print $1 }' | grep -E '^[[:digit:]]{10}$' | grep -v -f 0exclusions.grep | sort | uniq -d | sort -u > complaint_numbers-highconf.tmp;
cat complaint_numbers-archive.txt complaint_numbers-highconf.tmp | sort -u > complaint_numbers-highconf.txt;
rm complaint_numbers-highconf.tmp;
#All numbers: past 30 data sets + high confidence
tail -n +2 current30/*.csv | sort -u | sed 's/,/ , /' | awk '{ print $1 }' | grep -E '^[[:digit:]]{10}$' | grep -v -f 0exclusions.grep | sort -u > complaint_numbers.tmp;
cat complaint_numbers-highconf.txt complaint_numbers.tmp | sort -u > complaint_numbers.txt;
rm complaint_numbers.tmp;
wc -l complaint_numbers*.txt;
rm complaint_numbers-archive.txt;
This file has been truncated. show original
The database is of USA & Canada : Do Not Call (DNC) Reported Calls Data | Federal Trade Commission
Someone can use that script to host the daily conversion and then you can change the database URL in the app
It’s beyond my capabilities I’m afraid…
Btw. why Carrion is still on F-droid while it’s not functional anymore?
I think it’s about it being not broken but not updated.
rafnov:
not functional anymore
The primary feature of Carrion is STIR/SHAKEN enforcement which works without any database or updates.
SpamBlocker integrated the same feature a long while ago.
1 Like
rafnov
May 21, 2025, 11:46am
6
Ok, I’m testing SpamBlocker again, this time made sure twice STIR is enabled.
But still, SB is too complex for me to configure.
What methods exactly Google uses for blocking spam and spoof calls?
Some say they have own method of identification and own database.
They have their own database + few public ones. I do recall someone saying that those database are in open source, but not too sure.
1 Like
@vdbhb59 afaik the database is extremely secret, the google dialer app can’t even query it if your device doesn’t pass safetynet
+they use stir/shaken too and some other public databases such as the business directory thingy
1 Like
rafnov
May 22, 2025, 12:24am
10
Truecaller and all those apps are full of trackers :[
Edit: unfortunately. Spam Blocker didn’t work again, it let through first spam call…
Carrion can’t be functional too.
zakk87
May 22, 2025, 8:05pm
11
You definately should try to Yet Another Call Blocker. It works great.
1 Like
rafnov
May 22, 2025, 8:19pm
12
Last version: 18.11.2021 … It really works?
zakk87
May 22, 2025, 8:53pm
13
Yes, I’m using it for a few years on modern and old devices. Try it.
@zakk87
the database of YACB hasn’t been updated since April 2021, it has no use today.
1 Like
rafnov
May 23, 2025, 5:23am
15
Anyway I will check the app, it deserves it for the clean interface, options explanations and “golden middle” between simplicity and configurability.
zakk87
May 23, 2025, 6:08am
16
I didn’t know that but its doing what to do. Blocking calls.
1 Like
rafnov
May 23, 2025, 6:24am
17
Wredna baba od fotowoltaiki i turbin.
I’m LOL.
For those who don’t know language, that means:
A mean woman from solar and turbine.
YACB is still what I use and it does the job just fine.
When I start receiving unsolicited calls that have a similar number pattern I blacklist using wildcards.
The app is still useful despite the age of its database. Will eventually look for non-proprietary alternatives though.
1 Like
rafnov
June 1, 2025, 10:51am
20
The problem is when application does not recognise spam spoofed number too many times, I have no time to check everything and add to add to block list everything like that.
rafnov
June 3, 2025, 4:53am
21
Hey, new thing appeared in my Droid-ify from izzyondroid repo
Unfortunately used lists from Spain only and nothing about STIR/SHAKEN usage.