Finalshell

http://www.hostbuf.com/ 3.9.2.2 逆向破解:https://note.ultrapanda.me/archives/finalshell-reverse-engineering 破解样品下载:https://www.aliyundrive.com/s/3eVnJHDGyuz

WindowsTerminal

配置文件

  1. {
  2. "$schema": "https://aka.ms/terminal-profiles-schema",
  3. // Add custom actions and keybindings to this array.
  4. // To unbind a key combination from your defaults.json, set the command to "unbound".
  5. // To learn more about actions and keybindings, visit https://aka.ms/terminal-keybindings
  6. "actions": [
  7. // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json.
  8. // These two lines additionally bind them to Ctrl+C and Ctrl+V.
  9. // To learn more about selection, visit https://aka.ms/terminal-selection
  10. {
  11. "command": {
  12. "action": "copy",
  13. "singleLine": false
  14. },
  15. "keys": "ctrl+c"
  16. },
  17. {
  18. "command": "paste",
  19. "keys": "ctrl+v"
  20. },
  21. // Press Ctrl+Shift+F to open the search box
  22. {
  23. "command": "find",
  24. "keys": "ctrl+shift+f"
  25. },
  26. // Press Alt+Shift+D to open a new pane.
  27. // - "split": "auto" makes this pane open in the direction that provides the most surface area.
  28. // - "splitMode": "duplicate" makes the new pane use the focused pane's profile.
  29. // To learn more about panes, visit https://aka.ms/terminal-panes
  30. {
  31. "command": {
  32. "action": "splitPane",
  33. "split": "auto",
  34. "splitMode": "duplicate"
  35. },
  36. "keys": "alt+shift+d"
  37. }
  38. ],
  39. "alwaysOnTop": false,
  40. "copyFormatting": "none",
  41. "copyOnSelect": false,
  42. "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
  43. "profiles": {
  44. "defaults": {
  45. "fontFace": "Consolas",
  46. "fontSize": 10,
  47. "useAcrylic": false
  48. },
  49. "list": [
  50. {
  51. "commandline": "powershell.exe",
  52. "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
  53. "hidden": false,
  54. "name": "Windows PowerShell"
  55. },
  56. {
  57. "commandline": "cmd.exe",
  58. "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
  59. "hidden": false,
  60. "name": "\u547d\u4ee4\u63d0\u793a\u7b26"
  61. },
  62. {
  63. "guid": "{2ece5bfe-50ed-5f3a-ab87-5cd4baafed2b}",
  64. "hidden": false,
  65. "name": "Git Bash",
  66. "source": "Git"
  67. },
  68. {
  69. "guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}",
  70. "hidden": false,
  71. "name": "Ubuntu-20.04",
  72. "source": "Windows.Terminal.Wsl"
  73. },
  74. {
  75. "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
  76. "hidden": false,
  77. "name": "Azure Cloud Shell",
  78. "source": "Windows.Terminal.Azure"
  79. }
  80. ]
  81. }
  82. }