手机装有 xposed,注册 wechat。。。

2018-12-06 22:03:15 +08:00
 aaabababa
试了好几个方法,都是注册没多久,就立马被限制登陆了,也找了好几人帮解过几次了,这咋整啊,非得要卸载 xposed 和 root 么?
5573 次点击
所在节点    微信
29 条回复
v24radiant
2018-12-06 22:44:23 +08:00
可以考虑一下刷 magisk 模块?
mmdsun
2018-12-06 22:59:10 +08:00
微信现在这么厉害了吗?去谷歌商店下载微信吧
iX
2018-12-06 23:13:09 +08:00
我见过正常使用也被限制登陆的。
也见过误删聊天记录想恢复(回 app )的。
既然选择了真香,那就不要挣扎了吧。。
C2G
2018-12-07 01:32:44 +08:00
目前还没被封过。
xposed 黑名单试试?
BradZhou
2018-12-07 02:25:52 +08:00
楼主是不是装了有针对 WeChat 的 xposed 的模块什么的吧,卸载这些模块试试呢
mario85
2018-12-07 02:42:05 +08:00
装了 xposed 没有 magisk-hide 没有 rootcloak 直接开微信等同于作死
t6attack
2018-12-07 04:33:56 +08:00
我的也没问题。一直有 xposed & root。但没装过影响微信的模块。
mengyang624
2018-12-07 05:30:14 +08:00
@mario85 #6 magisk-hide 也不能隐藏应用程序列表吧,微信启动要求访问应用程序列表,如果返回给他的数据为空的话直接崩溃掉给你看。。。
mario85
2018-12-07 05:32:33 +08:00
@mengyang624 那就加上 xprivacy,基本够用了。或者自己写一个,数据为空崩溃,那就返回它自己,妥妥的
huclengyue
2018-12-07 08:40:06 +08:00
没有吧。我注册的可以用啊
66beta
2018-12-07 08:46:56 +08:00
魅族 16,xposed +微 X 模块,没啥问题啊,2 个月前也有一大批被封的,还好当时我是一加+ magisk

如果你手机支持 magisk 就不要犹豫了,赶紧换上
CoderEQ
2018-12-07 09:05:51 +08:00
太极或 virtual xposed 了解一下
honeycomb
2018-12-07 09:13:16 +08:00
@mengyang624 不会崩溃的,很多国产 ROM 就自带了这个能力
mengyang624
2018-12-07 09:15:14 +08:00
@mario85 #9
@honeycomb #13
就是 xprivacylua,限制了就会炸,除非清微信的数据,不过清了之后用几天又会炸
honeycomb
2018-12-07 15:35:24 +08:00
@mengyang624
第一个想法是 xprivacyLua 返回了哪些数据?

1,null ?
2,empty List ?
3,国产手机的实现是不是只返回系统应用和 call 这个接口的应用?
mengyang624
2018-12-07 16:49:28 +08:00
@honeycomb #15 应该是空列表,之前不炸的时候,在微信里接了文件,选 用其他应用打开 的时候什么应用都没有
理论上是可以修改返回值的,不过我不会改

-- This file is part of XPrivacyLua.

-- XPrivacyLua is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.

-- XPrivacyLua is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.

-- You should have received a copy of the GNU General Public License
-- along with XPrivacyLua. If not, see <http://www.gnu.org/licenses/>.

-- Copyright 2017-2018 Marcel Bokhorst (M66B)

function after(hook, param)
local list = param:getResult()
if list == nil then
return false
end

local filtered = false
local name = hook:getName()
local cuid = param:getUid()

local index
local info = list:toArray()
for index = info['length'], 1, -1 do
local item = info[index]

local uid
if item == nil then
uid = -1
elseif name == 'PackageManager.getInstalledPackages' or
name == 'PackageManager.getPackagesHoldingPermissions' or
name == 'PackageManager.getPreferredPackages' then
uid = item.applicationInfo.uid -- PackageInfo
elseif name == 'PackageManager.queryIntentActivities' or
name == 'PackageManager.queryIntentActivityOptions' then
uid = item.activityInfo.applicationInfo.uid -- ResolveInfo
elseif name == 'PackageManager.queryIntentContentProviders' then
uid = item.providerInfo.applicationInfo.uid -- ResolveInfo
elseif name == 'PackageManager.queryIntentServices' then
uid = item.serviceInfo.applicationInfo.uid -- ResolveInfo
else
uid = item.uid
end

if uid ~= cuid then
filtered = true
list:remove(index - 1)
end
end

return filtered
end
aaabababa
2018-12-07 17:47:32 +08:00
@v24radiant 第三方 xposed 好像 bug 多。。。
aaabababa
2018-12-07 17:47:58 +08:00
@mmdsun 用的就是 gg 版。
aaabababa
2018-12-07 17:49:46 +08:00
@iX 怎么说也是码农, 不能对老马屈服
aaabababa
2018-12-07 17:50:44 +08:00
@C2G 用了 xposedhide 无效。。。

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/515149

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX