惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
T
The Blog of Author Tim Ferriss
博客园 - 叶小钗
N
Netflix TechBlog - Medium
腾讯CDC
C
Check Point Blog
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
S
SegmentFault 最新的问题
F
Fortinet All Blogs
美团技术团队
U
Unit 42
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 司徒正美
F
Full Disclosure
Recorded Future
Recorded Future
D
DataBreaches.Net
博客园 - 【当耐特】
Martin Fowler
Martin Fowler
J
Java Code Geeks
I
InfoQ
Y
Y Combinator Blog
A
About on SuperTechFans
AI
AI
爱范儿
爱范儿
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Forbes - Security
Forbes - Security
W
WeLiveSecurity
M
MIT News - Artificial intelligence
雷峰网
雷峰网
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Simon Willison's Weblog
Simon Willison's Weblog
Schneier on Security
Schneier on Security
The GitHub Blog
The GitHub Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
aimingoo的专栏
aimingoo的专栏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
GRAHAM CLULEY
Know Your Adversary
Know Your Adversary
Latest news
Latest news
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
D
Docker
Recent Commits to openclaw:main
Recent Commits to openclaw:main
量子位
V2EX - 技术
V2EX - 技术
Project Zero
Project Zero

博客园 - Red_angelX

Fedora22编译Qt3.3.X 黑科技项目:英雄无敌III Mod <<Fallen Angel>>介绍 中兴MF667S WCDMA猫Linux拨号笔记 NES模拟器开发-PPU笔记 Source Insight 3.X utf8支持插件更新 NES模拟器开发-CPU笔记 记录Qt的一个诡异Bug 准备开发一款开源NES模拟器 Source Insight 3.X 插件新loader发布 Source Insight 3.X utf8支持插件震撼发布 c语言非线程安全函数引发的BUG一列 Source Insight 3.X 标签插件v1.0发布 MinGW编译dll以及静态链接pthread 用Codeblocks的MinGW编译CxImage BMP图片魔法师KeyGen C#将Trace,Debug信息输出到控件上 让LuaInterface 2.0.1支持中文 五线谱编辑Demo(MFC) C#贴边自动隐藏组件完美版
越狱iphone命令行ssh无法连接问题解决
Red_angelX · 2021-08-26 · via 博客园 - Red_angelX

手上有一台12.4的ios机器,通过SecureCrt可以ssh上去,但是每次连接的时候都会报“Keyboard Interactive”错误,skip即可,但是通过ssh客户端连接,却无法正常连接,错误提示如下:

@127.0.0.1: Permission denied (publickey,password,keyboard-interactive)

 开始以为是Keyboard Interactive交互的问题,

通过sshd -T | grep kbd查看结果:

~ root# sshd -T | grep kbd     
kbdinteractiveauthentication yes

 确实是开着的,一番谷歌后,修改/etc/ssh/sshd_config的配置文件

# Change to no to disable s/key passwords
ChallengeResponseAuthentication no

 然后重启sshd服务

iPhone:~ root# launchctl stop com.openssh.sshd               
iPhone:~ root# launchctl start com.openssh.sshd  

 再次查看sshd -T | grep kbd,发现已经是no了,测试Crt连接,已经可以直连不会弹框了,高兴的用ssh连接,还是被拒,提示如下:

@127.0.0.1: Permission denied (publickey,password).

 测试linux和ios下的ssh命令客户端,均能连接上。

最后发现,mac的ssh连接的时候,前面要加root@ 也能勉强连接了。