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

推荐订阅源

WordPress大学
WordPress大学
T
Threatpost
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
月光博客
月光博客
V
Visual Studio Blog
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
Jina AI
Jina AI
J
Java Code Geeks
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
Recorded Future
Recorded Future
C
Check Point Blog
腾讯CDC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
罗磊的独立博客
Hacker News: Ask HN
Hacker News: Ask HN
SecWiki News
SecWiki News
博客园 - Franky
Hacker News - Newest:
Hacker News - Newest: "LLM"
N
News | PayPal Newsroom
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security @ Cisco Blogs
W
WeLiveSecurity
The Last Watchdog
The Last Watchdog
Cloudbric
Cloudbric
F
Full Disclosure
The Cloudflare Blog
Y
Y Combinator Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
S
Schneier on Security
Schneier on Security
Schneier on Security
Spread Privacy
Spread Privacy
L
LINUX DO - 热门话题
AI
AI
N
News and Events Feed by Topic
T
Tor Project blog
P
Palo Alto Networks Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Hackread – Cybersecurity News, Data Breaches, AI and More
G
Google Developers Blog

博客园 - 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@ 也能勉强连接了。