星期三, 9月 18, 2019

Node.js + Javascript for face recognition in the browser with tensorflow.js


Node.js + Javascript for face recognition in the browser with tensorflow.js


face-api.js — JavaScript API for Face Recognition in the Browser with tensorflow.js

星期四, 9月 05, 2019

NMAP 指令,掃 IP,掃 OS,掃 port

掃同網段有那些 IP (用 ping 的)
nmap -sP 192.168.1.0/24
nmap -sP 192.168.1.1-254
掃 OS
nmap -O 192.168.1.1
掃 Port
nmap 192.168.1.1 -p21
全面掃描
NMAP 指令,掃 IP,掃 OS,掃 port
nmap -A -T4 192.168.1.1
只列出網段清單
nmap -sL 192.168.0/24
用 TCP SYN 掃
nmap -sS 192.168.1.1
用 TCP connect 掃
nmap -sT 192.168.1.1
掃 UDP
nmap -sU 192.168.1.1