All Projects → hi-KK → Ics Protocol Identify

hi-KK / Ics Protocol Identify

Using nmap NSE scripts for identifying common ICS protocols[使用nmap的nse脚本对常见工控协议进行识别,附对应nse脚本,并记录pcap流量]

Programming Languages

lua
6591 projects

Labels

Projects that are alternatives of or similar to Ics Protocol Identify

webcalendar
WebCalendar is a PHP application used to maintain a calendar for a single user or an intranet group of users. It can also be configured as an event calendar.
Stars: ✭ 113 (+56.94%)
Mutual labels:  ics
Awesome Se
👨‍💻 ❤️ 💻 上海交通大学软件学院本科编程作业参考
Stars: ✭ 507 (+604.17%)
Mutual labels:  ics
Conpot
ICS/SCADA honeypot
Stars: ✭ 853 (+1084.72%)
Mutual labels:  ics
ICS-TestBed-Framework
ICS TestBed Framework
Stars: ✭ 39 (-45.83%)
Mutual labels:  ics
Ics Parser
Parser for iCalendar Events • PHP 7.2+, 5 (≥ 5.6)
Stars: ✭ 342 (+375%)
Mutual labels:  ics
Grassmarlin
Provides situational awareness of Industrial Control Systems (ICS) and Supervisory Control and Data Acquisition (SCADA) networks in support of network security assessments. #nsacyber
Stars: ✭ 621 (+762.5%)
Mutual labels:  ics
weather-calendar-feed
Display yr.no weather (supports the entire Earth) forecasts with highly customizable Event titles in your Google Calendar, Android phone, iPhone, Outlook or other iCalendar app
Stars: ✭ 16 (-77.78%)
Mutual labels:  ics
Golang Ical
A ICS / ICal parser and serialiser for Golang.
Stars: ✭ 53 (-26.39%)
Mutual labels:  ics
Opcua
Native Go OPC-UA library
Stars: ✭ 382 (+430.56%)
Mutual labels:  ics
Ical
iCal-creator for PHP
Stars: ✭ 891 (+1137.5%)
Mutual labels:  ics
Ics
iCalendar (ics) file generator for node.js
Stars: ✭ 324 (+350%)
Mutual labels:  ics
Fb2cal
Fetch Facebook Birthdays events and create an ICS file for use with calendar apps
Stars: ✭ 335 (+365.28%)
Mutual labels:  ics
Isf
ISF(Industrial Control System Exploitation Framework),a exploitation framework based on Python
Stars: ✭ 690 (+858.33%)
Mutual labels:  ics
remarkable-calendar-creator
Create calendars to display on a reMarkable device as the suspend screen or to write notes on, including events from your own online iCal calendar
Stars: ✭ 28 (-61.11%)
Mutual labels:  ics
Pyspider Ics
使用pyspider爬虫框架爬取工控相关数据(漏洞、预警、安全事件等)
Stars: ✭ 37 (-48.61%)
Mutual labels:  ics
CyberICS.github.io
News and publication on cybersecurity in industry
Stars: ✭ 29 (-59.72%)
Mutual labels:  ics
Icsmaster
ICS/SCADA Security Resource(整合工控安全相关资源)
Stars: ✭ 582 (+708.33%)
Mutual labels:  ics
Mutt Ics
Simple viewer for ics in mutt
Stars: ✭ 59 (-18.06%)
Mutual labels:  ics
Ics Default Passwords
List of default passwords for Industrial Control Systems
Stars: ✭ 42 (-41.67%)
Mutual labels:  ics
Ics Security Tools
Tools, tips, tricks, and more for exploring ICS Security.
Stars: ✭ 749 (+940.28%)
Mutual labels:  ics

对大佬有帮助的话就给个Star吧!

工控常见协议

协议 通信 端口
Siemens S7 tcp 102
Modbus tcp 502
IEC 60870-5-104 tcp 2404
DNP3 tcp 20000
EtherNet/IP udp 44818
BACnet udp 47808
Tridium Niagara Fox tcp 1911
Crimson V3 tcp 789
OMRON FINS tcp 9600
PCWorx tcp 1962
ProConOs tcp 20547
MELSEC-Q tcp 5007

工控协议识别

Siemens S7

nmap -sS -Pn -n --min-hostgroup 1024 --min-parallelism 1024 -p 102 --script s7-info -iL 123.txt -oX 123.xml
超速度扫描:
-sS  SYN扫描,又称为半开放扫描,它不打开一个完全的TCP连接,执行得很快,效率高
-Pn  不对目标进行ping探测(不判断主机是否在线)(直接扫描端口)
-n   不反向解析IP地址到域名
–min-hostgroup 1024    最小分组设置为1024个IP地址,当IP太多时,nmap需要分组,然后串行扫描
–min-parallelism 1024  这个参数非常关键,为了充分利用系统和网络资源,我们将探针的数目限定最小为1024

360截图16261006315874

Modbus

nmap -sS -Pn -p 502 --script modicon-info -iL 123.txt -oX 123.xml

360截图162412289895122

IEC 60870-5-104

nmap -Pn -n -d --script iec-identify.nse  --script-args='iec-identify.timeout=500' -p 2404 <host>
超速度扫描:
nmap -Pn -n --min-hostgroup 1024 --min-parallelism 3000 -d --script iec-identify-2014.nse  --script-args='iec-identify.timeout=500' -p 2404 -iL 2404.txt -oX 2404.xml

360截图16620607109125137

DNP3

nmap --script dnp3-info -p 20000 <host>
超速度扫描:
nmap -Pn -n --min-hostgroup 1024 --min-parallelism 3000 --script dnp3-info.nse -p 20000 -iL 20000.txt -oX 20000.xml

360截图16280721688569

EtherNet/IP

nmap --script enip-info -sU  -p 44818 <host>
超速度扫描:
nmap -Pn -n -sU --min-hostgroup 1024 --min-parallelism 3000 --script enip-info.nse -p 44818 -iL 44818.txt -oX 44818.xml

360截图162807227386120

BACnet

nmap --script bacnet-info -sU -p 47808 <host>
超速度扫描:
nmap -Pn -n --min-hostgroup 1024 --min-parallelism 3000 -sU -p 47808 --script bacnet-info.nse -iL 47808.txt -oX 47808.xml

360截图1653070991122136

Tridium Niagara Fox

nmap --script fox-info.nse -p 1911 <host>
超速度扫描:
nmap -Pn -n --min-hostgroup 1024 --min-parallelism 3000 -p 1911 --script fox-info.nse -iL 1911.txt -oX 1911.xml

360截图1667101691102117

Crimson V3

nmap --script cr3-fingerprint -p 789 <host>
nmap -Pn -n --min-hostgroup 1024 --min-parallelism 3000 -p 789 --script cr3-fingerprint.nse -iL 789.txt -oX 789.xml

360截图1655042297118118

OMRON FINS

nmap --script omron-info -sU -p 9600 <host>
nmap --script ormontcp-info -p 9600 <host>
nmap --script ormonudp-info -sU -p 9600 <host>
nmap -Pn -n --min-hostgroup 1024 --min-parallelism 3000 -sU -p 9600 --script ormonudp-info.nse -iL 9600.txt -oX 9600.xml

360截图1660082991103115

PCWorx

nmap --script pcworx-info -p 1962 <host>
nmap -Pn -n --min-hostgroup 1024 --min-parallelism 3000 -p 1962 --script pcworx-info.nse -iL 1962.txt -oX 1962.xml

360截图16511001152371

ProConOs

nmap --script proconos-info -p 20547 <host>

360截图16240201192730

MELSEC-Q

nmap -script melsecq-discover -sT -p 5007 <host>
nmap -script melsecq-discover-udp.nse -sU -p 5006 <host>

360截图16460518444147

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].