随笔分类 - 技术 / 操作系统 / linux cli
摘要:#firewall-cmd options | 参数 | 参数说明 | | | | | --state | 显示防火墙的状态 | | --list-all | 查看防火墙规则(只显示/etc/firewalld/zones/public.xml中防火墙策略) | | --list-all-zones
阅读全文
摘要:sed ##descriptions 对文件进行增、删、改、查 替换 语法:sed 选项 '==s/搜索的内容/替换的内容/动作==' 需要处理的文件 其中,==s==表示search搜索;斜杠==/==表示分隔符,可以自己定义;动作一般是打印==p==和全局替换==g== options | 参数
阅读全文
摘要:hping3 description hping3 is a network tool able to send custom TCP/IP packets,you can: Test firewall rules Advanced port scanning Test net performanc
阅读全文
摘要:tcpdump descriptions tcpdump是linux平台的一个抓包工具,和tshark一样,当然也可以抓ip、arp、icmp、udp流量。 ##options 常用选型 | 参数 | 参数说明 | | | | | -i | +接口,抓某个接口的数据包,-i any 抓取所有端口的数
阅读全文
摘要:tar description tar 一个归档程序,可以对文件、目录进行归档,和压缩不一样的是,归档后文件变大。一般操作是对文件先归档后压缩,而tar命令同时集成压缩的命令,可以实现对归档文件进行压缩。 options | 参数 | 参数说明 | | | | | -c | create a new
阅读全文
摘要:ncat(nc) description nc是主要是一个网络安全工具,功能很多,下面列举两个 server、client之间传输文件(相应端口要在防火墙上放通) 网络安全领域拿shell(正向shell,反向shell) options | 参数 | 参数说明 | | | | | -l | lis
阅读全文
摘要:nmap desciption Nmap (“Network Mapper”) is an open source tool for network exploration and security auditing. It was designed to rapidly scan large ne
阅读全文
摘要:find description 通过==文件(名称)、属性、时间、所有者==查找文件的程序 options | 参数 | 参数说明 | | | | | -name | 搜索文件名,支持==正则== | | -i | 忽略大小写搜索,默认对大小写敏感 | | -size | 大小写搜索,大于(+)、
阅读全文