最近更新的頁面
相關連結
【尚硅谷】2022版Kafka3.x教程(从入门到调优,深入全面) https://www.youtube.com/playlist?list=PLmOn9nNkQxJHTVxt3wxW...
producer_comsumer範例
gradle // kafka dependency // https://mvnrepository.com/artifact/org.apache.kafka/kafka-clien...
【Redis】安裝
https://redis.io/docs/install/install-redis/install-redis-from-source/ # download wget https://...
kafka connect
架設Kafka與Kafka Connect讓訊息自動同步至MongoDB connect 說明 https://docs.confluent.io/platform/current/c...
【Elasticsearch】容量100%
# 替換 <your_elasticsearch_host> 和 <index_name_pattern> 為實際的 Elasticsearch 主機和索引名稱模式 # 列出所有索引 c...
【PortScan】netcat
基本上,一個主機向目的地埠口的伺服器發送TCP SYN數據包。如果目的地埠口是開放的,伺服器將以SYN-ACK數據包回應,並且客戶端主機將發送ACK數據包以完成握手。如果握手成功完成,該埠口被認...
【Linux】【列舉】常用命令
# 尋找當前用戶可寫目錄 oe@debian-privesc:~$ find / -writable -type d 2>/dev/null .. /home/joe /home/joe...
常用目錄/檔案
除了 rwx 文件權限外,還有兩個與可執行文件相關的額外特殊權利:setuid 和 setgid。這些用字母 "s" 來表示。 如果這兩個權限被設置,權限中將出現大寫或小寫的 "s"。這允許當...
【shell】find
# 找尋可寫的資料夾 find / -writable -type d 2>/dev/null # 尋找當前用戶可寫目錄 oe@debian-privesc:~$ find / -writ...
【Terminal】powercat
就是NetCat 的Powershell 版本 https://github.com/besimorhino/powercat 下載: https://github.com/besimor...
【SpringBoot】Redis
出處 https://www.cnblogs.com/rb2010/p/12905470.html pom.xml < dependency > < groupId > org....
【shell】【impacket】ntlmrelayx
# --no-http-server來停用HTTP伺服器,因為我們正在中繼SMB連接 # -smb2support添加對SMB2.3的支援。 # -t將目標設定為FILES02。 #...
【SMB】【Net-NTLMv2雜湊監聽】Responder
現在讓我們進行這個過程。首先,我們需要運行ip a以檢索所有接口的列表。然後,我們將以sudo運行Responder(在Kali上已經預安裝),以啟用處理各種協議的特權原始套接字操作所需的...
【terminal】【impacket】psexec
要執行 psexec,我們可以輸入 impacket-psexec 並帶有兩個參數。第一個參數是 -hashes,它允許我們使用 NTLM 雜湊來對目標進行身份驗證。格式為 "LMHash:NT...
【SMB】smbclient
# //192.168.203.13/files => share folder # -c command smbclient -N //192.168.203.13/files -...
【SQL_injection】github
https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/SQL%20Injection/PostgreSQL%20Inje...
常用指令
使用mongosh 連入db srou@momo-full-devdeiMac ~ % mongosh Current Mongosh Log ID: 63de0489619b4a08812...
【sql】impacket-mssqlclient
impacket-mssqlclient Administrator:Lab123@192.168.50.18 -windows-auth
【php】php攻擊手法
php 漏洞網頁 index.php <a href="index.php?page=admin.php"><p style="text-align:center">Admin</p></a...
【web】【linux】【shell】curl
curl #`--path-as-is` 是在使用 cURL 命令時的一個特殊參數, # 它指示 cURL 將 URL 中的路徑部分視為原樣處理,而不進行百分比編碼(Percent-E...