MThings Tutorial Series 19

MThings Tutorial Series 19

MThings is a host software based on the MODBUS protocol suite, designed for field operation and maintenance personnel in industrial control.MThings supports one-click parsing of MODBUS read and write messages (response messages for reading data and request messages for writing data): it automatically maps the BIT and register data from the raw message to the … Read more

Post-Penetration on Linux: Various Methods for Credential Collection (Part 1)

Post-Penetration on Linux: Various Methods for Credential Collection (Part 1)

tcpdump Use tcpdump to capture traffic from all network interfaces in real-time, filtering and saving when sensitive information is detected in the traffic. tcpdump -i any -s 0 -A -n -l |egrep -i "Host:|Authorization:|password:|password=" • -i any: Listen to traffic on all network interfaces; • -s 0: Capture full packets (no truncation); • -A: Display … Read more

Packet Capture of IPTV Set-Top Box (Part 4) – Using OpenWrt + Wireshark to Capture IPTV Set-Top Box Data Packets

Packet Capture of IPTV Set-Top Box (Part 4) - Using OpenWrt + Wireshark to Capture IPTV Set-Top Box Data Packets

📺 IntroductionOpenWRT is a highly customizable Linux operating system designed specifically for embedded devices, especially smart routers and network devices.You can think of it as the “Android system” on your home router. Just like Android phones allow you to install various apps to achieve endless functionalities, OpenWRT also allows you to install various software packages … Read more