Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
github.com/CarsonSlovoka/clipboard-img-saver
保存剪貼簿的圖片
此外此專案可以幫助想學習用go搭配C,使用windows api的人來當作參考
Clipboard.Image.saver_windows_amd64_v0.1.0.zip
cwebp.exe
, 可從libwebp-1.4.0-windows-x64.zip取得請安裝gcc,且確定系統路徑可以抓到
# 透過chocolate取得gcc.exe
choco install mingw -y
# 查看gcc路徑位置
(gcm gcc).Source
# C:\ProgramData\chocolatey\bin\gcc.exe
安裝
go install github.com/CarsonSlovoka/clipboard-img-saver@latest
也可以自己編譯
git clone https://github.com/CarsonSlovoka/clipboard-img-saver.git
cd clipboard-img-saver
go build -o clipboard_image_saver.exe .
請確保CGO_ENABLED
是開啟的
# 查看 CGO_ENABLED 設定
go env CGO_ENABLED
# 1
CGO_ENABLED=1
其實是go預設的設定,因此只需要安裝好gcc即可
# go build -o clipboard_image_saver.exe .
# 你可以考慮換個比較簡單的執行檔名稱
# go build -o cis.exe .
cis.exe -help # 查看幫助
cis.exe -q 20 # 以webp輸出, quality 20, (預設75)
cis.exe -o "C:\myOutputDir" # 指定輸出目錄, 預設為當前目錄
cis.exe -format .bmp # 輸出成bmp格式
cis.exe -dialog=1 # 此為預設,輸出的時候可以跳出保存的視窗(可輸出自不同的目錄)
cis.exe -dialog=0 # 使用scan的方式,於console輸入輸出檔名
你可以從這些連結來了解webp
你可以使用裡面的include, lib來鑲嵌,但是他是用MSVC(Microsoft Visual C++)去編譯,所以如果你用的是MinGW(Minimalist GNU for Windows)會編譯失敗
也可以善用裡面bin目錄提供的執行檔即可
libwebp-1.4.0-windows-x64/bin/cwebp.exe
cwebp input.png -q 80 -o output.webp # q為輸出質量, 預設75範圍從[0~100]
MinGW(Minimalist GNU for Windows)和 GCC(GNU Compiler Collection)有密切的關係,
因為 MinGW 是一個 Windows 平台上的開發環境,它主要用於提供一組適用於 Windows 的工具,其中包含了 GCC 編譯器
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.