Downloads:
247,119
Downloads of v 0.76.1.13:
13,820
Last Update:
17 Sep 2023
Package Maintainer(s):
Software Author(s):
- Cyril Dupont
Tags:
foss telnet ssh ftp network remote- Software Specific:
- Software Site
- Software Source
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
KiTTY
- 1
- 2
- 3
0.76.1.13 | Updated: 17 Sep 2023
- Software Specific:
- Software Site
- Software Source
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
247,119
Downloads of v 0.76.1.13:
13,820
Maintainer(s):
Software Author(s):
- Cyril Dupont
KiTTY 0.76.1.13
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Cyril Dupont. The inclusion of Cyril Dupont trademark(s), if any, upon this webpage is solely to identify Cyril Dupont goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install KiTTY, run the following command from the command line or from PowerShell:
To upgrade KiTTY, run the following command from the command line or from PowerShell:
To uninstall KiTTY, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download kitty --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade kitty -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade kitty -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install kitty
win_chocolatey:
name: kitty
version: '0.76.1.13'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'kitty' do
action :install
source 'INTERNAL REPO URL'
version '0.76.1.13'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller kitty
{
Name = "kitty"
Version = "0.76.1.13"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'kitty':
ensure => '0.76.1.13',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 30 Nov 2024.
KiTTY is a fork of PuTTY (started from version 0.62 beta), the most popular Telnet and SSH client for Windows and Unix. It runs on Windows and it has an impressive collection of one of the most requested features that are missing from PuTTY.
Features
Sessions filter, portability, predefined command shortcuts, session launcher, automatic log-on script, URL hyperlinks, automatic command and password, running locally saved scripts in remote sessions, ZModem integration, icons for each session, transparency, unfortunate keyboard input protection, roll-up, quick start of duplicate sessions, configuration box, automatic saving, Internet Explorer integration for SSH Handler, binary compression, clipboard printing, PuTTYCyg patch, background images/transparency, organizing sessions you save in a folder hierarchy and many others that are constantly added. You can find a complete list of its features on the main page - including a description for each one.
Package parameters
/Portable
- Set kitty to use portable mode.
Example: choco install kitty --params "/Portable"
Notes
This package is know to have false positives on Virus Total for some of its executables which is no cause for concern. For more details see GitHub issue.
Package can not get updated or uninstalled if any of the kitty processes is running. For safety reasons you need to manually shut them down.
If the package is out of date please check Version History for the latest submitted version. If you have a question, please ask it in Chocolatey Community Package Discussions or raise an issue on the Chocolatey Community Packages Repository if you have problems with the package. Disqus comments will generally not be responded to.
function StopProcesses() {
$processNames = @("genpass", "gensfc", "kageant", "cygtermd", "kitty", "kittygen", "klink", "kscp", "ksftp")
$processes = Get-Process $processNames -ea SilentlyContinue
if ($processes) {
Write-Warning "Stopping processes to prevent upgrade/uninstall failure..."
Stop-Process -InputObject $processes -Force
}
}
md5: F1DB9D830887C3D6EBD47DEDD1E7810A | sha1: 772F7AD970A281F947FB38CF12DB87A1A89A8C15 | sha256: 768D93E616C0DD8918C08D317DA3857D37A5328DAFF5C7115B40700913773965 | sha512: 6D2D8239E6B404E0B999DB1CC8FE473794EF2AD47BB7226BD55CDD9D198662B32A4AA1C369F91BBFD8C22646F2DE510055C7D748E91FAF42A04210DF76C60293
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Download the zip file: https://github.com/cyd01/KiTTY/releases/download/v0.76.1.13/kitty-bin-0.76.1.13.zip
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
SHA256: 768d93e616c0dd8918c08d317da3857d37a5328daff5c7115b40700913773965
Using AU:
Get-RemoteChecksum https://github.com/cyd01/KiTTY/releases/download/v0.76.1.13/kitty-bin-0.76.1.13.zip
File 'LICENSE.TXT' is obtained from:
https://raw.githubusercontent.com/cyd01/KiTTY/master/LICENCE.TXT
KiTTY is copyright 2007-2013 Cyril Dupont.
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files
(the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Log in or click on link to see number of positives.
- cygtermd.exe (3130b430ddf0) - ## / 70
- genpass.exe (8fc5549e3e49) - ## / 71
- cygwin1.dll (82ae529c1115) - ## / 69
- kitty-beta.exe (045c09a1ec7f) - ## / 71
- kitty.0.76.1.13.nupkg (ffd4b7e9dfa6) - ## / 62
- kitty-bin-0.76.1.13.zip (768d93e616c0) - ## / 65
- kageant.exe (f192a4d2d34d) - ## / 71
- kitty.exe (b3a0a5812ccc) - ## / 71
- kittygen.exe (05426d8569e9) - ## / 71
- kitty_nocompress.exe (219e3697663a) - ## / 71
- kitty_portable.exe (5b51a46c1d7b) - ## / 71
- klink.exe (29a28be1b5cd) - ## / 71
- kscp.exe (b1445eed69ff) - ## / 71
- ksftp.exe (a6b291037eac) - ## / 71
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
KiTTY 0.76.1.13 | 13820 | Sunday, September 17, 2023 | Approved | |
KiTTY 0.76.1.12 | 6286 | Tuesday, May 23, 2023 | Approved | |
KiTTY 0.76.1.11 | 1166 | Sunday, May 21, 2023 | Approved | |
KiTTY 0.76.1.9 | 2148 | Tuesday, May 9, 2023 | Approved | |
KiTTY 0.76.1.7 | 2064 | Friday, April 28, 2023 | Approved | |
KiTTY 0.76.1.6 | 1363 | Monday, April 24, 2023 | Approved | |
KiTTY 0.76.1.5 | 4284 | Tuesday, March 7, 2023 | Approved | |
KiTTY 0.76.1.4 | 1263 | Friday, March 3, 2023 | Approved | |
KiTTY 0.76.1.3 | 3536 | Sunday, January 22, 2023 | Approved | |
KiTTY 0.76.1.2 | 2818 | Sunday, January 1, 2023 | Approved | |
KiTTY 0.76.0.13 | 3671 | Wednesday, November 16, 2022 | Approved | |
KiTTY 0.76.0.12 | 1638 | Thursday, November 10, 2022 | Approved | |
KiTTY 0.76.0.11 | 4220 | Monday, September 12, 2022 | Approved | |
KiTTY 0.76.0.10 | 4672 | Friday, June 24, 2022 | Approved | |
KiTTY 0.76.0.8 | 3885 | Tuesday, May 10, 2022 | Approved | |
KiTTY 0.74.4.13 | 12146 | Sunday, May 2, 2021 | Approved | |
KiTTY 0.74.4.12 | 441 | Sunday, May 2, 2021 | Approved | |
KiTTY 0.74.4.11 | 1967 | Tuesday, April 20, 2021 | Approved | |
KiTTY 0.74.4.10 | 993 | Sunday, April 18, 2021 | Approved | |
KiTTY 0.74.4.9 | 596 | Friday, April 16, 2021 | Approved | |
KiTTY 0.74.4.8 | 1227 | Monday, April 12, 2021 | Approved | |
KiTTY 0.74.4.7 | 3320 | Monday, March 1, 2021 | Approved | |
KiTTY 0.74.4.6 | 3115 | Monday, January 25, 2021 | Approved | |
KiTTY 0.74.4.5 | 1287 | Wednesday, January 20, 2021 | Approved | |
KiTTY 0.74.4.4 | 1703 | Tuesday, January 12, 2021 | Approved | |
KiTTY 0.74.4.3 | 1201 | Thursday, January 7, 2021 | Approved | |
KiTTY 0.74.4.2 | 385 | Wednesday, January 6, 2021 | Approved | |
KiTTY 0.74.4.1 | 1549 | Tuesday, December 29, 2020 | Approved | |
KiTTY 0.74.3.5 | 1818 | Monday, December 14, 2020 | Approved | |
KiTTY 0.74.3.4 | 1806 | Thursday, December 3, 2020 | Approved | |
KiTTY 0.74.3.3 | 607 | Tuesday, December 1, 2020 | Approved | |
KiTTY 0.74.3.2 | 572 | Tuesday, December 1, 2020 | Approved | |
KiTTY 0.74.3.1 | 2485 | Friday, November 6, 2020 | Approved | |
KiTTY 0.74.2.8 | 1052 | Tuesday, November 3, 2020 | Approved | |
KiTTY 0.74.2.6 | 2198 | Sunday, October 11, 2020 | Approved | |
KiTTY 0.74.2.5 | 549 | Friday, October 9, 2020 | Approved | |
KiTTY 0.74.2.4 | 1260 | Monday, October 5, 2020 | Approved | |
KiTTY 0.74.2.3 | 1712 | Sunday, September 27, 2020 | Approved | |
KiTTY 0.74.2.2 | 1088 | Wednesday, September 23, 2020 | Approved | |
KiTTY 0.74.2.1 | 1525 | Friday, September 18, 2020 | Approved | |
KiTTY 0.74.1.1 | 750 | Thursday, September 17, 2020 | Approved | |
KiTTY 0.74.0.7 | 1387 | Sunday, September 13, 2020 | Approved | |
KiTTY 0.74.0.6 | 1635 | Wednesday, September 2, 2020 | Approved | |
KiTTY 0.74.0.5 | 1678 | Tuesday, August 25, 2020 | Approved | |
KiTTY 0.74.0.4 | 1806 | Wednesday, August 12, 2020 | Approved | |
KiTTY 0.74.0.3 | 1045 | Saturday, August 8, 2020 | Approved | |
KiTTY 0.74.0.2 | 3258 | Friday, July 3, 2020 | Approved | |
KiTTY 0.73.2.18 | 3127 | Tuesday, June 23, 2020 | Approved | |
KiTTY 0.73.2.17 | 3343 | Monday, June 15, 2020 | Approved | |
KiTTY 0.73.2.16 | 2653 | Monday, May 18, 2020 | Approved | |
KiTTY 0.73.2.15 | 1519 | Wednesday, May 13, 2020 | Approved | |
KiTTY 0.73.2.14 | 1013 | Monday, May 11, 2020 | Approved | |
KiTTY 0.73.2.13 | 1065 | Saturday, May 9, 2020 | Approved | |
KiTTY 0.73.2.12 | 2256 | Friday, May 1, 2020 | Approved | |
KiTTY 0.73.2.11 | 3013 | Saturday, April 18, 2020 | Approved | |
KiTTY 0.73.2.10 | 2009 | Sunday, April 12, 2020 | Approved | |
KiTTY 0.73.2.9 | 1192 | Wednesday, April 8, 2020 | Approved | |
KiTTY 0.73.2.8 | 4073 | Wednesday, March 18, 2020 | Approved | |
KiTTY 0.73.2.7 | 1479 | Sunday, March 15, 2020 | Approved | |
KiTTY 0.73.2.6 | 865 | Friday, March 13, 2020 | Approved | |
KiTTY 0.73.2.4 | 2719 | Sunday, February 23, 2020 | Approved | |
KiTTY 0.73.2.2 | 2559 | Wednesday, January 29, 2020 | Approved | |
KiTTY 0.73.2.1 | 2634 | Sunday, January 19, 2020 | Approved | |
KiTTY 0.73.1.5 | 1892 | Saturday, January 11, 2020 | Approved | |
KiTTY 0.73.1.4 | 3348 | Wednesday, December 18, 2019 | Approved | |
KiTTY 0.73.1.2 | 1611 | Wednesday, December 11, 2019 | Approved | |
KiTTY 0.73.1.1 | 4445 | Wednesday, November 6, 2019 | Approved | |
KiTTY 0.73.0.1 | 2057 | Saturday, October 26, 2019 | Approved | |
KiTTY 0.72.0.6 | 2047 | Wednesday, October 16, 2019 | Approved | |
KiTTY 0.72.0.5 | 2412 | Wednesday, October 2, 2019 | Approved | |
KiTTY 0.72.0.3 | 2746 | Wednesday, September 18, 2019 | Approved | |
KiTTY 0.72.0.2 | 1027 | Sunday, September 15, 2019 | Approved | |
KiTTY 0.72.0.1 | 1998 | Sunday, September 8, 2019 | Approved | |
KiTTY 0.71.0.701 | 3111 | Monday, August 5, 2019 | Approved | |
KiTTY 0.71.0.7 | 1923 | Thursday, July 25, 2019 | Approved | |
KiTTY 0.71.0.6 | 2992 | Tuesday, July 16, 2019 | Approved | |
KiTTY 0.71.0.5 | 5138 | Monday, July 1, 2019 | Approved | |
KiTTY 0.71.0.4 | 3936 | Wednesday, June 12, 2019 | Approved | |
KiTTY 0.71.0.3 | 965 | Saturday, June 8, 2019 | Approved | |
KiTTY 0.71.0.2 | 1826 | Wednesday, May 29, 2019 | Approved | |
KiTTY 0.71.0.1 | 1436 | Wednesday, May 22, 2019 | Approved | |
KiTTY 0.70.0.10 | 2747 | Friday, March 29, 2019 | Approved | |
KiTTY 0.70.0.9 | 6960 | Wednesday, January 23, 2019 | Approved | |
KiTTY 0.70.0.8 | 3271 | Friday, January 11, 2019 | Approved | |
KiTTY 0.70.0.7 | 3020 | Wednesday, November 28, 2018 | Approved | |
KiTTY 0.70.0.6 | 2308 | Wednesday, October 10, 2018 | Approved | |
KiTTY 0.70.0.5 | 3370 | Wednesday, May 30, 2018 | Approved | |
KiTTY 0.70.0.4 | 685 | Tuesday, May 29, 2018 | Approved | |
KiTTY 0.70.0.3 | 2395 | Friday, March 16, 2018 | Approved | |
KiTTY 0.70.0.2 | 843 | Wednesday, March 14, 2018 | Approved | |
KiTTY 0.70.0.1 | 3449 | Tuesday, October 3, 2017 | Approved | |
KiTTY 0.69.0.2 | 1969 | Saturday, August 5, 2017 | Approved | |
KiTTY 0.69.0.1 | 1809 | Thursday, May 25, 2017 | Approved | |
KiTTY 0.68.0.2 | 1768 | Thursday, March 16, 2017 | Approved | |
KiTTY 0.68.0.1 | 717 | Monday, March 13, 2017 | Approved | |
KiTTY 0.67.4.4 | 1107 | Friday, February 17, 2017 | Approved | |
KiTTY 0.67.4.3 | 1008 | Wednesday, February 1, 2017 | Approved | |
KiTTY 0.67.4.2 | 915 | Saturday, January 21, 2017 | Approved | |
KiTTY 0.67.4.1 | 1003 | Thursday, January 5, 2017 | Approved | |
KiTTY 0.67.3.4 | 695 | Monday, January 2, 2017 | Approved | |
KiTTY 0.67.3.3 | 855 | Thursday, December 22, 2016 | Approved | |
KiTTY 0.67.3.2 | 1121 | Friday, November 25, 2016 | Approved | |
KiTTY 0.67.3.1 | 1062 | Sunday, October 23, 2016 | Approved | |
KiTTY 0.67.1.4 | 867 | Tuesday, October 4, 2016 | Approved | |
KiTTY 0.67.1.2 | 2932 | Friday, June 17, 2016 | Approved | |
KiTTY 0.67.1.1 | 516 | Saturday, June 11, 2016 | Approved | |
KiTTY 0.67.0.3 | 604 | Friday, May 13, 2016 | Approved | |
KiTTY 0.67.0.2 | 661 | Tuesday, March 22, 2016 | Approved |
Cyril Dupont
This package has no dependencies.
Ground Rules:
- This discussion is only about KiTTY and the KiTTY package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or KiTTY, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.