zoukankan      html  css  js  c++  java
  • 10.Windows远程管理工具RAT----Metasploit基础----Metasploit模块----fsociety工具包

    Windows远程管理工具RAT

    QuasarRAT

    github.com/quasar/QuasarRAT

    命令环境 MINGW64 (GCC编译器)

    mkdir RAT
    cd RAT
    git clone  下载URL
    配置好一切以后在bin release client路径下
    

    Metasploit基础

    有图形化界面,有命令行,有浏览器界面
    parrot发行版

    启动数据库让Metasploit可以更快的搜索和运行

    service postgresql start
    msfconsole
    help
    use exploit/windows/browser/adobe_flash_avm2
    show
    show options
    show payloads
    show targets
    show info
    exit
    
    msfconsole
    search type:exploit platform:windows flash
    use 复制粘贴
    show options
    set SRVPORT 80
    set SRVHOST IP地址
    show options
    exploit
    

    Metasploit模块

    msfconsole
    
    打开新终端
    cd /usr/share/metasploit-framework/
    ls
    cd modules
    ls
    cd exploits
    ls
    ls -al
    cd windows
    ls
    cd ..
    cd ..
    ls
    cd payloads
    ls
    cd ..
    cd ..
    ls -al
    cd modules
    ls -al
    cd auxiliary/
    ls
    cd ..
    ls
    cd encoders
    ls
    cd php
    ls
    cd ..
    ls
    cd ..
    ls
    cd nops
    ls
    cd ..
    ls -al
    cd post
    ls
    cd windows
    ls
    cd gather
    ls
    cd ..
    cd ..
    cd ..
    ls
    

    fsociety工具包

    渗透测试框架
    fsociety Hacking Tools Pack - A Penetration Testing Framework
    github.com/Manisso/fsociety

    cd /opt
    clear
    ls
    git clone URL地址
    ls
    cd fsociety/
    ls
    chmod +x install.sh
    ls
    ./install.sh
    cd
    fsociety
    
  • 相关阅读:
    Python 编码格式的使用
    解决cmd 运行python socket怎么终止运行
    解决win10子系统Ubuntu新装的mysql 不能root登陆方法
    浏览器中网址访问过程详解
    POJ 2502 最短路
    HDU 2859
    POJ 3186
    POJ 1661 暴力dp
    POJ 1015 陪审团问题
    CodeForces 1058E
  • 原文地址:https://www.cnblogs.com/sec875/p/11335600.html
Copyright © 2011-2022 走看看