* [PATCH 1/2] sources: Removal of Feodo Tracker lists from ipblocklist sources file
@ 2024-10-16 16:50 Adolf Belka
2024-10-16 16:50 ` [PATCH 2/2] update.sh: Remove existing entries for the three FEODO_ tracker lists Adolf Belka
0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2024-10-16 16:50 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3457 bytes --]
- FEODO_RECOMMENDED list is empty and has been since 2024-08-23, when it was last
updated.
- FEODO_IP list is empty and has been since 2024-08-23, when it was last updated.
- FEODO_AGGRESSIVE list still contains IP's but they were last updated on 2024-08-23.
- According to the Feodo Tracker web site these lists are updated every 5 minutes but
not for nearly 8 weeks now.
- Contacted Spamhaus who, since 2022, are the primary licensee for Abuse.ch, who created
the Feodo Tracker lists. No response at all from Spamhaus after one week, not even
any acknowledgement response.
- This patch set removes these three lists from the sources file and an associated patch
to the update.sh file removes references to these lists, if used, from the "modified"
file and removes the "list_name.conf" files.
- This is the same process as used for the removal of the ALIENVAULT list earlier this
year.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/ipblocklist/sources | 20 --------------------
1 file changed, 20 deletions(-)
diff --git a/config/ipblocklist/sources b/config/ipblocklist/sources
index 1cef06dd1..c2fc40d5b 100644
--- a/config/ipblocklist/sources
+++ b/config/ipblocklist/sources
@@ -61,26 +61,6 @@ our %sources = ( 'EMERGING_FWRULE' => { 'name' => 'Emerging Threats Blocklis
'parser' => 'dshield',
'rate' => '1h',
'category' => 'attacker' },
- 'FEODO_RECOMMENDED'=> {'name' => 'Feodo Trojan IP Blocklist (Recommended)',
- 'url' => 'https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt',
- 'info' => 'https://feodotracker.abuse.ch/blocklist',
- 'parser' => 'ip-or-net-list',
- 'rate' => '5m',
- 'category' => 'c and c' },
- 'FEODO_IP' => { 'name' => 'Feodo Trojan IP Blocklist',
- 'url' => 'https://feodotracker.abuse.ch/downloads/ipblocklist.txt',
- 'info' => 'https://feodotracker.abuse.ch/blocklist',
- 'parser' => 'ip-or-net-list',
- 'rate' => '5m',
- 'category' => 'c and c',
- 'disable' => 'FEODO_RECOMMENDED' },
- 'FEODO_AGGRESSIVE' => { 'name' => 'Feodo Trojan IP Blocklist (Aggressive)',
- 'url' => 'https://feodotracker.abuse.ch/downloads/ipblocklist_aggressive.txt',
- 'info' => 'https://feodotracker.abuse.ch/blocklist',
- 'parser' => 'ip-or-net-list',
- 'rate' => '5m',
- 'category' => 'c and c',
- 'disable' => ['FEODO_IP', 'FEODO_RECOMMENDED'] },
'CIARMY' => { 'name' => 'The CINS Army List',
'url' => 'https://cinsscore.com/list/ci-badguys.txt',
'info' => 'https://cinsscore.com/#list',
--
2.47.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 2/2] update.sh: Remove existing entries for the three FEODO_ tracker lists
2024-10-16 16:50 [PATCH 1/2] sources: Removal of Feodo Tracker lists from ipblocklist sources file Adolf Belka
@ 2024-10-16 16:50 ` Adolf Belka
0 siblings, 0 replies; 2+ messages in thread
From: Adolf Belka @ 2024-10-16 16:50 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1611 bytes --]
- This removes any time entries in the modified file for either FEODO_RECOMMENDED,
FEODO_IP or FEODO_AGGRESSIVE.
- This also removes any blocklists for any of these sources from the /var/lib/ipblocklist
directory.
- This patch will ensure that any reference to any of these sources is removed from the
ipblocklist files.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/core/190/update.sh | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/config/rootfiles/core/190/update.sh b/config/rootfiles/core/190/update.sh
index 16ef608e2..cec9492eb 100644
--- a/config/rootfiles/core/190/update.sh
+++ b/config/rootfiles/core/190/update.sh
@@ -145,6 +145,21 @@ if [ -e /boot/pakfire-kernel-update ]; then
/boot/pakfire-kernel-update ${KVER}
fi
+# Remove any entry for FEODO_RECOMMENDED, FEODO_IP or FEODO_AGGRESSIVE from the ipblocklist
+# modified file and the associated ipblocklist files from the /var/lib/ipblocklist directory
+sed -i '/FEODO_RECOMMENDED=/d' /var/ipfire/ipblocklist/modified
+sed -i '/FEODO_IP=/d' /var/ipfire/ipblocklist/modified
+sed -i '/FEODO_AGGRESSIVE=/d' /var/ipfire/ipblocklist/modified
+if [ -e /var/lib/ipblocklist/FEODO_RECOMMENDED.conf ]; then
+ rm /var/lib/ipblocklist/FEODO_RECOMMENDED.conf
+fi
+if [ -e /var/lib/ipblocklist/FEODO_IP.conf ]; then
+ rm /var/lib/ipblocklist/FEODO_IP.conf
+fi
+if [ -e /var/lib/ipblocklist/FEODO_AGGRESSIVE.conf ]; then
+ rm /var/lib/ipblocklist/FEODO_AGGRESSIVE.conf
+fi
+
# This update needs a reboot...
touch /var/run/need_reboot
--
2.47.0
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-10-16 16:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-16 16:50 [PATCH 1/2] sources: Removal of Feodo Tracker lists from ipblocklist sources file Adolf Belka
2024-10-16 16:50 ` [PATCH 2/2] update.sh: Remove existing entries for the three FEODO_ tracker lists Adolf Belka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox