问题描述
我正在尝试监视iPhone上的所有流量.所以我在工具上搜索了一下,发现rvictl是我的选择.根据本文
i'm trying to monitor all traffic on my iphone. so i googled about the tools, and i found rvictl is my choice. based on this article
在此之前我已经安装了xcode,所以我在终端中运行了"rvictl",什么也没有给出,但是也没有错误,这意味着rvictl已经安装了.
i've got xcode installed before this, so i run "rvictl" in the terminal, gave nothing, but no error either, that means rvictl is installed already.
所以我尝试运行"rvictl -s 7BE4CC277XXXXXXXXXX"并等待了大约2秒钟,然后什么也没有发生或显示,什么也没有
so i tried to run "rvictl -s 7BE4CC277XXXXXXXXXX" and waited for about 2 seconds, then nothing happend or showed, just nothing
leideMacBook-Air:〜杰克$ rvictl -s 7BE4CC2772E3D50174C49ABxxxxxxleideMacBook-Air:〜杰克$
leideMacBook-Air:~ Jack$ rvictl -s 7BE4CC2772E3D50174C49ABxxxxxxleideMacBook-Air:~ Jack$
就是这样,所以我在Google上搜索并看到了另一篇文章修复您的xcode pkg 通过重新安装这2 pkg,然后再次点击还是一样,什么也没发生
just like that, so i googled and saw another article here repair your xcode pkg by reinstall those 2 pkgs, and hit againstill got the same, nothing happens
那么任何人都可以提供其他线索来解决此问题吗?
so can anyone give another clue to fix this?
推荐答案
对我来说,当我使用大写UUID而不是小写的UUID时,就会发生此问题:
For me, the issue happens, when I use UPPERCASE UUID, instead of lowercase one:
// does not work:
$ rvictl -s F320D3ED185C4CD28FC96E48119D6E39
// works:
$ rvictl -s f320d3ed185c4cd28fc96e48119d6e39
这篇关于rvictl无法正常工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!