收集一些工具及用法 🧐

图片转换:ImageMagick

官网:https://imagemagick.org/

1
2
3
4
5
6
# macOS 需要安装 Ghostscript fonts
$ brew install ghostscript
$ brew install imagemagick
# Windows 两条命令二选一,需要安装对应的包管理器 
$ scoop install imagemagick
$ choco install imagemagick

可以转换所有常用图片格式,例如 PNG、JPG、ICO、SVG。命令格式:magick 待转换图片路径 输出图片路径.后缀名

1
2
3
4
5
6
7
$ magick A.png A.jpg

#将剪贴板中的图片输出为 B.jpg
$ magick clipboard: B.jpg #执行此命令请确认剪贴板首位是图片

#-resize 表示缩放,-quality 表示输出质量,下面这行命令将 A.jpg 缩小 50%,并以 50% 的质量输出
$ magick A.jpg -resize 50% -quality 50 B.jpg

音频、视频:FFmpeg

官网:https://ffmpeg.org/

音视频转换,如:

1
2
3
 $ ffmpeg -i A.mkv A.mp4

 $ ffmpeg -i .\Revenge.webm demo.mp3 #将 Revenge.webm 这个 MV 转换成了 mp3 歌曲

文本:Pandoc

官网:https://pandoc.org/

专门转换文本格式的命令行工具,支持 txt、docx、html、pdf、md、pptx。

命令格式为 pandoc 待转换文件 -o 输出文件.后缀名

1
2
3
4
5
 #将 test.md 转换成了 word 文档,又把 word 文档转换成了网页文件
 $ pandoc test.md -o test.docx $ pandoc test.docx -o test.html

 #从网页转换
 $ pandoc https://dds2333.github.io/post/2020/04/20/ctf_collection/ -o test.md

系统工具:Dism++

开源 Windows 实用工具,系统补丁更新工具,系统精简工具,系统优化工具

官网:https://www.chuyu.me/zh-Hans/index.html

Github:https://github.com/Chuyu-Team/Dism-Multi-language

Windows File Recovery,微软数据删除恢复工具

默认模式示例

  • 将C盘指定文件恢复到E盘:

    1
    
    winfr C: E: /n \Users\<username>\Documents\QuarterlyStatement.docx
  • 将JPEG和png照片从“图片”文件夹恢复到E盘:

    1
    
    winfr C: E: /n \Users\<username>\Pictures\*.JPEG /n \Users\<username>\Pictures\*.PNG
  • 或者是将C盘中的Documents文件夹恢复到E盘:

    1
    
    winfr C: E: /n \Users\<username>\Documents\

注意:不要忘记末尾的“\”

分段模式示例:

  • 将PDF和Word文件从C盘恢复到E盘:

    1
    
    winfr C: E: /r /n *.pdf /n *.docx
  • 使用通配符恢复文件名中包含字符串“ invoice”的任何文件:

    1
    
    winfr C: E: /r /n *invoice*

签名模式示例

  • 将C盘的JPEG(jpg,jpeg,jpe,jif,jfif,jfi)和PNG照片恢复到E盘:

    1
    
    winfr C: E: /x /y:JPEG,PNG
  • 将C盘中的ZIP文件(zip,docx,xlsx,ptpx等)恢复到E盘:

    1
    
    winfr C: E:\RecoveryTest /x /y:ZIP

浏览器扩展

OpenSSL

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#生成私钥
openssl genrsa -aes256 -out private.pem 2048
#查看密钥
openssl rsa -in private.pem -text
#从私钥提取公钥
openssl rsa -in private.pem -pubout -out public.pem
#公钥加密
openssl rsautl -encrypt -in plain.text -inkey public.pem -out encrypt.text
#私钥解密
openssl rsautl -decrypt -in encrypt.text -inkey private.pem -out replain.text
#私钥签名
openssl rsautl -sign -in plain.text -inkey private.pem -out signed.text
#公钥验签
openssl rsautl -verify -in signed.text -pubin -inkey public.pem -out verify.text
#查看证书
openssl x509 -in cert.pem -text –noout
openssl x509 -in cert.cer -text –noout
openssl x509 -in cert.crt -text –noout
openssl x509 -in certificate.der -inform der -text -noout
#PEM 转 DER
openssl x509 -outform der -in certificate.pem -out certificate.der
#DER 转 PEM
openssl x509 -inform der -in certificate.cer -out certificate.pem
#摘要
openssl dgst [算法名称] [需要计算摘要的文件]

WPF 开源控件库

官网:http://materialdesigninxaml.net/

Github:https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/

ADB 卸载应用

1
2
3
4
5
6
7
手机打开 “开发者模式”->“usb debug”
手机连接电脑,adb devices 查看设备(配合 adb kill-server、adb start-server)
adb shell 连接
pm list packages 列出所有包名
pm list packages | grep "camera" 查找
or 先将 app 打开,dumpsys window | grep mCurrentFocus 查看当前界面信息以获取包名
pm uninstall -k --user 0 packageName 卸载(-k 表示保存数据,不保存可去掉 -k,--user 0 表示默认用户)

密码学:编码与解码

CyberChef

项目地址:https://github.com/gchq/CyberChef

Chepy (命令行版的 Cyberchef)

项目地址:https://github.com/securisec/chepy

Ciphey

项目地址:https://github.com/Ciphey/Ciphey

开源远程管理工具

electerm

项目地址:https://github.com/electerm/electerm

Windterm

项目地址:https://github.com/kingToolbox/WindTerm

mRemoteNG

项目地址:https://github.com/mRemoteNG/mRemoteNG

开源数据库管理工具

Beekeeper Studio

项目地址:https://github.com/beekeeper-studio/beekeeper-studio

SQLECTRON-GUI

项目地址:https://github.com/sqlectron/sqlectron-gui

开源编辑器

VSCodium

项目地址:https://github.com/VSCodium/vscodium

Atom

项目地址:https://github.com/atom/atom

Notepad3

项目地址:https://github.com/rizonesoft/Notepad3

开源压缩/解压

7z

官网:https://www.7-zip.org/

PeaZip

官网:https://peazip.github.io/

开源流程图制作工具

Drawio

官网:https://www.diagrams.net/ , Github

开源思维导图工具

Freeplane

官网:https://www.freeplane.org/

百度脑图离线版

Github:https://github.com/NaoTu/DesktopNaotu

开源视频直播/录制

OBS Studio

官网:https://obsproject.com/Github

ScreenToGif

项目地址:https://github.com/NickeManarin/ScreenToGif

LICEcap

官网:https://www.cockos.com/licecap/

另外 Captura 作者不再维护

开源音视频编辑/转换

视频编辑

Shotcut

官网:https://shotcut.org/Github

OpenShot

官网:https://www.openshot.org/Github

视频转换

HandBrake

官网:https://handbrake.fr/ , Github

音频

Audacity

可编辑、转换

官网:https://www.audacityteam.org/Github

Muse Group 收购后,修改隐私政策收集数据引发争议:https://github.com/audacity/audacity/issues/1213

分支:Tenacity , Audacium

Lamexp

可转换音频格式

官网:http://lamexp.sourceforge.net/

LMMS

官网:https://lmms.io/Github

Ardour

官网:https://ardour.org/Github

开源屏幕截图

ShareX

官网:https://getsharex.com/Github

Greenshot

官网:https://getgreenshot.org/Github

Flameshot

https://flameshot.org/ , Github

另外 Snipaste 也不错,未开源但免费

开源下载(BT/磁力等)

qBittorrent

官网:https://www.qbittorrent.org/Github

Motrix

官网:https://motrix.app/Github

DownZemAll!

Github:https://github.com/setvisible/DownZemAll

开源音视频播放

VLC

官网:https://www.videolan.org/Github

MPV

官网:https://mpv.io/Github

MPC-HC

Github:https://github.com/clsid2/mpc-hc/

MPC-BE

SourceForge:https://sourceforge.net/projects/mpcbe/

SMPlayer

官网:https://www.smplayer.info/

开源音频标签编辑

MusicBrainz Picard,官网:https://picard.musicbrainz.org/ , Github

开源图片编辑/查看

GIMP

官网:https://www.gimp.org/

Inkscape

官网:https://inkscape.org/

Darktable

官网:https://www.darktable.org/

ImageGlass

官网:https://imageglass.org/ , Github

Qimgv

Github:https://github.com/easymodo/qimgv

开源十六进制编辑器

ImHex

Github: https://github.com/WerWolv/ImHex

Madedit-Mod

Sourceforge:https://sourceforge.net/projects/madedit-mod/

开源密码管理器

KeePassXC

官网:https://keepassxc.org/

KeeWeb

官网:https://keeweb.info/

Buttercup

官网:https://buttercup.pw/

开源字幕编辑

Subtitle Edit

官网:https://www.nikse.dk/SubtitleEdit , Github

Gaupol

官网:https://otsaloma.io/gaupol/ , Github

开源 Windows 右键菜单管理

ContextMenuManagerhttps://github.com/BluePointLilac/ContextMenuManager

开源 Windows 音量控制

EarTrumpet:官网:https://eartrumpet.app/ , Github

开源安卓工具

应用商店

OTP 双因素认证器

十六进制查看器

HexViewer - https://f-droid.org/en/packages/fr.ralala.hexviewer/ , Github

终端模拟器

Termux - https://f-droid.org/en/packages/com.termux/ , Github

Linux 系统下载 (配合 Termux 使用)

AnLinux - https://f-droid.org/en/packages/exa.lnx.a/ , Github

音视频播放

Vanilla Music - https://f-droid.org/en/packages/ch.blinkenlights.android.vanilla/ , Github

Phonograph - https://f-droid.org/packages/com.kabouzeid.gramophone/ , Github

Auxio - https://f-droid.org/en/packages/org.oxycblt.auxio/ , Github

VLC 前文有,不赘诉

浏览器

实用工具

Trail Sense - https://f-droid.org/en/packages/com.kylecorry.trail_sense/ , Github

密码管理器

KeePassDX - https://f-droid.org/en/packages/com.kunzisoft.keepass.libre/ , Github

即时加密通讯

Session - https://getsession.org/ , Github

电子书阅读器

Librera Reader - https://f-droid.org/en/packages/com.foobnix.pro.pdf.reader/ , Github

相机

Open Camera - https://f-droid.org/en/packages/net.sourceforge.opencamera/ , Sourceforge

Simple Mobile Tools

官网:https://www.simplemobiletools.com/ , Github

一系列 “简易工具”,包括相机、文件管理、闹钟,相册等

微软工具集 Sysinternals Suite

官网:https://docs.microsoft.com/en-us/sysinternals/downloads/sysinternals-suite

Nirsoft 工具集

官网:https://www.nirsoft.net/

替代百度的搜索引擎

注:诸如 Google 、DuckDuckGo 需要富强的此处不列举

Bing

官网:https://www.bing.com/

Yandex

官网:https://yandex.com/

Magi

官网:https://magi.com/

## DogeDoge(多吉) 已挂

官网:https://dogedoge.com/

Qwant

官网:https://www.qwant.com/

Searx

官网:https://searx.space/

Swisscows

官网:https://swisscows.com/

Ecosia

官网:https://www.ecosia.org/

Whoogle

从谷歌获取搜索结果,去掉了广告、追踪等,可本地化部署

项目地址:https://github.com/benbusby/whoogle-search

在线实例:https://whooglesearch.net/

Markdown 语法教程

Markdown 语法

更多

Windows、Mac、Mobile Awesome App: