Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Malware / Trojaner / VirenAI Agents Are Becoming a New Malware Distribution Channel(23.09.2026 um 09:44 Uhr)
Sichere ProgrammierungBuilding In-Browser Private Tools: When the Server Is the Liability(23.09.2026 um 08:54 Uhr)
Sichere ProgrammierungYour Order Fulfillment Workflow Is One 24-Hour Wait Away From Chaos(23.09.2026 um 08:54 Uhr)
Sichere Programmierungflet media library(23.09.2026 um 08:54 Uhr)
Sichere ProgrammierungRunning Lightdash on Snowpark Container Services(23.09.2026 um 08:55 Uhr)
Sichere ProgrammierungThe Impossible Filter Gallery Transition in CSS Only(23.09.2026 um 08:59 Uhr)
Sichere ProgrammierungVerifiable Data > Claimed Data: What i'm Trying to do with Ori's List(23.09.2026 um 09:08 Uhr)
Malware / Trojaner / VirenAI Agents Are Becoming a New Malware Distribution Channel(23.09.2026 um 09:44 Uhr)
Sichere ProgrammierungBuilding In-Browser Private Tools: When the Server Is the Liability(23.09.2026 um 08:54 Uhr)
Sichere ProgrammierungYour Order Fulfillment Workflow Is One 24-Hour Wait Away From Chaos(23.09.2026 um 08:54 Uhr)
Sichere Programmierungflet media library(23.09.2026 um 08:54 Uhr)
Sichere ProgrammierungRunning Lightdash on Snowpark Container Services(23.09.2026 um 08:55 Uhr)
Sichere ProgrammierungThe Impossible Filter Gallery Transition in CSS Only(23.09.2026 um 08:59 Uhr)
Sichere ProgrammierungVerifiable Data > Claimed Data: What i'm Trying to do with Ori's List(23.09.2026 um 09:08 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

GreyNoise Has a Free API — See If an IP Is Scanning the Internet (Not Just You)

Your firewall logs show thousands of connection attempts from unknown IPs. Are you being targeted? Or is it just background noise? GreyNoise answers this question. They monitor the entire internet and tell you which IPs are mass-scanning…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

Your firewall logs show thousands of connection attempts from unknown IPs. Are you being targeted? Or is it just background noise?



GreyNoise answers this question. They monitor the entire internet and tell you which IPs are mass-scanning everyone — not just you.






Why This Changes Everything



A SOC analyst was spending 4 hours daily triaging firewall alerts. 90% were IPs hitting every server on the internet — search engines, security researchers, botnets doing mass scans. Not targeted attacks.



After integrating GreyNoise, they filtered out the noise automatically. Those 4 hours became 30 minutes of real threats.






No API Key Needed (Community API)



The community API requires no authentication:



\`python

import requests



def check_ip(ip):

"""Check if an IP is known internet scanner."""





response = requests.get(

f"https://api.greynoise.io/v3/community/{ip}",

timeout=10

)

if response.status_code == 200:

data = response.json()



print(f"IP: {data['ip']}")
print(f"Noise: {data['noise']}") # True = mass scanner
print(f"RIOT: {data['riot']}") # True = known benign (Google, CDN)
print(f"Classification: {data['classification']}")
print(f"Name: {data.get('name', 'Unknown')}")
print(f"Link: {data['link']}")

if data['noise']:
print("→ This IP is scanning the entire internet. Not targeting you specifically.")
elif data['riot']:
print("→ This is a known benign service (CDN, search engine, etc).")
else:
print("→ Not seen mass-scanning. Could be targeted or just quiet.")

return data













Check some well-known IPs



check_ip("8.8.8.8") # Google DNS

check_ip("71.6.135.131") # Known Shodan scanner

`\






Bulk Check Firewall Logs



\`python

import time



def triage_alerts(ips):

"""Triage a list of IPs from firewall logs."""





noise = []

benign = []

investigate = []

for ip in ips:

try:

r = requests.get(f"https://api.greynoise.io/v3/community/{ip}", timeout=10)

if r.status_code == 200:

data = r.json()

if data.get("riot"):

benign.append(f"{ip} — {data.get('name', '?')}")

elif data.get("noise"):

noise.append(f"{ip} — {data.get('classification', '?')}")

else:

investigate.append(ip)

time.sleep(1) # Rate limit

except:

investigate.append(ip)



print(f"\n✓ BENIGN ({len(benign)} IPs) — Known services:")

for b in benign[:5]: print(f" {b}")



print(f"\n📡 NOISE ({len(noise)} IPs) — Mass scanners (not targeting you):")

for n in noise[:5]: print(f" {n}")



print(f"\n🔍 INVESTIGATE ({len(investigate)} IPs) — Potentially targeted:")

for i in investigate[:10]: print(f" ⚠ {i}")











Example firewall log IPs



triage_alerts(["8.8.8.8", "1.1.1.1", "71.6.135.131", "185.220.101.1"])

`\






Classifications




























Classification Meaning
benign Known good actor (research, CDN)
malicious Known bad actor (botnet, exploit scanner)
unknown Scanning, but intent unclear
riot Part of RIOT dataset (business services)





Rate Limits




























Tier Limit Auth
Community ~50/day No key needed
Free registered 1,000/day API key (free signup)
Enterprise Unlimited Paid





What You Can Build





  • SIEM enrichment — auto-classify IPs in Splunk/ELK alerts


  • Firewall triage — filter out internet noise from real threats


  • Threat feeds — build custom blocklists excluding noise


  • SOC dashboards — show real vs noise ratio in real-time



The difference between a 4-hour triage and a 30-minute one is knowing what to ignore.






More free security APIs on my GitHub.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten GreyNoise Has a Free API — See If an IP Is Scanning the Internet (Not Just You)

Thematisch verwandte Begriffe: GreyNoise, Free, Scanning, Internet · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-96258 | A vulnerability has been found in onSite internet GmbH Auktion NG Auktio…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick