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

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

搜尋結果

找到了 668 個結果

【OSCP】課程筆記

【Treeman】OSCP

【OSCP】Tools

【Treeman】OSCP

【jq】 linux json 查詢工具(查詢篇)

【Treeman】Linux shell

data { "firstName": "John", "lastName": "Smith", "age": 25, "address": { "streetAddress": "21 2nd Street", "city": "New York", "state": "NY", "postalCode": "10021" }, "phoneNumber": [ { "type": "home", ...

【jq】 linux json 查詢工具(修改篇)

【Treeman】Linux shell

修改前節點資料 [root@jylee-stres-stest250 tmp]# echo '{"a":{"b":0, "c":1}}' | jq . { "a": { "b": 0, "c": 1 } } 新增 / 修改 : setpath([路徑];值) [root@jylee-stres-stest250 tmp]# echo '{"a":{"b":0, "c":1}}' | jq 'setpath(["a","b"];1)' #修改 a . b ; 0 => 1 ...

資料收集

OSCP小抄

常用函數 empty isset isnull 比較

【Treeman】總覽 PHP

反向shell

OSCP小抄

require和include的不同

【Treeman】總覽 PHP

include('func.php'); include 'func.php'; require('lib.php'); require('lib.php'); include_once 'mydb.php'; include_once('mydb.php'); require_once 'copyright.php'; require_once('copyright.php'); *require和include的不同 require 適合用來引...

未完成程式碼

【Treeman】Kotlin 相關

名詞解釋

【Treeman】OSCP

【Python】python讀取json

【Treeman】總覽 Python

在 Python 中,JSON 是一種常用的資料格式,用來儲存和交換資料。Python 提供內建的 json 模組來讀取與處理 JSON 資料,支援從檔案或字串中解析 JSON,以及將資料轉換成 JSON 格式輸出。 以下是 Python 中讀取 JSON 的相關用法: 1. Python 的 json 模組介紹 Python 的 json 模組提供以下幾個主要功能: json.load():從檔案中讀取 JSON 資料。 json.loads():從字串中解析 JSON 資料。 json.dump()...

tip

【Treeman】Kotlin 相關

【Python】解析Python模組(Module)和套件(Package)的概念(轉)

【Treeman】總覽 Python

當我們在開發大型應用程式時,如果沒有適當的組織程式碼,除了會降低開發的效率外,也不易於維護,所以模組(Module)化就顯得相當的重要,讓程式碼能夠透過引用的方式來重複使用,提升重用性(Reusable)。 但是隨著專案模組(Module)的增加,將難以管理及問題的追蹤,這時候就能將模組(Module)打包成套件(Package),利用其階層式的結構來彈性規劃模組(Module)。 本篇文章就帶大家瞭解Python模組(Module)及套件(Package)的重要觀念,包含: 什麼是模組(Module)模組引...

Kotlin

【Treeman】Java相關

【Git】TorotoiseGit 占用資源解決方法

【Treeman】Git相關 【Git】語法觀念

  【原因】 TorotoiseGit 會掃描硬碟內有git 版控資料夾的的異動,並產生相對應的圖示,有時會造成主機磁碟讀寫過高 【解決】限縮掃描範圍 任一個資料夾按右鍵->【TortoiseGit】->【setting】 Exclude paths: 將本機的每一個磁碟加入 Include paths: 將有用到git的目錄加入

【crontab】排程相關

【Treeman】Linux

使用nginx 設定排程 sudo su -c "crontab -e" nginx -s /bin/bash  

PowerShell

【Treeman】總覽

Day 1

【Treeman】總覽 Go

go package manager go mod init go_demo func 首字大寫 publicfunc 首字小寫 private