Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
Open-Source-Threat-Intel-Feeds — Dieses Repository enthält Open-Source- und frei nutzbare Threat-Intel-Feeds, die ohne zusätzliche Anforderungen verwendet werden können. Enthält mehrere Typen wie IP, URL, CVE und Hash. | Kitploit
Tools/GitHubGitHub/bert-janp/open-source-threat-intel-feeds
Management von Indicators of Compromise (IOC)OSINT (Open-Source-Intelligence)Bedrohungsfeeds & AggregatorenNetzwerksicherheitBedrohungsanalyseEinbruchserkennung
GitHubbert-janp/open-source-threat-intel-feeds

Open-Source-Threat-Intel-Feeds

Dieses Repository enthält Open-Source- und frei nutzbare Threat-Intel-Feeds, die ohne zusätzliche Anforderungen verwendet werden können. Enthält mehrere Typen wie IP, URL, CVE und Hash.

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Repository anzeigen
919976vor 3 TagenVon Kitploit geprüft
Teilen

Kostenlose Threat-Intel/IOC-Feeds Tweet

Dieses Repository enthält frei nutzbare Open-Source-Threat-Intel-Feeds, die ohne zusätzliche Anforderungen verwendet werden können. Die CSV-Datei ThreatIntelFeeds ist strukturiert nach Anbieter, Beschreibung, Kategorie und URL gespeichert. Die Anbieter, die ThreatIntelFeeds anbieten, werden unten beschrieben. Die folgenden Feed-Kategorien sind verfügbar:

  • SSL
  • IP
  • DNS
  • URL
  • MD5
  • SHA1
  • SHA256
  • CVEID
  • JA3
  • NamePipes

Der Inhalt wird so bereitgestellt, wie er ist. Bei der Verwendung des Inhalts in einer Geschäftsumgebung müssen die Bedingungen vor der Nutzung recherchiert werden. Es kann sein, dass einige Inhalte unter bestimmten Bedingungen nicht frei verwendet werden können. Es liegt in Ihrer eigenen Verantwortung zu recherchieren, ob dies der Fall ist oder nicht.

KategorieAnzahl
DNS17
IP78
MD512
SHA15
SHA2568
SSL1
URL23
CVEID4
RANSOMWARELEAK1
JA31
NamePipe1

Threat-Intel in Ihrer EDR- und SIEM-Lösung kombinieren

Die in diesem Repository verfügbaren Feeds können verwendet werden, um Threat Hunting in Ihrer EDR- oder SIEM-Lösung durchzuführen und nach bösartigen Aktivitäten zu suchen. Für Defender For Endpoint und Sentinel wurden bereits einige KQL-Hunting-Regeln geschrieben, die in Ihrer EDR- oder SIEM-Lösung implementiert werden können. Siehe: KQL Hunting Queries

KQL

Sie können die Open-Source-Feeds einfach in KQL für M365D Advanced Hunting oder Sentinel implementieren. Dies geschieht mithilfe des externaldata-Operators. Dieser Operator kann einen externen Link als Eingabe verwenden und das Ergebnis in eine Datentabelle parsen, die zum Verknüpfen oder Filtern basierend auf Ihren anderen Tabellen verwendet werden kann. Ein Beispiel ist unten gezeigt, und die Ausgabe ist eine Tabelle wie jede andere.

root@kitploit:~
let C2IntelFeeds = externaldata(IP: string, ioc:string)[@"https://raw.githubusercontent.com/drb-ra/C2IntelFeeds/master/feeds/IPC2s-30day.csv"] with (format="csv", ignoreFirstRecord=True);
C2IntelFeeds
| take 100

alt text

Die Dokumentation erklärt die verschiedenen verwendeten Parameter, z. B. ob die erste Zeile ignoriert werden soll oder nicht.

Kombinieren von EDR-Netzwerkverkehr und IOC-Feeds

Das Ergebnis der Kombination des EDR-Netzwerkverkehrs und des IOC-Feeds ist unten gezeigt. Diese Erkennung kann Ihnen helfen, Geräte zu identifizieren, die eine Verbindung zu IPs herstellen, die Command-and-Control-Server hosten.

root@kitploit:~
let C2IntelFeeds = externaldata(IP: string, ioc:string)[@"https://raw.githubusercontent.com/drb-ra/C2IntelFeeds/master/feeds/IPC2s-30day.csv"] with (format="csv", ignoreFirstRecord=True);
let IPList = C2IntelFeeds
| project IP;
DeviceNetworkEvents
| where RemoteIP in (IPList)
| join kind=inner C2IntelFeeds on $left.RemoteIP == $right.IP
| extend GeoIPInfo = geo_info_from_ip_address(RemoteIP)
| extend country = tostring(parse_json(GeoIPInfo).country), state = tostring(parse_json(GeoIPInfo).state), city = tostring(parse_json(GeoIPInfo).city), latitude = tostring(parse_json(GeoIPInfo).latitude), longitude = tostring(parse_json(GeoIPInfo).longitude)
| project Timestamp, DeviceName, RemoteIP, RemotePort, RemoteUrl, ioc

Beiträge

Beiträge sind sehr willkommen, um diese Liste mit kostenlosen Threat-Intel/IOC-Feeds so groß und so aktuell wie möglich zu machen. Sie können einen Beitrag leisten, indem Sie einen Pull Request erstellen. Dieser PR muss die folgenden Inhalte enthalten:

  1. Fügen Sie den Link zum Feed in der README.md-Datei hinzu. Wenn es noch keinen Abschnitt gibt, in den die Quelle passt, erstellen Sie einen neuen Abschnitt.
  2. Fügen Sie die Details zur ThreatIntelFeeds.csv-Datei hinzu. Das verwendete Format ist unten gezeigt. Die Kategorie bezieht sich auf die oben gezeigten Feed-Kategorien.
    root@kitploit:~
    Vendor;Description;Category;Url
    
  3. Die Quelle muss kostenlos und ohne Konto oder API-Token nutzbar sein.
  4. Verwenden Sie das Skript Validator.py, um den Inhalt der CSV-Datei zu validieren. Dies kann durch Ausführen im Verzeichnis script erfolgen.
  5. Aktualisieren Sie die IOC-Feed-Statistiktabelle, indem Sie GenerateTableStatistics.py ausführen, das die Markdown-Tabelle in der Datei StatisticsTable.md speichert. Diese Tabelle kann dann oben eingefügt werden.

Abuse.ch

  • https://sslbl.abuse.ch/blacklist/sslblacklist.csv
  • https://sslbl.abuse.ch/blacklist/sslipblacklist.csv
  • https://sslbl.abuse.ch/blacklist/sslipblacklist.txt
  • https://sslbl.abuse.ch/blacklist/sslipblacklist_aggressive.csv
  • https://sslbl.abuse.ch/blacklist/sslipblacklist_aggressive.txt
  • https://threatfox.abuse.ch/downloads/hostfile/
  • https://feodotracker.abuse.ch/downloads/ipblocklist.txt
  • https://feodotracker.abuse.ch/blocklist/
  • https://bazaar.abuse.ch/export/txt/md5/recent/
  • https://threatfox.abuse.ch/export/csv/md5/recent/
  • https://bazaar.abuse.ch/export/txt/sha1/recent/
  • https://bazaar.abuse.ch/export/txt/sha256/recent/
  • https://threatfox.abuse.ch/export/csv/sha256/recent/
  • https://urlhaus.abuse.ch/downloads/csv_recent/
  • https://sslbl.abuse.ch/blacklist/ja3_fingerprints.csv

Nutzungsbedingungen: https://sslbl.abuse.ch/blacklist/, https://feodotracker.abuse.ch/blocklist/

Blocklist.de

  • https://lists.blocklist.de/lists/all.txt
  • https://lists.blocklist.de/lists/ssh.txt
  • https://lists.blocklist.de/lists/mail.txt
  • https://lists.blocklist.de/lists/apache.txt
  • https://lists.blocklist.de/lists/imap.txt
  • https://lists.blocklist.de/lists/bots.txt
  • https://lists.blocklist.de/lists/bruteforcelogin.txt
  • https://lists.blocklist.de/lists/strongips.txt
  • https://lists.blocklist.de/lists/ftp.txt

Nutzungsbedingungen: https://www.blocklist.de/en/index.html

IPSum

  • https://raw.githubusercontent.com/stamparm/ipsum/master/levels/1.txt
  • https://raw.githubusercontent.com/stamparm/ipsum/master/levels/2.txt
  • https://raw.githubusercontent.com/stamparm/ipsum/master/levels/3.txt
  • https://raw.githubusercontent.com/stamparm/ipsum/master/levels/4.txt
  • https://raw.githubusercontent.com/stamparm/ipsum/master/levels/5.txt
  • https://raw.githubusercontent.com/stamparm/ipsum/master/levels/6.txt
  • https://raw.githubusercontent.com/stamparm/ipsum/master/levels/7.txt
  • https://raw.githubusercontent.com/stamparm/ipsum/master/levels/8.txt

C2IntelFeeds

  • https://github.com/drb-ra/C2IntelFeeds/blob/master/feeds/IPC2s-30day.csv
  • https://github.com/drb-ra/C2IntelFeeds/blob/master/feeds/domainC2s-30day-filter-abused.csv
  • https://github.com/drb-ra/C2IntelFeeds/blob/master/feeds/domainC2swithURL-30day-filter-abused.csv
  • https://github.com/drb-ra/C2IntelFeeds/blob/master/feeds/domainC2swithURL-filter-abused.csv
  • https://github.com/drb-ra/C2IntelFeeds/blob/master/feeds/domainC2swithURLwithIP-30day-filter-abused.csv
  • https://github.com/drb-ra/C2IntelFeeds/blob/master/feeds/domainC2s.csv
  • https://github.com/drb-ra/C2IntelFeeds/blob/master/feeds/unverified/IPC2s.csv

Montysecurity Feeds

  • https://github.com/montysecurity/C2-Tracker/tree/main/data
  • https://github.com/montysecurity/C2-Tracker/blob/main/data/Brute%20Ratel%20C4%20IPs.txt
  • https://github.com/montysecurity/C2-Tracker/blob/main/data/Cobalt%20Strike%20C2%20IPs.txt
  • https://github.com/montysecurity/C2-Tracker/blob/main/data/Posh%20C2%20IPs.txt
  • https://github.com/montysecurity/C2-Tracker/blob/main/data/Sliver%20C2%20IPs.txt
  • https://github.com/montysecurity/C2-Tracker/blob/main/data/Metasploit%20Framework%20C2%20IPs.txt
  • https://github.com/montysecurity/C2-Tracker/blob/main/data/Havoc%20C2%20IPs.txt
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/BurpSuite%20IPs.txt
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/Deimos%20C2%20IPs.txt
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/GoPhish%20IPs.txt
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/Gotham%20Stealer%20IPs.txt
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/Hachcat%20Cracking%20Tool%20IPs.txt
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/Metasploit%20Framework%20C2%20IPs.txt

Carbon Black

  • https://github.com/carbonblack/active_c2_ioc_public/blob/main/cobaltstrike/actor-specific/cobaltstrike_luckymouse_ta428.csv
  • https://github.com/carbonblack/active_c2_ioc_public/blob/main/cobaltstrike/actor-specific/cobaltstrike_pyxie.csv
  • https://github.com/carbonblack/active_c2_ioc_public/blob/main/shadowpad/shadowpad_202209.tsv

tweetfeed.live

  • https://tweetfeed.live/
  • https://raw.githubusercontent.com/0xDanielLopez/TweetFeed/master/today.csv
  • https://raw.githubusercontent.com/0xDanielLopez/TweetFeed/master/week.csv
  • https://raw.githubusercontent.com/0xDanielLopez/TweetFeed/master/month.csv
  • https://raw.githubusercontent.com/0xDanielLopez/TweetFeed/master/year.csv

Botvrij

  • https://www.botvrij.eu/data/blocklist/blocklist_domain.csv
  • https://www.botvrij.eu/data/ioclist.md5
  • https://www.botvrij.eu/data/ioclist.sha1
  • https://www.botvrij.eu/data/ioclist.sha256

Proofpoint

  • https://rules.emergingthreats.net/blockrules/compromised-ips.txt

CINSscore

  • https://cinsscore.com/list/ci-badguys.txt

Phishing Army

  • https://phishing.army/download/phishing_army_blocklist.txt
  • https://phishing.army/download/phishing_army_blocklist_extended.txt

Alienvault

  • http://reputation.alienvault.com/reputation.data
  • https://reputation.alienvault.com/reputation.generic

Cisco Talos

  • http://www.talosintelligence.com/documents/ip-blacklist

Binarydefense

  • https://www.binarydefense.com/banlist.txt

CISA

  • https://www.cisa.gov/sites/default/files/csv/known_exploited_vulnerabilities.csv - CSV
  • https://www.cisa.gov/sites/default/files/feeds/known_exploited_vulnerabilities.json - JSON

eCrimeLabs

  • https://feeds.ecrimelabs.net/data/metasploit-cve

MISP Feed CERT-FR

  • https://misp.cert.ssi.gouv.fr/feed-misp/hashes.csv

Mr. Looquer IOC Feed

  • https://iocfeed.mrlooquer.com/feed.csv

SNORT

  • https://snort.org/downloads/ip-block-list

ELLIO: IP Feed (Community-Version)

  • https://cdn.ellio.tech/community-feed

Nutzungsbedingungen: https://ellio.tech/beta-terms-and-conditions

CyberCure

  • https://api.cybercure.ai/feed/get_hash?type=csv
  • https://api.cybercure.ai/feed/get_url?type=csv
  • https://api.cybercure.ai/feed/get_ips?type=csv

DigitalSide Threat-Intel

  • https://osint.digitalside.it/Threat-Intel/lists/latesturls.txt
  • https://osint.digitalside.it/Threat-Intel/lists/latestips.txt
  • https://osint.digitalside.it/Threat-Intel/lists/latestdomains.txt

OpenPhish

  • https://openphish.com/feed.txt

PhishTank

  • http://data.phishtank.com/data/online-valid.json

Cert.PL

  • https://hole.cert.pl/domains/domains.csv

GreenSnow

  • https://blocklist.greensnow.co/greensnow.txt

NIST

  • https://services.nvd.nist.gov/rest/json/cves/2.0

Andere GitHub-basierte Feeds

  • https://raw.githubusercontent.com/aptnotes/data/master/APTnotes.csv
  • https://raw.githubusercontent.com/fox-it/cobaltstrike-extraneous-space/master/cobaltstrike-servers.csv
  • https://raw.githubusercontent.com/ktsaou/blocklist-ipsets/master/firehol_level1.netset
  • https://github.com/ThreatMon/ThreatMon-Daily-C2-Feeds

Url Abuse

  • https://urlabuse.com/public/data/data.txt
  • Die letzten 500 Einträge der DB im CSV-Format - https://urlabuse.com/public/data/data_csv.txt
  • https://urlabuse.com/public/data/data.json
  • https://urlabuse.com/public/data/malware_url.txt
  • https://urlabuse.com/public/data/phishing_url.txt
  • https://urlabuse.com/public/data/hacked_url.txt
  • https://urlabuse.com/public/data/dumps
  • https://urlabuse.com/public/files
  • https://urlabuse.com/public/screenshot
  • https://urlabuse.com/public/misp

virtualfabric

  • https://nocdn.nrd-list.com/0/nrd-list-32-days.txt
  • https://nocdn.threat-list.com/0/domains.txt
  • https://dl.threat-list.com/1/domains.txt

threatcluster.io

  • https://threatcluster.io/api/iocs/public/feed.txt
  • https://threatcluster.io/api/iocs/public/feed.csv
  • https://threatcluster.io/api/iocs/public/domains.txt
  • https://threatcluster.io/api/iocs/public/ips.txt
  • https://threatcluster.io/api/iocs/public/hashes.txt

threatview.io

  • https://threatview.io/Downloads/Experimental-IOC-Tweets.txt
  • https://threatview.io/Downloads/High-Confidence-CobaltStrike-C2%20-Feeds.txt
  • https://threatview.io/Downloads/IP-High-Confidence-Feed.txt
  • https://threatview.io/Downloads/DOMAIN-High-Confidence-Feed.txt
  • https://threatview.io/Downloads/MD5-HASH-ALL.txt
  • https://threatview.io/Downloads/URL-High-Confidence-Feed.txt
  • https://threatview.io/Downloads/SHA-HASH-FEED.txt

SiberKapan

  • https://siberkapan.org/domains/siberkapan/txt
  • https://siberkapan.org/api/v1/list/txt

VPN

  • https://github.com/X4BNet/lists_vpn/tree/main
  • https://github.com/mthcht/awesome-lists/blob/main/Lists/VPN/NordVPN/nordvpn_ips_list.csv
  • https://github.com/mthcht/awesome-lists/blob/main/Lists/VPN/ProtonVPN/protonvpn_ip_list.csv

Tor

  • https://www.dan.me.uk/torlist/?full
  • https://www.dan.me.uk/torlist/?exit

Ransomware Live

  • https://api.ransomware.live/allcyberattacks

NamePipes

  • https://github.com/mthcht/awesome-lists/blob/main/Lists/suspicious_named_pipe_list.csv

Bemerkenswerte Links

  • https://github.com/eset/malware-ioc
  • https://www.misp-project.org/feeds/
  • https://github.com/MISP/MISP/blob/2.4/app/files/feed-metadata/defaults.json
  • https://github.com/executemalware/Malware-IOCs
  • https://raw.githubusercontent.com/tsirolnik/spam-domains-list/master/spamdomains.txt

Quellen mit mehreren Feeds je nach Bedrohung

  • https://github.com/firehol/blocklist-ipsets
  • https://github.com/pan-unit42/iocs

Spamhaus Don't Route Or Peer Lists (DROP)-Listen

  • https://www.spamhaus.org/drop/drop_v4.json
Tool herunterladen
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/Mythic%20C2%20IPs.txt
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/NimPlant%20C2%20IPs.txt
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/PANDA%20C2%20IPs.txt
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/Posh%20C2%20IPs.txt
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/PowerSploit%20IPs.txt
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/XMRig%20Monero%20Cryptominer%20IPs.txt
  • https://raw.githubusercontent.com/montysecurity/C2-Tracker/main/data/all.txt