T.C. Siber Guvenlik Baskanligi verisi ile beslenmektedir

Zararli Baglanti Feed'i
Fortigate ve tum guvenlik cihazlari icin

USOM'un yayinladigi zararli domain, URL, IPv4 ve IPv6 kayitlarini 10 dakikada bir otomatik olarak cekip 5 farkli TXT formatinda paylasiyoruz.

Aktif Zararli Kayit
0
Son guncelleme: -
Sync araligi: 10 dakika
Uptime: -
Feed Dosyalari
Cihazinizin turune gore uygun dosyayi secin. Hepsi klasik USOM TXT formatinda, her satirda bir kayit.
Tehdit Dagilimi
Kayit turlerine gore oransal dagilim.
- toplam
Kurulum Rehberi
Yaygin firewall/DNS urunlerinde bu feed'i nasil kullanacaginizi anlatiyoruz.

Fortigate External Threat Feed

FortiOS 6.2+ ile External Block List (Threat Feed) olusturup domain.txt ve ipv4.txt dosyalarini besleyebilirsiniz.

  1. Web arayuz → Security Fabric → External Connectors → Create New → Threat Feeds
  2. Domain Name icin URL: https://usom.subgatenetwork.com/domain.txt
  3. Refresh rate: 10 dakika (60 sn min)
  4. Ayni sekilde IP Address feed'i icin ipv4.txt ekleyin
  5. Firewall Policy'de bu feed'leri Web Filter/DNS Filter altinda kullanin

CLI ile:

config system external-resource
  edit "subgate-usom-domain"
    set type domain
    set resource "https://usom.subgatenetwork.com/domain.txt"
    set refresh-rate 10
  next
  edit "subgate-usom-ip"
    set type address
    set resource "https://usom.subgatenetwork.com/ipv4.txt"
    set refresh-rate 10
  next
end

pfSense pfBlockerNG

pfBlockerNG-devel paketi ile DNSBL ve IP Feed olusturabilirsiniz.

  1. Firewall → pfBlockerNG → DNSBL → DNSBL Groups → Add
  2. DNSBL Source URL: https://usom.subgatenetwork.com/domain.txt
  3. Format: URL, List Action: Unbound
  4. IP feed icin: Firewall → pfBlockerNG → IPv4 → Add, URL: https://usom.subgatenetwork.com/ipv4.txt
  5. Update Frequency: 10 dakika onerilir

MikroTik RouterOS - Address List

Script ile ipv4.txt'yi cekip firewall address-list olusturun.

/tool fetch url="https://usom.subgatenetwork.com/ipv4.txt" dst-path=usom.txt
/ip firewall address-list remove [find list=usom-block]
:local content [/file get usom.txt contents]
:local lines [:toarray $content]
:foreach ip in=$lines do={
  :if ([:len $ip] > 6) do={
    /ip firewall address-list add list=usom-block address=$ip comment="USOM"
  }
}
/ip firewall filter add chain=forward src-address-list=usom-block action=drop
/ip firewall filter add chain=forward dst-address-list=usom-block action=drop
Not: Buyuk domain listeleri MikroTik icin ideal degil, bu yuzden IPv4 kullanmanizi tavsiye ederiz.

Sophos XG / SFOS

  1. Web arayuz → Web → URL Groups → Add (external kaynak)
  2. Source URL: https://usom.subgatenetwork.com/domain.txt
  3. Format: Custom / Line-based, Sync period: 10 dk
  4. Web Policy'de bu grubu Block action ile kullanin
  5. IP tarafi icin: Hosts & Services → IP Host Group → External ile ipv4.txt'yi ekleyin

Pi-hole / AdGuard Home

DNS seviyesinde engelleme icin domain.txt dogrudan blocklist olarak kullanilabilir.

Pi-hole: Group Management → Adlists → Add:

https://usom.subgatenetwork.com/domain.txt

AdGuard Home: Filters → DNS blocklists → Add blocklist → Custom URL yapistir.

Tavsiye: Pi-hole'da Cron ile pihole -g komutunu her saat calistirmayi unutmayin.

CLI / Manuel Kullanim

Basit bir curl/wget ile dosyalari cekip kendi sisteminizde kullanabilirsiniz.

# Sadece domain listesi
curl -s https://usom.subgatenetwork.com/domain.txt -o domain.txt

# Full liste (domain + url + ipv4 + ipv6 karisik)
curl -s https://usom.subgatenetwork.com/full.txt -o full.txt

# Cron ornegi (her 10 dk)
*/10 * * * * curl -sf https://usom.subgatenetwork.com/domain.txt -o /etc/blocklist/usom.txt

Meta bilgisi (JSON):

curl -s https://usom.subgatenetwork.com/stats.json | jq
API / Endpoints
Otomasyon icin kullanabileceginiz tum endpoint'ler.
GET/full.txt
Tum kayitlar (domain + url + ipv4 + ipv6) tek dosyada
GET/domain.txt
Sadece zararli domain'ler
GET/url.txt
Tam URL bazli zararli kayitlar
GET/ipv4.txt
Zararli IPv4 adresleri
GET/ipv6.txt
Zararli IPv6 adresleri
GET/stats.json
Live metadata: satir sayilari, boyutlar, son sync
Servis Bilgisi
Sync ve servis durumu.
Son sync - -
Uptime - -
USOM top. - USOM'da
Bizde uniq. - bizde
Meta - stats.json
Kopyalandi