Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
certstreamcatcher — Questo strumento si basa su regex con standard efficaci per rilevare siti di phishing in tempo reale utilizzando certstream e può anche rilevare attacchi punycode (IDNA). | Kitploit
Strumenti/GitHubGitHub/jimywork/certstreamcatcher
OSINT (Open Source Intelligence)Strumenti di PhishingRaccolta InformazioniPhishingSicurezza Web
GitHubjimywork/certstreamcatcher

certstreamcatcher

Questo strumento si basa su regex con standard efficaci per rilevare siti di phishing in tempo reale utilizzando certstream e può anche rilevare attacchi punycode (IDNA).

Vedi Repository
81197 anni faRevisionato da Kitploit

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi
Sito web

Certstreamcatcher

Rilevamento del phishing osservando i log di trasparenza dei certificati. Questo strumento si basa su regex con standard efficaci per rilevare siti di phishing in tempo reale usando certstream e può anche rilevare attacchi punycode (IDNA) come https://www.ṁyetḣerwallet.com.

Phishing

Phishing

Installazione

root@kitploit:~
$ cd /opt/
$ git clone https://github.com/6IX7ine/certstreamcatcher.git
$ cd certstreamcatcher
$ npm install

Pacchetto npm

Per installare certstreamcatcher usando npm esegui:

root@kitploit:~
npm install --save certstreamcatcher
   

Prova su npm runkit

Questo è un playground per testare certstreamcatcher

https://npm.runkit.com/certstreamcatcher

Utilizzo

Certstreamcatcher è estremamente semplice, tutto ciò che devi fare è importare la libreria certstreamcatcher e certstream, registrare il callback e chiamare certstreamClientPhishing passando il parametro callback a certstreamClientPhishing.

root@kitploit:~
const certstreamcatcher = require('certstreamcatcher'); 
const certstream = require("certstream");

const regex = /(wellsfargo|paypal|login|sign-in|secure|update|money|sslsecure|amazon)/gi; # Keywords

const tlds = ['.io','.gq','.ml','.cf','.tk','.xyz','.pw','.cc']; # tlds 

var client = new certstream(function(certstream) {  
	certstreamcatcher.certstreamClientPhishing(certstream, regex, tlds, {tlds: true});
});

client.connect();

Per eseguire il programma, salva il codice sopra ed esegui con il comando:

root@kitploit:~
$ node certstreamcatcher.js

Donazioni

  • XMR: 49m12JEEC6HPCHkLMX5QL4SrDQdKwh6eb4Muu8Z9CwA9MwemhzFQ3VcgHwyuR73rC22WCymTUyep7DVrfN3GPt5JBCekPrR
Scarica lo strumento