跳到主內容
進階搜尋
搜尋字串
內容類型

精確符合
標籤搜尋
日期選項
在此之後更新
在此之前更新
在此之後建立
在此之前建立

搜尋結果

找到了 570 個結果

【web】【linux】【shell】curl

【Treeman】OSCP 【OSCP】Tools

  curl #`--path-as-is` 是在使用 cURL 命令時的一個特殊參數, # 它指示 cURL 將 URL 中的路徑部分視為原樣處理,而不進行百分比編碼(Percent-E...

kafka connect

【Treeman】總覽 Kafka

  架設Kafka與Kafka Connect讓訊息自動同步至MongoDB connect 說明 https://docs.confluent.io/platform/current/c...

【port forwarding】socat

【Treeman】OSCP 【OSCP】Tools

們將啟動一個詳細模式的(-ddd) Socat 進程。它將在 TCP 埠 2345 上監聽(TCP-LISTEN:2345),在收到連接時分叉為一個新的子進程(fork),而不是在單個連接後死亡...

【列舉】【shell】getcap

【Treeman】OSCP 【OSCP】Tools

https://feichashao.com/capabilities_basic/ # 尋找設置uid檔案 joe@debian-privesc:~$ /usr/sbin/getcap -...

【破解】【SSH】Hydra

【Treeman】OSCP 【OSCP】Tools

  # hydra -l {user} -P {password字典} {ip} -t 4 ssh -V kali@kali:~$ hydra -l eve -P wordlist 192...

【密碼】【字典】crunch

【Treeman】OSCP 【OSCP】Tools

字典生成 # 最小和最大長度設置為 6 個字符 # 使用 -t 參數指定模式,然後將前三個字符硬編碼為 "Lab",後跟三位數字。 kali@kali:~$ crunch 6 6 -t L...

【列舉】【提權】【Linux】unix-privesc-check

【Treeman】OSCP 【OSCP】Tools

/usr/bin/unix-privesc-check kali@kali:~$ unix-privesc-check unix-privesc-check v1.4 ( http://pe...

【總覽】Tools

【Treeman】OSCP

常用網站 提權 g0tmi1k(Linux 提權) gtgobins (提權查詢) echo 'exec "/bin/bash"' > app.rb 編碼 CyberCh...

【Linux】【列舉】常用命令

【Treeman】OSCP 【OSCP】課程筆記

# 尋找當前用戶可寫目錄 oe@debian-privesc:~$ find / -writable -type d 2>/dev/null .. /home/joe /home/joe...

【shell】【impacket】ntlmrelayx

【Treeman】OSCP 【OSCP】Tools

  # --no-http-server來停用HTTP伺服器,因為我們正在中繼SMB連接 # -smb2support添加對SMB2.3的支援。 # -t將目標設定為FILES02。 #...

常用目錄/檔案

【Treeman】OSCP 【OSCP】課程筆記

除了 rwx 文件權限外,還有兩個與可執行文件相關的額外特殊權利:setuid 和 setgid。這些用字母 "s" 來表示。 如果這兩個權限被設置,權限中將出現大寫或小寫的 "s"。這允許當...

【SMB】【Net-NTLMv2雜湊監聽】Responder

【Treeman】OSCP 【OSCP】Tools

  現在讓我們進行這個過程。首先,我們需要運行ip a以檢索所有接口的列表。然後,我們將以sudo運行Responder(在Kali上已經預安裝),以啟用處理各種協議的特權原始套接字操作所需的...

【terminal】【impacket】psexec

【Treeman】OSCP 【OSCP】Tools

要執行 psexec,我們可以輸入 impacket-psexec 並帶有兩個參數。第一個參數是 -hashes,它允許我們使用 NTLM 雜湊來對目標進行身份驗證。格式為 "LMHash:NT...

【密碼】【破解】hashcat

【Treeman】OSCP 【OSCP】Tools

https://hashcat.net/hashcat/ hashCode 範例 https://hashcat.net/wiki/doku.php?id=example_hashes # ...

【Kotlin】集合 Iterable/Collection/List/Set/Map

【Treeman】Java相關 Kotlin

出處 : https://blog.csdn.net/vitaviva/article/details/107587134 建立集合  不可變更集合 immutable import ...

【反向 shell】

【Treeman】OSCP 【OSCP】課程筆記

https://gchq.github.io/CyberChef https://www.online-python.com/ Online - Reverse Shell Generato...

【SQL_injection】github

【Treeman】OSCP 【OSCP】Tools

https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/SQL%20Injection/PostgreSQL%20Inje...

【sql】impacket-mssqlclient

【Treeman】OSCP 【OSCP】Tools

impacket-mssqlclient Administrator:Lab123@192.168.50.18 -windows-auth

【php】php攻擊手法

【Treeman】OSCP 【OSCP】課程筆記

php 漏洞網頁 index.php <a href="index.php?page=admin.php"><p style="text-align:center">Admin</p></a...

【port forwarding】rinetd

【Treeman】OSCP 【OSCP】Tools

https://github.com/samhocevar/rinetd rinetd 是一個簡單的 TCP 端口轉發工具,它可以將進入的 TCP 連接重定向到指定的目標 IP 地址和端口。以...