Network Services
8admin 发布于 2020-06-22
Contents 1[Task 1] Get Connected 2[Task 2] Understanding SMB 2.1#2.1 – What does SMB stand for? 2.2#2.2 – What type of protocol ...
阅读(3807)评论(0)赞 (1)
admin 发布于 2020-06-22
Contents 1[Task 1] Get Connected 2[Task 2] Understanding SMB 2.1#2.1 – What does SMB stand for? 2.2#2.2 – What type of protocol ...
阅读(3807)评论(0)赞 (1)
admin 发布于 2020-06-20
The traceroute command maps the journey that a packet of information undertakes from its source to its destination. One use for tr...
阅读(2317)评论(0)赞 (2)
admin 发布于 2020-06-20
How to use the Linux mtr (My Traceroute) command What is the Mtr command? Mtr(my traceroute) is a command line network diagnostic tool that ...
阅读(2475)评论(0)赞 (1)
admin 发布于 2020-06-20
Ping or Packet Internet Groper is a network administration utility used to check the connectivity status between a source and a destination ...
阅读(2798)评论(0)赞 (1)
admin 发布于 2020-06-18
用aptitude 工具可以两步搞定: sudo apt-get install aptitude sudo aptitude install python-dev——...
阅读(3052)评论(0)赞 (1)
admin 发布于 2020-06-13
开启Web服务1.基本方式Python中自带了简单的服务器程序,能较容易地打开服务。在python3中命令为# python3 -m http.server,或python -m http.server 80 在python2中命令为# python -m SimpleHTTPS...
阅读(4452)评论(0)赞 (2)
admin 发布于 2020-06-09
下载 在官方网站下载对应的 Nessus 版本:http://www.tenable.com/products/nessus/select-your-operating-system 这里选择 Kali 对应的版本,因为kali安装时选择的debian,这里就选择debian 根...
阅读(1846)评论(0)赞 (1)
admin 发布于 2020-06-04
先说一下什么是shell Shell是一个命令解释器,是介于操作系统内核与用户之间的一个绝缘层。准确地说,它也是能力很强的计算机语言,被称为解释性语言或脚本语言。它可以通过将系统调用、公共程序、工具和编译过的二进制程序”粘合“在一起来建立应用,这是大多数脚本语言的共同特征,所以有...
阅读(1953)评论(0)赞 (2)
admin 发布于 2020-06-03
last命令查看全部登录信息 1、查看当前登录用户信息who命令:who缺省输出包括用户名、终端类型、登陆日期以及远程主机。who /var/log/wtmp可以查看自从wtmp文件创建以来的每一次登陆情况(1)-b:查看系统最近一次启动时间(2)-H:打印每列的标题 users...
阅读(1482)评论(0)赞 (1)
admin 发布于 2020-06-02
【1】notepad如何删除某个字符开头的行 在查找目标中输入“^”代表行首,“$”代表行末,下方的查找模式要改成“正则表达式”。 记录 ^#.*$ 删除以#开始的行 选择正则表达式 全部替换 执行或^[#;].* 以#和;开头的行 删除 行尾空格和空白行 查找目标...
阅读(9351)评论(0)赞 (1)