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
    
  • 相关阅读:
    HDU 5492 Find a path
    codeforce gym 100548H The Problem to Make You Happy
    Topcoder SRM 144 Lottery
    codeforce 165E Compatible Numbers
    codeforce gym 100307H Hack Protection
    区间DP总结
    UESTC 1321 柱爷的恋爱 (区间DP)
    HDU 4283 You Are the One (区间DP)
    HDU 2476 String painter (区间DP)
    UESTC 426 Food Delivery (区间DP)
  • 原文地址:https://www.cnblogs.com/sec875/p/11335600.html
Copyright © 2011-2022 走看看