Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dalconan/NaviPassRead
Read Navicat 12 Password
https://github.com/dalconan/NaviPassRead
Last synced: about 2 months ago
JSON representation
Read Navicat 12 Password
- Host: GitHub
- URL: https://github.com/dalconan/NaviPassRead
- Owner: dalconan
- Created: 2020-06-04T08:21:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-07T03:26:51.000Z (over 4 years ago)
- Last Synced: 2024-08-05T17:25:17.034Z (5 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 20
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
- awesome-hacking-lists - dalconan/NaviPassRead - Read Navicat 12 Password (Go)
README
# Navicat 連線密碼查尋
將連線記錄中的連線密碼解碼# 適用版本
Navicat 12# 使用方式
先啟動Navicat,並將連線設定匯出成*.ncx檔案(Navicat預設檔案),
執行命令
```
NaviPassRead -f [檔案路徑]
```
檔案路徑預設為 ./navi.ncx# 輸出範例
```
[
{
"ConnType":"MYSQL",
"ConnectionName":"music",
"Host":"localhost",
"Password":"55688",
"Port":"3306",
"SSH_Host":"123.45.67.89",
"SSH_UserName":"bob",
"SSH_Password":"bobbobobo",
"ServiceProvider":"Default",
"UserName":"bob"
},
{
"ConnType":"MYSQL",
"ConnectionName":"GCP",
"Host":"88.77.66.55",
"Password":"password123",
"Port":"3306",
"SSH_Host":"",
"SSH_UserName":"",
"SSH_Password":"",
"ServiceProvider":"GoogleCloud",
"UserName":"alice"
}
]```