最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

android - How to make WebView to not store Cookies cache on disk - Stack Overflow

programmeradmin0浏览0评论

I'm building android app via React Native. We're using package, which I assume wraps native WebView component.

The problem that in the end we get a file in data/data/com.myapp/app_webview/Default/Cookies

which contain sensitive information - unencrypted cookies (we were flagged by our security team), that any malicious person can extract easily using adb shell if he steals a device.

I already tried to disable cache for webview and use incognito mode:

      cacheEnabled={false}
      cacheMode={'LOAD_NO_CACHE'}
      thirdPartyCookiesEnabled={false}
      incognito={true}

and clear cookies via CookieManager:

    await CookieManager.clearAll();
    await CookieManager.removeSessionCookies();

but no luck.

发布评论

评论列表(0)

  1. 暂无评论