一些常用工具及其相关介绍[不定期更新]


抓包工具:

未分类:

  • dig
  • host
  • whois
  • nslookup
  • ping
  • tracert
  • mtr
  • curl
  • wget
  • SmartSniff
  • curport

 

,

《“一些常用工具及其相关介绍[不定期更新]”》 有 13 条评论

  1. From IoT Pentesting to IoT Security
    https://github.com/V33RU/IoTSecurity101
    `
    物联网渗透测试101 && 物联网安全101

    方法论:
    网络
    Web(前端、后端和Web服务)
    手机App(Android & iOS)
    无线连接
    固件测试(硬件或物联网设备操作系统)
    硬件级Approach
    `

  2. 物联网安全学习笔记之二——小试牛刀
    https://www.anquanke.com/post/id/166821
    `
    1 安装工具
    1.1 binwalk
    1.2 buildroot
    1.3 qemu
    1.4 IDA

    注意:
    2 安装测试环境
    3 发起攻击!
    3.1 搞清楚固件架构
    3.2 编译代码
    3.3 审计代码
    3.4 运行程序
    3.5 调试代码
    3.6 编写溢出字符串
    `

  3. Linux: Respuesta PING habilitar o deshabilitar
    https://www.sysadmit.com/2016/03/linux-respuesta-ping-habilitar-o-deshabilitar.html

    Getting Linux to ignore pings
    https://www.networkworld.com/article/3228127/getting-linux-to-ignore-pings.html

    2 Ways to Disable or Block Ping in Linux
    https://www.howtouselinux.com/post/disable-ping-in-linux
    `
    1. What is ICMP?
    2. Understanding Ping
    3. Understanding ICMP Type
    4. Block PING requests via kernel parameters
    5. Blocking PING requests with iptables
    `

    How to block or unblock PING requests in Ubuntu
    https://vitux.com/ubuntu-block-ping-icmp/
    `
    Packet Internet Groper (PING) – PING is used to check-out the status of the connection between any source and any destination. Users can know the time taken by the packets to receive a response.

    # 临时禁止/解禁
    $ echo 1 > /proc/sys/net/ipv4/icmp_echo_ignore_all
    $ echo 0 > /proc/sys/net/ipv4/icmp_echo_ignore_all

    # 使禁止/解禁在重启后依然可以生效
    $ sudo sysctl -w net.ipv4.icmp_echo_ignore_all=1
    $ sudo sysctl -w net.ipv4.icmp_echo_ignore_all=0

    $ sudo nano /etc/sysctl.conf
    # net.ipv4.icmp_echo_ignore_all = 1
    $ sudo sysctl -p

    # 使用iptables进行禁止/解禁操作
    $ sudo iptables -A INPUT -p icmp –icmp-type echo-request -j REJECT
    $ sudo iptables -A INPUT -p icmp –icmp-type echo-request -j DROP
    $ sudo iptables -A OUTPUT -p icmp –icmp-type echo-reply -j DROP

    $ sudo iptables -D INPUT -p icmp –icmp-type echo-request -j REJECT
    `

回复 a-z 取消回复

您的电子邮箱地址不会被公开。 必填项已用*标注