├── .gitignore ├── Debug ├── Botand.dll ├── QSshd.dll └── zlib1.dll ├── KShell.sln ├── KShell ├── DataStruck.h ├── FTPTreeList.cpp ├── FTPTreeList.h ├── FTPTreeWork.cpp ├── FTPTreeWork.h ├── Ftp.cpp ├── Ftp.h ├── HelpWindows.cpp ├── HelpWindows.h ├── HelpWindows.ui ├── HomePage.cpp ├── HomePage.h ├── HomePage.ui ├── KShell.filters ├── KShell.vcxproj ├── Log.cpp ├── Log.h ├── NewUser.cpp ├── NewUser.h ├── NewUser.ui ├── SSHWindow.cpp ├── SSHWindow.h ├── SSHWindow.ui ├── SetingWindow.cpp ├── SetingWindow.h ├── SetingWindow.ui ├── SshClient.cpp ├── SshClient.h ├── Tray.cpp ├── Tray.h ├── UPDate.cpp ├── UPDate.h ├── img.qrc ├── img │ ├── SSH终端.png │ ├── ftp.png │ ├── logo.ico │ ├── 上传文件.png │ ├── 上传文件夹.png │ ├── 下载.png │ ├── 下载并打开.png │ ├── 九恒logo.jpg │ ├── 保存.png │ ├── 另存为.png │ ├── 图标颜色.txt │ ├── 在线.png │ ├── 垃圾桶.png │ ├── 垃圾桶1.png │ ├── 展开.png │ ├── 工程.png │ ├── 帮助.png │ ├── 打开.png │ ├── 收回.png │ ├── 数字10.png │ ├── 数字16.png │ ├── 数据图.png │ ├── 文件夹.png │ ├── 文件配置.png │ ├── 文本.png │ ├── 最小化.png │ ├── 查看.png │ ├── 桌面.png │ ├── 点赞.png │ ├── 离线.png │ ├── 编写.png │ ├── 设置.png │ ├── 还原.png │ ├── 退出.png │ ├── 重命名.png │ └── 首页.png ├── include │ ├── curl │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── curl.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── options.h │ │ ├── stdcheaders.h │ │ ├── system.h │ │ ├── typecheck-gcc.h │ │ └── urlapi.h │ └── ssh │ │ ├── images │ │ ├── dir.png │ │ ├── help.png │ │ └── unknownfile.png │ │ ├── sftpchannel.cpp │ │ ├── sftpchannel.h │ │ ├── sftpchannel_p.h │ │ ├── sftpdefs.cpp │ │ ├── sftpdefs.h │ │ ├── sftpfilesystemmodel.cpp │ │ ├── sftpfilesystemmodel.h │ │ ├── sftpincomingpacket.cpp │ │ ├── sftpincomingpacket_p.h │ │ ├── sftpoperation.cpp │ │ ├── sftpoperation_p.h │ │ ├── sftpoutgoingpacket.cpp │ │ ├── sftpoutgoingpacket_p.h │ │ ├── sftppacket.cpp │ │ ├── sftppacket_p.h │ │ ├── ssh.pro │ │ ├── ssh.qbs │ │ ├── ssh.qrc │ │ ├── ssh_dependencies.pri │ │ ├── ssh_global.h │ │ ├── sshagent.cpp │ │ ├── sshagent_p.h │ │ ├── sshbotanconversions_p.h │ │ ├── sshcapabilities.cpp │ │ ├── sshcapabilities_p.h │ │ ├── sshchannel.cpp │ │ ├── sshchannel_p.h │ │ ├── sshchannelmanager.cpp │ │ ├── sshchannelmanager_p.h │ │ ├── sshconnection.cpp │ │ ├── sshconnection.h │ │ ├── sshconnection_p.h │ │ ├── sshconnectionmanager.cpp │ │ ├── sshconnectionmanager.h │ │ ├── sshcryptofacility.cpp │ │ ├── sshcryptofacility_p.h │ │ ├── sshdirecttcpiptunnel.cpp │ │ ├── sshdirecttcpiptunnel.h │ │ ├── sshdirecttcpiptunnel_p.h │ │ ├── ssherrors.h │ │ ├── sshexception_p.h │ │ ├── sshforwardedtcpiptunnel.cpp │ │ ├── sshforwardedtcpiptunnel.h │ │ ├── sshforwardedtcpiptunnel_p.h │ │ ├── sshhostkeydatabase.cpp │ │ ├── sshhostkeydatabase.h │ │ ├── sshincomingpacket.cpp │ │ ├── sshincomingpacket_p.h │ │ ├── sshinit.cpp │ │ ├── sshinit_p.h │ │ ├── sshkeycreationdialog.cpp │ │ ├── sshkeycreationdialog.h │ │ ├── sshkeycreationdialog.ui │ │ ├── sshkeyexchange.cpp │ │ ├── sshkeyexchange_p.h │ │ ├── sshkeygenerator.cpp │ │ ├── sshkeygenerator.h │ │ ├── sshkeypasswordretriever.cpp │ │ ├── sshkeypasswordretriever_p.h │ │ ├── sshlogging.cpp │ │ ├── sshlogging_p.h │ │ ├── sshoutgoingpacket.cpp │ │ ├── sshoutgoingpacket_p.h │ │ ├── sshpacket.cpp │ │ ├── sshpacket_p.h │ │ ├── sshpacketparser.cpp │ │ ├── sshpacketparser_p.h │ │ ├── sshpseudoterminal.h │ │ ├── sshremoteprocess.cpp │ │ ├── sshremoteprocess.h │ │ ├── sshremoteprocess_p.h │ │ ├── sshremoteprocessrunner.cpp │ │ ├── sshremoteprocessrunner.h │ │ ├── sshsendfacility.cpp │ │ ├── sshsendfacility_p.h │ │ ├── sshtcpipforwardserver.cpp │ │ ├── sshtcpipforwardserver.h │ │ ├── sshtcpipforwardserver_p.h │ │ ├── sshtcpiptunnel.cpp │ │ └── sshtcpiptunnel_p.h ├── lib │ ├── debug │ │ ├── Botand.dll │ │ ├── QSshd.dll │ │ ├── QSshd.lib │ │ ├── libcurl_debug.dll │ │ ├── libcurl_debug.lib │ │ ├── zlib.lib │ │ └── zlib1.dll │ └── release │ │ ├── Botand.lib │ │ ├── QSsh.dll │ │ ├── QSsh.lib │ │ ├── libcurl.lib │ │ ├── zlib.lib │ │ └── zlib1.dll ├── logo.aps ├── logo.ico ├── logo.png ├── logo.rc ├── main.cpp ├── qss │ ├── blacksoft.css │ ├── blacksoft │ │ ├── add_bottom.png │ │ ├── add_left.png │ │ ├── add_right.png │ │ ├── add_top.png │ │ ├── arrow_bottom.png │ │ ├── arrow_left.png │ │ ├── arrow_right.png │ │ ├── arrow_top.png │ │ ├── branch_close.png │ │ ├── branch_open.png │ │ ├── calendar_nextmonth.png │ │ ├── calendar_prevmonth.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_disable.png │ │ ├── checkbox_parcial.png │ │ ├── checkbox_parcial_disable.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_disable.png │ │ ├── menu_checked.png │ │ ├── radiobutton_checked.png │ │ ├── radiobutton_checked_disable.png │ │ ├── radiobutton_unchecked.png │ │ └── radiobutton_unchecked_disable.png │ ├── flatgray.css │ ├── flatgray │ │ ├── add_bottom.png │ │ ├── add_left.png │ │ ├── add_right.png │ │ ├── add_top.png │ │ ├── arrow_bottom.png │ │ ├── arrow_left.png │ │ ├── arrow_right.png │ │ ├── arrow_top.png │ │ ├── branch_close.png │ │ ├── branch_open.png │ │ ├── calendar_nextmonth.png │ │ ├── calendar_prevmonth.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_disable.png │ │ ├── checkbox_parcial.png │ │ ├── checkbox_parcial_disable.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_disable.png │ │ ├── menu_checked.png │ │ ├── radiobutton_checked.png │ │ ├── radiobutton_checked_disable.png │ │ ├── radiobutton_unchecked.png │ │ └── radiobutton_unchecked_disable.png │ ├── lightblue.css │ └── lightblue │ │ ├── add_bottom.png │ │ ├── add_left.png │ │ ├── add_right.png │ │ ├── add_top.png │ │ ├── arrow_bottom.png │ │ ├── arrow_left.png │ │ ├── arrow_right.png │ │ ├── arrow_top.png │ │ ├── branch_close.png │ │ ├── branch_open.png │ │ ├── calendar_nextmonth.png │ │ ├── calendar_prevmonth.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_disable.png │ │ ├── checkbox_parcial.png │ │ ├── checkbox_parcial_disable.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_disable.png │ │ ├── menu_checked.png │ │ ├── radiobutton_checked.png │ │ ├── radiobutton_checked_disable.png │ │ ├── radiobutton_unchecked.png │ │ └── radiobutton_unchecked_disable.png └── resource.h ├── README.md ├── Tools └── UPdateForEXE.bat ├── Update └── README.md ├── conf ├── CMDList.db ├── CONF.json ├── UpdateList.xml └── UserList.db └── screenshot ├── HTU.gif ├── SHH和FTP融合.png ├── SSH客户端.png ├── ftp客户端.png ├── 新建工程.png └── 首页.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/.gitignore -------------------------------------------------------------------------------- /Debug/Botand.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/Debug/Botand.dll -------------------------------------------------------------------------------- /Debug/QSshd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/Debug/QSshd.dll -------------------------------------------------------------------------------- /Debug/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/Debug/zlib1.dll -------------------------------------------------------------------------------- /KShell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell.sln -------------------------------------------------------------------------------- /KShell/DataStruck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/DataStruck.h -------------------------------------------------------------------------------- /KShell/FTPTreeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/FTPTreeList.cpp -------------------------------------------------------------------------------- /KShell/FTPTreeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/FTPTreeList.h -------------------------------------------------------------------------------- /KShell/FTPTreeWork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/FTPTreeWork.cpp -------------------------------------------------------------------------------- /KShell/FTPTreeWork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/FTPTreeWork.h -------------------------------------------------------------------------------- /KShell/Ftp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/Ftp.cpp -------------------------------------------------------------------------------- /KShell/Ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/Ftp.h -------------------------------------------------------------------------------- /KShell/HelpWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/HelpWindows.cpp -------------------------------------------------------------------------------- /KShell/HelpWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/HelpWindows.h -------------------------------------------------------------------------------- /KShell/HelpWindows.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/HelpWindows.ui -------------------------------------------------------------------------------- /KShell/HomePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/HomePage.cpp -------------------------------------------------------------------------------- /KShell/HomePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/HomePage.h -------------------------------------------------------------------------------- /KShell/HomePage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/HomePage.ui -------------------------------------------------------------------------------- /KShell/KShell.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/KShell.filters -------------------------------------------------------------------------------- /KShell/KShell.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/KShell.vcxproj -------------------------------------------------------------------------------- /KShell/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/Log.cpp -------------------------------------------------------------------------------- /KShell/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/Log.h -------------------------------------------------------------------------------- /KShell/NewUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/NewUser.cpp -------------------------------------------------------------------------------- /KShell/NewUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/NewUser.h -------------------------------------------------------------------------------- /KShell/NewUser.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/NewUser.ui -------------------------------------------------------------------------------- /KShell/SSHWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/SSHWindow.cpp -------------------------------------------------------------------------------- /KShell/SSHWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/SSHWindow.h -------------------------------------------------------------------------------- /KShell/SSHWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/SSHWindow.ui -------------------------------------------------------------------------------- /KShell/SetingWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/SetingWindow.cpp -------------------------------------------------------------------------------- /KShell/SetingWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/SetingWindow.h -------------------------------------------------------------------------------- /KShell/SetingWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/SetingWindow.ui -------------------------------------------------------------------------------- /KShell/SshClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/SshClient.cpp -------------------------------------------------------------------------------- /KShell/SshClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/SshClient.h -------------------------------------------------------------------------------- /KShell/Tray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/Tray.cpp -------------------------------------------------------------------------------- /KShell/Tray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/Tray.h -------------------------------------------------------------------------------- /KShell/UPDate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/UPDate.cpp -------------------------------------------------------------------------------- /KShell/UPDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/UPDate.h -------------------------------------------------------------------------------- /KShell/img.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img.qrc -------------------------------------------------------------------------------- /KShell/img/SSH终端.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/SSH终端.png -------------------------------------------------------------------------------- /KShell/img/ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/ftp.png -------------------------------------------------------------------------------- /KShell/img/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/logo.ico -------------------------------------------------------------------------------- /KShell/img/上传文件.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/上传文件.png -------------------------------------------------------------------------------- /KShell/img/上传文件夹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/上传文件夹.png -------------------------------------------------------------------------------- /KShell/img/下载.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/下载.png -------------------------------------------------------------------------------- /KShell/img/下载并打开.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/下载并打开.png -------------------------------------------------------------------------------- /KShell/img/九恒logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/九恒logo.jpg -------------------------------------------------------------------------------- /KShell/img/保存.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/保存.png -------------------------------------------------------------------------------- /KShell/img/另存为.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/另存为.png -------------------------------------------------------------------------------- /KShell/img/图标颜色.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/图标颜色.txt -------------------------------------------------------------------------------- /KShell/img/在线.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/在线.png -------------------------------------------------------------------------------- /KShell/img/垃圾桶.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/垃圾桶.png -------------------------------------------------------------------------------- /KShell/img/垃圾桶1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/垃圾桶1.png -------------------------------------------------------------------------------- /KShell/img/展开.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/展开.png -------------------------------------------------------------------------------- /KShell/img/工程.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/工程.png -------------------------------------------------------------------------------- /KShell/img/帮助.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/帮助.png -------------------------------------------------------------------------------- /KShell/img/打开.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/打开.png -------------------------------------------------------------------------------- /KShell/img/收回.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/收回.png -------------------------------------------------------------------------------- /KShell/img/数字10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/数字10.png -------------------------------------------------------------------------------- /KShell/img/数字16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/数字16.png -------------------------------------------------------------------------------- /KShell/img/数据图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/数据图.png -------------------------------------------------------------------------------- /KShell/img/文件夹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/文件夹.png -------------------------------------------------------------------------------- /KShell/img/文件配置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/文件配置.png -------------------------------------------------------------------------------- /KShell/img/文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/文本.png -------------------------------------------------------------------------------- /KShell/img/最小化.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/最小化.png -------------------------------------------------------------------------------- /KShell/img/查看.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/查看.png -------------------------------------------------------------------------------- /KShell/img/桌面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/桌面.png -------------------------------------------------------------------------------- /KShell/img/点赞.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/点赞.png -------------------------------------------------------------------------------- /KShell/img/离线.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/离线.png -------------------------------------------------------------------------------- /KShell/img/编写.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/编写.png -------------------------------------------------------------------------------- /KShell/img/设置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/设置.png -------------------------------------------------------------------------------- /KShell/img/还原.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/还原.png -------------------------------------------------------------------------------- /KShell/img/退出.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/退出.png -------------------------------------------------------------------------------- /KShell/img/重命名.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/重命名.png -------------------------------------------------------------------------------- /KShell/img/首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/img/首页.png -------------------------------------------------------------------------------- /KShell/include/curl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/curl/Makefile.am -------------------------------------------------------------------------------- /KShell/include/curl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/curl/Makefile.in -------------------------------------------------------------------------------- /KShell/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/curl/curl.h -------------------------------------------------------------------------------- /KShell/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/curl/curlver.h -------------------------------------------------------------------------------- /KShell/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/curl/easy.h -------------------------------------------------------------------------------- /KShell/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/curl/mprintf.h -------------------------------------------------------------------------------- /KShell/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/curl/multi.h -------------------------------------------------------------------------------- /KShell/include/curl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/curl/options.h -------------------------------------------------------------------------------- /KShell/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /KShell/include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/curl/system.h -------------------------------------------------------------------------------- /KShell/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /KShell/include/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/curl/urlapi.h -------------------------------------------------------------------------------- /KShell/include/ssh/images/dir.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KShell/include/ssh/images/help.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KShell/include/ssh/images/unknownfile.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KShell/include/ssh/sftpchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpchannel.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sftpchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpchannel.h -------------------------------------------------------------------------------- /KShell/include/ssh/sftpchannel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpchannel_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sftpdefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpdefs.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sftpdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpdefs.h -------------------------------------------------------------------------------- /KShell/include/ssh/sftpfilesystemmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpfilesystemmodel.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sftpfilesystemmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpfilesystemmodel.h -------------------------------------------------------------------------------- /KShell/include/ssh/sftpincomingpacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpincomingpacket.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sftpincomingpacket_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpincomingpacket_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sftpoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpoperation.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sftpoperation_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpoperation_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sftpoutgoingpacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpoutgoingpacket.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sftpoutgoingpacket_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftpoutgoingpacket_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sftppacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftppacket.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sftppacket_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sftppacket_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/ssh.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/ssh.pro -------------------------------------------------------------------------------- /KShell/include/ssh/ssh.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/ssh.qbs -------------------------------------------------------------------------------- /KShell/include/ssh/ssh.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/ssh.qrc -------------------------------------------------------------------------------- /KShell/include/ssh/ssh_dependencies.pri: -------------------------------------------------------------------------------- 1 | QTC_LIB_NAME = QtcSsh 2 | -------------------------------------------------------------------------------- /KShell/include/ssh/ssh_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/ssh_global.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshagent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshagent.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshagent_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshagent_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshbotanconversions_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshbotanconversions_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshcapabilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshcapabilities.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshcapabilities_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshcapabilities_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshchannel.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshchannel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshchannel_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshchannelmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshchannelmanager.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshchannelmanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshchannelmanager_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshconnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshconnection.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshconnection.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshconnection_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshconnection_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshconnectionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshconnectionmanager.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshconnectionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshconnectionmanager.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshcryptofacility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshcryptofacility.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshcryptofacility_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshcryptofacility_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshdirecttcpiptunnel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshdirecttcpiptunnel.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshdirecttcpiptunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshdirecttcpiptunnel.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshdirecttcpiptunnel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshdirecttcpiptunnel_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/ssherrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/ssherrors.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshexception_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshexception_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshforwardedtcpiptunnel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshforwardedtcpiptunnel.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshforwardedtcpiptunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshforwardedtcpiptunnel.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshforwardedtcpiptunnel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshforwardedtcpiptunnel_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshhostkeydatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshhostkeydatabase.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshhostkeydatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshhostkeydatabase.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshincomingpacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshincomingpacket.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshincomingpacket_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshincomingpacket_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshinit.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshinit_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshinit_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshkeycreationdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshkeycreationdialog.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshkeycreationdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshkeycreationdialog.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshkeycreationdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshkeycreationdialog.ui -------------------------------------------------------------------------------- /KShell/include/ssh/sshkeyexchange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshkeyexchange.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshkeyexchange_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshkeyexchange_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshkeygenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshkeygenerator.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshkeygenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshkeygenerator.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshkeypasswordretriever.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshkeypasswordretriever.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshkeypasswordretriever_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshkeypasswordretriever_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshlogging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshlogging.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshlogging_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshlogging_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshoutgoingpacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshoutgoingpacket.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshoutgoingpacket_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshoutgoingpacket_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshpacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshpacket.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshpacket_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshpacket_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshpacketparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshpacketparser.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshpacketparser_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshpacketparser_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshpseudoterminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshpseudoterminal.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshremoteprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshremoteprocess.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshremoteprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshremoteprocess.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshremoteprocess_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshremoteprocess_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshremoteprocessrunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshremoteprocessrunner.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshremoteprocessrunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshremoteprocessrunner.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshsendfacility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshsendfacility.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshsendfacility_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshsendfacility_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshtcpipforwardserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshtcpipforwardserver.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshtcpipforwardserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshtcpipforwardserver.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshtcpipforwardserver_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshtcpipforwardserver_p.h -------------------------------------------------------------------------------- /KShell/include/ssh/sshtcpiptunnel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshtcpiptunnel.cpp -------------------------------------------------------------------------------- /KShell/include/ssh/sshtcpiptunnel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/include/ssh/sshtcpiptunnel_p.h -------------------------------------------------------------------------------- /KShell/lib/debug/Botand.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/debug/Botand.dll -------------------------------------------------------------------------------- /KShell/lib/debug/QSshd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/debug/QSshd.dll -------------------------------------------------------------------------------- /KShell/lib/debug/QSshd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/debug/QSshd.lib -------------------------------------------------------------------------------- /KShell/lib/debug/libcurl_debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/debug/libcurl_debug.dll -------------------------------------------------------------------------------- /KShell/lib/debug/libcurl_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/debug/libcurl_debug.lib -------------------------------------------------------------------------------- /KShell/lib/debug/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/debug/zlib.lib -------------------------------------------------------------------------------- /KShell/lib/debug/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/debug/zlib1.dll -------------------------------------------------------------------------------- /KShell/lib/release/Botand.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/release/Botand.lib -------------------------------------------------------------------------------- /KShell/lib/release/QSsh.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/release/QSsh.dll -------------------------------------------------------------------------------- /KShell/lib/release/QSsh.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/release/QSsh.lib -------------------------------------------------------------------------------- /KShell/lib/release/libcurl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/release/libcurl.lib -------------------------------------------------------------------------------- /KShell/lib/release/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/release/zlib.lib -------------------------------------------------------------------------------- /KShell/lib/release/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/lib/release/zlib1.dll -------------------------------------------------------------------------------- /KShell/logo.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/logo.aps -------------------------------------------------------------------------------- /KShell/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/logo.ico -------------------------------------------------------------------------------- /KShell/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/logo.png -------------------------------------------------------------------------------- /KShell/logo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/logo.rc -------------------------------------------------------------------------------- /KShell/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/main.cpp -------------------------------------------------------------------------------- /KShell/qss/blacksoft.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft.css -------------------------------------------------------------------------------- /KShell/qss/blacksoft/add_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/add_bottom.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/add_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/add_left.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/add_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/add_right.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/add_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/add_top.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/arrow_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/arrow_bottom.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/arrow_left.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/arrow_right.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/arrow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/arrow_top.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/branch_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/branch_close.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/branch_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/branch_open.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/calendar_nextmonth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/calendar_nextmonth.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/calendar_prevmonth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/calendar_prevmonth.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/checkbox_checked.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/checkbox_checked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/checkbox_checked_disable.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/checkbox_parcial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/checkbox_parcial.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/checkbox_parcial_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/checkbox_parcial_disable.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/checkbox_unchecked.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/checkbox_unchecked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/checkbox_unchecked_disable.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/menu_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/menu_checked.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/radiobutton_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/radiobutton_checked.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/radiobutton_checked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/radiobutton_checked_disable.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/radiobutton_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/radiobutton_unchecked.png -------------------------------------------------------------------------------- /KShell/qss/blacksoft/radiobutton_unchecked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/blacksoft/radiobutton_unchecked_disable.png -------------------------------------------------------------------------------- /KShell/qss/flatgray.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray.css -------------------------------------------------------------------------------- /KShell/qss/flatgray/add_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/add_bottom.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/add_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/add_left.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/add_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/add_right.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/add_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/add_top.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/arrow_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/arrow_bottom.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/arrow_left.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/arrow_right.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/arrow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/arrow_top.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/branch_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/branch_close.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/branch_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/branch_open.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/calendar_nextmonth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/calendar_nextmonth.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/calendar_prevmonth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/calendar_prevmonth.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/checkbox_checked.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/checkbox_checked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/checkbox_checked_disable.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/checkbox_parcial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/checkbox_parcial.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/checkbox_parcial_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/checkbox_parcial_disable.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/checkbox_unchecked.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/checkbox_unchecked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/checkbox_unchecked_disable.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/menu_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/menu_checked.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/radiobutton_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/radiobutton_checked.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/radiobutton_checked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/radiobutton_checked_disable.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/radiobutton_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/radiobutton_unchecked.png -------------------------------------------------------------------------------- /KShell/qss/flatgray/radiobutton_unchecked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/flatgray/radiobutton_unchecked_disable.png -------------------------------------------------------------------------------- /KShell/qss/lightblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue.css -------------------------------------------------------------------------------- /KShell/qss/lightblue/add_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/add_bottom.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/add_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/add_left.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/add_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/add_right.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/add_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/add_top.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/arrow_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/arrow_bottom.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/arrow_left.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/arrow_right.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/arrow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/arrow_top.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/branch_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/branch_close.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/branch_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/branch_open.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/calendar_nextmonth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/calendar_nextmonth.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/calendar_prevmonth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/calendar_prevmonth.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/checkbox_checked.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/checkbox_checked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/checkbox_checked_disable.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/checkbox_parcial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/checkbox_parcial.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/checkbox_parcial_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/checkbox_parcial_disable.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/checkbox_unchecked.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/checkbox_unchecked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/checkbox_unchecked_disable.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/menu_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/menu_checked.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/radiobutton_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/radiobutton_checked.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/radiobutton_checked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/radiobutton_checked_disable.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/radiobutton_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/radiobutton_unchecked.png -------------------------------------------------------------------------------- /KShell/qss/lightblue/radiobutton_unchecked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/qss/lightblue/radiobutton_unchecked_disable.png -------------------------------------------------------------------------------- /KShell/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/KShell/resource.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/README.md -------------------------------------------------------------------------------- /Tools/UPdateForEXE.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/Tools/UPdateForEXE.bat -------------------------------------------------------------------------------- /Update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/Update/README.md -------------------------------------------------------------------------------- /conf/CMDList.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/conf/CMDList.db -------------------------------------------------------------------------------- /conf/CONF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/conf/CONF.json -------------------------------------------------------------------------------- /conf/UpdateList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/conf/UpdateList.xml -------------------------------------------------------------------------------- /conf/UserList.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/conf/UserList.db -------------------------------------------------------------------------------- /screenshot/HTU.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/screenshot/HTU.gif -------------------------------------------------------------------------------- /screenshot/SHH和FTP融合.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/screenshot/SHH和FTP融合.png -------------------------------------------------------------------------------- /screenshot/SSH客户端.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/screenshot/SSH客户端.png -------------------------------------------------------------------------------- /screenshot/ftp客户端.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/screenshot/ftp客户端.png -------------------------------------------------------------------------------- /screenshot/新建工程.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/screenshot/新建工程.png -------------------------------------------------------------------------------- /screenshot/首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shikai-123/KShell/HEAD/screenshot/首页.png --------------------------------------------------------------------------------