上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页
摘要: 主机发现 sudo nmap -sT --min-rate 10000 -p- xx.xx.xx.xx -oA nmapscan/ports 只有一个端口开放 sudo nmap -sT -sV -sC -O -p xx.xxx.xx.xx -oA nmapscan/detail sudo nmap 阅读全文
posted @ 2023-05-09 12:22 lisenMiller 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 主机发现 sudo nmap -sT --min-rate 10000 -p- xx.xx.xx.xx -oA nmapscan/ports sudo nmap -sT -sC -sV -O -p22,80 xx.xx.xx.xx -oA nmapscan/detail sudo nmap -sU 阅读全文
posted @ 2023-05-09 10:49 lisenMiller 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 指针 1.基本数据类型和内存 package main import ( "fmt" } func main(){ var s1 int =12 //打印地址 fmt.Println(&s1) } 2.指针变量 package main import ( "fmt" } func main(){ v 阅读全文
posted @ 2023-05-08 21:57 lisenMiller 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 变量 通过修改settings里的compact folder来让目录的关系展开而不是合并起来 1.变量声明 var age int age =18 fmt.println("age= ",age)//声明和复制合成var age2 int=19fmt.Println("age2 = ",age2) 阅读全文
posted @ 2023-05-08 21:05 lisenMiller 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 主机发现 sudo nmap -sT --min-rate 10000 -p- xx.xx.xx.xx -oA nmapscan/ports sudo nmap -sT -sC -sV -O -p xx.xx.xx.xx -oA nmapscan/detail sudo nmap -sU --top 阅读全文
posted @ 2023-05-08 11:55 lisenMiller 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 主机发现 sudo nmap -sT --min-rate 10000 -p- xx.xx.xx.xx -oA nmapscan/ports sudo nmap -sT -sC -sV -O -p xx.xx.xx.xx -oA nmapscan/detail 发现nfs,尝试通过showmount 阅读全文
posted @ 2023-05-07 18:12 lisenMiller 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 主机发现 sudo nmap -sT --min-rate 10000 -p- xx.xx.xx.xx -oA nmapscan/ports sudo nmap -sT -sV -sC -O -p22,80 xx.xx.xx.xx -oA nmapscan/detail sudo nmap -sU 阅读全文
posted @ 2023-05-07 17:28 lisenMiller 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 第一段代码 package main //声明文件所在的包,每个go文件必须有归属的包 import "fmpt" //引入程序需要用的包,为了使用包下的函数,比如println func main(){ fmt.Println("Hello golang!") //控制台打印输出一句话,双引号内会 阅读全文
posted @ 2023-05-06 21:57 lisenMiller 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 主机发现 sudo nmap -sT --min-rate 10000 -p- xx.x.xx.x -oA nmapscan/ports 要提取出所有的端口,进行字符操作 cat nmapscan/ports | grep open | awk -F'/' '{print $1}' | tr '\n 阅读全文
posted @ 2023-05-04 20:42 lisenMiller 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 主机发现 sudo nmap -sT --min-rate 10000 -p- xx.xx.xx.xx -oA nmapscan/ports sudo nmap -sT -sC -sV -O -p xx.xx.xx.xx -oA nmapscan/detail sudo nmap -sU --top 阅读全文
posted @ 2023-05-04 16:38 lisenMiller 阅读(17) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页