Un simple outil de ping. Prend en charge le protocole TCP/UDP/ICMP.
Pingus peut...
Envoyer une demande d'écho ICMP et un traceroute ttl.
Envoyez un ping, numérisez vers les ports TCP/UDP et capture de bannière.
Envoyez un paquet magique (Wake on LAN) en utilisant le ping UDP.
pingus.Ping
'ready'
'result'
'error'
ping.send()
pingus.PingTCP
Extension : pingus.Ping
new PingTCP(options)
pingtcp.send()
pingtcp.scan()
pingus.PingUDP
Extension : pingus.Ping
new PingUDP(options)
pingudp.send()
pingudp.scan()
pingus.PingICMP
Extension : pingus.Ping
new PingICMP(options)
pingicmp.send()
pingicmp.traceroute()
Callback
ou Promise
( async/await
)pingus.tcp(options[, callback])
pingus.tcpscan(options[, callback])
pingus.udp(options[, callback])
pingus.udpscan(options[, callback])
pingus.wol(mac, options[, callback])
pingus.icmp(options[, callback])
pingus.traceroute(options[, callback])
npm i pingus
Si une erreur se produit lors de l'installation, cela peut être dû à l'échec de l'installation des packages suivants.
Cela peut être corrigé en installant le compilateur GCC.
Sous Ubuntu :
sudo apt-get install -y build-essential
Sous Windows :
Installez Visual Studio
y compris la charge de travail Desktop development with C++
.
// TCP Ping to localhost:22
import pingus from 'pingus' ; // ESM, Typescript
const pingus = require ( 'pingus' ) ; // CJS
pingus . tcp ( { host : 'localhost' , port : 22 } ) . then ( console . log ) ;
// Result
{
type : 'ping/tcp' ,
status : 'open' ,
host : 'localhost' ,
ip : IP { label : '127.0.0.1' } ,
ips : [ IP { label : '127.0.0.1' } ] ,
time : 2 ,
port : 22 ,
name : 'ssh' ,
banner : 'SSH-2.0-OpenSSH_8.9p1 Ubuntu-3'
toPrimitiveJSON : [ Function ( anonymous ) ]
}
pingus.Ping
pingus.Ping
est EventEmitter
avec les événements suivants :
'ready'
result
<Object>
Émis lorsqu'il est prêt (Resolve DNS, Filter Bogon IP) pour envoyer un ping après l'appel ping.send()
.
import pingus from 'pingus' ;
const ping = new pingus . PingTCP ( {
host : 'example.com' ,
} ) ;
ping . on ( 'ready' , ( result ) => {
const data = result . toPrimitiveJSON ( ) ;
console . log ( 'pingttarget:t' , data . host ) ;
console . log ( 'tips:t' , data . ips ) ;
} ) ;
ping . send ( ) ;
ping target: example.com
ips: [ '93.184.215.14', '2606:2800:021f:cb07:6820:80da:af6b:8b2c' ]
'result'
result
<Object>
Résultat des données ping.
import pingus from 'pingus' ;
const ping = new pingus . PingTCP ( {
host : 'example.com' ,
} ) ;
ping . on ( 'result' , ( result ) => {
const data = result . toPrimitiveJSON ( ) ;
console . log ( result ) ;
} ) ;
ping . send ( ) ;
{
type : 'ping/tcp' ,
status : 'open' ,
host : 'example.com' ,
ip : '93.184.215.14' ,
ips : [ '93.184.215.14' , '2606:2800:021f:cb07:6820:80da:af6b:8b2c' ] ,
time : 134 ,
port : 80 ,
name : 'http' ,
banner : ''
}
'error'
<Error>
result
<Object>
Émis lorsqu'une erreur se produit. result
a la dernière instruction avant que l'erreur ne se produise et le code d'erreur.
ping.send()
Envoyez un ping. Voir quelques exemples dans Utilisation
pingus.PingTCP
Extension : pingus.Ping
Classe pour le ping TCP.
pingus.PingTCP
est un type de pingus.Ping
new PingTCP(options)
options
<Object>
host
<string>
Définissez le nom d'hôte cible (domaine) ou l'adresse IP.port
<number>
Définit le port cible lors de l'utilisation de pingtcp.send()
. Par défaut : 80
ports
<Array>
| <string>
Définissez les ports cibles lors de l'utilisation de pingtcp.scan()
. Utilisez un tableau de numéros de port ou de chaînes de requête. Voir exemple.timeout
<number>
Définir le délai d'attente. Par défaut : 2000
resolveDNS
<boolean>
Résout les enregistrements DNS A
et AAAA
lorsque host
est l'adresse de domaine. Par défaut : true
dnsServer
<string>
Définit le serveur DNS pour résoudre les enregistrements DNS.filterBogon
<boolean>
Filtrer l'adresse IP de Bogon dans host
. Par défaut : true
options.ports
ports: [ 21 , 22 , 80 , 443 ] ; // Scan port 21, 22, 80, 443
ports: '21,22,80,443' ; // Scan port 21, 22, 80, 443
ports: '21-80' ; // Scan ports in range 21 to 80 (21, 22, 23 ... 78, 79, 80)
ports: '21-25,80,443' ; // Scan ports in range 21 to 25 and 80, 443
ports: '@' ; // Scan most used 1024 ports in protocol
ports: '*' ; // Scan all ports (1 to 65535)
pingtcp.send()
Voir ping.send()
. Quelques exemples dans Utilisation.
pingtcp.scan()
Analysez les ports à l'aide du ping TCP. Renvoie le résultat sur l'événement : 'result'
. Voir quelques exemples dans Utilisation.
pingus.PingUDP
Extension : pingus.Ping
Classe pour le ping UDP.
pingus.PingUDP
est un type de pingus.Ping
new PingUDP(options)
options
<Object>
host
<string>
Définissez le nom d'hôte cible (domaine) ou l'adresse IP.port
<number>
Définit le port cible lors de l'utilisation pingudp.send()
. Par défaut : 68
ports
<Array>
| <string>
Définissez les ports cibles lors de l'utilisation de pingudp.scan()
. Utilisez un tableau de numéros de port ou de chaînes de requête. Identique à PingTCP. Voir exemple.buffer
<Buffer>
Définit le tampon lors de l'envoi sur la socket ping UDP connectée.body
<string>
Définit le corps lors de l'envoi sur la socket ping UDP connectée. Ignoré lorsque les options buffer
sont définies.bytes
<number>
Définit la longueur des octets aléatoires lors de l'envoi sur la socket ping UDP connectée. Ignoré lorsque les options body
sont définies. Par défaut : 32
timeout
<number>
Définir le délai d'attente. Par défaut : 2000
resolveDNS
<boolean>
Résout les enregistrements DNS A
et AAAA
lorsque host
est l'adresse de domaine. Par défaut : true
dnsServer
<string>
Définit le serveur DNS pour résoudre les enregistrements DNS.filterBogon
<boolean>
Filtrer l'adresse IP de Bogon dans host
. Par défaut : true
pingudp.send()
Voir ping.send()
. Quelques exemples dans Utilisation.
pingudp.scan()
Similaire avec pingtcp.scan()
.
Analysez les ports à l'aide du ping UDP. Renvoie le résultat sur l'événement : 'result'
. Voir quelques exemples dans Utilisation.
pingus.PingICMP
Extension : pingus.Ping
Classe pour le ping ICMP.
pingus.PingICMP
est un type de pingus.Ping
new PingICMP(options)
options
<Object>
host
<string>
Définissez le nom d'hôte cible (domaine) ou l'adresse IP.ttl
<number>
Définit ttl. Par défaut : 128
ttln
<number>
Définit le start ttl lors de l'utilisation de pingicmp.traceroute()
. Par défaut : 1
ttlx
<number>
Définit le ttl maximum lors de l'utilisation de pingicmp.traceroute()
. Par défaut : 64
timeout
<number>
Définir le délai d'attente. Par défaut : 2000
timeoutx
<number>
Définit la pile de délai d'attente maximale lors de l'utilisation de pingicmp.traceroute()
. Par défaut : 8
resolveDNS
<boolean>
Résout les enregistrements DNS A
et AAAA
lorsque host
est l'adresse de domaine. Par défaut : true
dnsServer
<string>
Définit le serveur DNS pour résoudre les enregistrements DNS.filterBogon
<boolean>
Filtrer l'adresse IP de Bogon dans host
. Par défaut : true
pingicmp.send()
Voir ping.send()
. Quelques exemples dans Utilisation.
pingicmp.traceroute()
Exécutez traceroute. Quelques exemples dans Utilisation.
Callback
ou Promise
( async/await
)Voir des exemples dans Styles d’envoi de ping.
pingus.tcp(options[, callback])
Envoyez un ping TCP.
pingus.tcpscan(options[, callback])
Analysez les ports à l'aide du ping TCP.
pingus.udp(options[, callback])
Envoyez un ping UDP.
pingus.udpscan(options[, callback])
Analysez les ports à l'aide du ping UDP.
pingus.wol(mac, options[, callback])
mac
<string>
Définit l'adresse MAC cible.options
<Object>
Identique aux options du new PingUDP(options)
Envoyez un ping UDP de paquet magique pour utiliser la fonctionnalité WOL.
pingus.icmp(options[, callback])
Envoyez un ping ICMP.
pingus.traceroute(options[, callback])
Exécutez traceroute.
ESM (TypeScript)
import pingus from 'pingus' ;
CJS
const pingus = require ( 'pingus' ) ;
Class
étend EventEmitter
// TCP ping to localhost:80
new pingus . PingTCP ( { host : 'localhost' } )
. on ( 'result' , ( result ) => {
console . log ( result . toPrimitiveJSON ( ) ) ;
} )
. on ( 'error' , ( err , result ) => {
throw err ;
} )
. send ( ) ;
Callback
// TCP ping to localhost:80
pingus . tcp ( { host : 'localhost' } , ( err , result ) => {
if ( err ) {
throw err ;
}
console . log ( result ) ;
} ) ;
Promise
// TCP ping to localhost:80
pingus
. tcp ( { host : 'localhost' } )
. then ( ( result ) => {
console . log ( result . toPrimitiveJSON ( ) ) ;
} )
. catch ( ( err ) => {
throw err ;
} ) ;
async/await
// TCP ping to localhost:80
const result = await pingus . tcp ( { host : 'localhost' } ) ;
console . log ( result . toPrimitiveJSON ( ) ) ;
{
type : 'ping/tcp' ,
status : 'open' ,
host : 'localhost' ,
ip : '127.0.0.1' ,
ips : [ '127.0.0.1' ] ,
time : 2 ,
port : 80 ,
name : 'http' ,
banner : ''
}
// TCP ping to localhost:22
new pingus . PingTCP ( { host : 'localhost' , port : 22 } )
. on ( 'result' , ( result ) => {
console . log ( result . toPrimitiveJSON ( ) ) ;
} )
. on ( 'error' , ( err , result ) => {
throw err ;
} )
. send ( ) ;
{
type : 'ping/tcp' ,
status : 'open' ,
host : 'localhost' ,
ip : '127.0.0.1' ,
ips : [ '127.0.0.1' ] ,
time : 2 ,
port : 22 ,
name : 'ssh' ,
banner : 'SSH-2.0-OpenSSH_8.9p1 Ubuntu-3'
}
// TCP ping scan to localhost
new pingus . PingTCP ( {
host : 'localhost' ,
ports : [ 21 , 22 , 80 , 443 , 3306 , 8080 ] ,
} )
. on ( 'result' , ( result ) => {
console . log ( result . toPrimitiveJSON ( ) ) ;
} )
. on ( 'error' , ( err , result ) => {
throw err ;
} )
. scan ( ) ;
{
type : 'ping/tcp/scan' ,
status : 'finish' ,
host : 'localhost' ,
ip : '127.0.0.1' ,
ips : [ '127.0.0.1' ] ,
time : 2009 ,
port : 80 ,
name : 'http' ,
banner : '' ,
ports : [ 21 , 22 , 80 , 443 , 3306 , 8080 ] ,
statuses : {
open : [ 22 , 80 , 8080 ] ,
reset : [ ] ,
close : [ 21 , 443 , 3306 ] ,
filtered : [ ] ,
error : [ ]
} ,
names : {
'21' : 'ftp' ,
'22' : 'ssh' ,
'80' : 'http' ,
'443' : 'https' ,
'3306' : 'mysql' ,
'8080' : 'http-alt'
} ,
banners : { '22' : 'SSH-2.0-OpenSSH_8.9p1 Ubuntu-3' } ,
errors : { }
}
// UDP ping to localhost:19132
new pingus . PingUDP ( { host : 'localhost' , port : 19132 } )
. on ( 'result' , ( result ) => {
console . log ( result . toPrimitiveJSON ( ) ) ;
} )
. on ( 'error' , ( err , result ) => {
throw err ;
} )
. send ( ) ;
{
type : 'ping/udp' ,
status : 'close' ,
host : 'localhost' ,
ip : '127.0.0.1' ,
ips : [ '127.0.0.1' ] ,
time : 2 ,
port : 19132 ,
name : 'minecraft-be'
}
// UDP ping scan to localhost
new pingus . PingUDP ( {
host : 'localhost' ,
ports : [ 67 , 68 , 161 , 162 , 445 ] ,
} )
. on ( 'result' , ( result ) => {
console . log ( result . toPrimitiveJSON ( ) ) ;
} )
. on ( 'error' , ( err , result ) => {
throw err ;
} )
. scan ( ) ;
{
error : undefined ,
type : 'ping/udp/scan' ,
status : 'finish' ,
host : 'localhost' ,
ip : '127.0.0.1' ,
ips : [ '127.0.0.1' ] ,
time : 2003 ,
ports : [ 67 , 68 , 161 , 162 , 445 ] ,
statuses : {
open : [ 68 ] ,
reset : [ ] ,
close : [ 67 , 161 , 162 , 445 ] ,
filtered : [ ] ,
error : [ ]
} ,
names : {
'67' : 'bootps' ,
'68' : 'bootpc' ,
'161' : 'snmp' ,
'162' : 'snmptrap' ,
'445' : 'microsoft-ds'
} ,
banners : { } ,
errors : { }
}
// Send magic packet using UDP ping to 00-00-00-00-00-00
pingus
. wol ( '00-00-00-00-00-00' )
. then ( ( result ) => {
console . log ( result . toPrimitiveJSON ( ) ) ;
} )
. catch ( ( error ) => {
throw error ;
} ) ;
{
type : 'ping/udp' ,
status : 'open' ,
host : '255.255.255.255' ,
ip : '255.255.255.255' ,
ips : [ '255.255.255.255' ] ,
time : 2 ,
port : 9 ,
name : 'discard'
}
// ICMP ping to example.com
new pingus . PingICMP ( { host : 'example.com' } )
. on ( 'result' , ( result ) => {
console . log ( result . toPrimitiveJSON ( ) ) ;
} )
. on ( 'error' , ( err , result ) => {
throw err ;
} )
. send ( ) ;
{
type : 'ping/icmp' ,
status : 'reply' ,
host : 'example.com' ,
ip : '93.184.215.14' ,
ips : [ '93.184.215.14' , '2606:2800:021f:cb07:6820:80da:af6b:8b2c' ] ,
time : 130 ,
ttl : 128 ,
bytes : 32 ,
reply : {
source : '93.184.216.34' ,
type : 0 ,
code : 0 ,
typestr : 'ECHO_REPLY' ,
codestr : 'NO_CODE' ,
body : '767284c4'
}
}
// ICMP ping to example.com using ttl = 10
new pingus . PingICMP ( { host : 'example.com' , ttl : 10 } )
. on ( 'result' , ( result ) => {
console . log ( result . toPrimitiveJSON ( ) ) ;
} )
. on ( 'error' , ( err , result ) => {
throw err ;
} )
. send ( ) ;
{
type : 'ping/icmp' ,
status : 'exception' ,
host : 'example.com' ,
ip : '93.184.215.14' ,
ips : [ '93.184.215.14' , '2606:2800:021f:cb07:6820:80da:af6b:8b2c' ] ,
time : 133 ,
ttl : 10 ,
bytes : 32 ,
reply : {
source : '152.195.76.133' ,
type : 11 ,
code : 0 ,
typestr : 'TIME_EXCEEDED' ,
codestr : 'NO_CODE' ,
body : ']8X"bx00CQx00x00x00x00'
}
}
// Traceroute to example.com
new pingus . PingICMP ( { host : 'example.com' , timeout : 500 } )
. on ( 'result' , ( result ) => {
console . log ( result . toPrimitiveJSON ( ) ) ;
} )
. on ( 'error' , ( err , result ) => {
throw err ;
} )
. traceroute ( ) ;
{
type : 'ping/icmp/traceroute' ,
status : 'finish' ,
host : 'example.com' ,
ip : '93.184.215.14' ,
ips : [ '93.184.215.14' , '2606:2800:021f:cb07:6820:80da:af6b:8b2c' ] ,
time : 7614 ,
ttl : 128 ,
bytes : 32 ,
hops : [
{
status : 'time_exceeded' ,
ip : '172.19.80.1' ,
ttl : 1 ,
rtt : { min : 0 , max : 1 , avg : 1 }
} ,
{
status : 'time_exceeded' ,
ip : '172.30.1.254' ,
ttl : 2 ,
rtt : { min : 0 , max : 1 , avg : 1 }
} ,
{
status : 'timeout' ,
ip : null ,
ttl : 3 ,
rtt : { min : 2001 , max : 2002 , avg : 2002 }
} ,
{
status : 'time_exceeded' ,
ip : '112.188.59.77' ,
ttl : 4 ,
rtt : { min : 2 , max : 3 , avg : 3 }
} ,
{
status : 'time_exceeded' ,
ip : '112.188.53.13' ,
ttl : 5 ,
rtt : { min : 1 , max : 2 , avg : 2 }
} ,
{
status : 'time_exceeded' ,
ip : '112.174.47.177' ,
ttl : 6 ,
rtt : { min : 7 , max : 8 , avg : 8 }
} ,
{
status : 'time_exceeded' ,
ip : '112.174.91.130' ,
ttl : 7 ,
rtt : { min : 7 , max : 8 , avg : 8 }
} ,
{
status : 'time_exceeded' ,
ip : '112.174.87.102' ,
ttl : 8 ,
rtt : { min : 129 , max : 130 , avg : 130 }
} ,
{
status : 'time_exceeded' ,
ip : '206.72.210.112' ,
ttl : 9 ,
rtt : { min : 127 , max : 128 , avg : 128 }
} ,
{
status : 'time_exceeded' ,
ip : '152.195.76.151' ,
ttl : 10 ,
rtt : { min : 132 , max : 134 , avg : 133 }
} ,
{
status : 'reply' ,
ip : '93.184.215.14' ,
ttl : 11 ,
rtt : { min : 126 , max : 126 , avg : 126 }
}
]
}