当前位置:   article > 正文

JS逆向加密——补浏览器环境方式_唐志远逆向

唐志远逆向

补浏览器环境方式

 

1,首先要说的肯定是 Proxy 了,直接上代码:

  1. window = new Proxy(global, {
  2. get: function (target, key, receiver) {
  3. console.log("window.get", key, target[key]);
  4. if (key=="location"){
  5. location = new Proxy(target[key], {
  6. get: function (_target, _key, _receiver) {
  7. console.log("window.get", key, _key, _target[_key]);
  8. if (_key=="port"){
  9. console.log("_key ",_key)
  10. }
  11. return _target[_key];
  12. }
  13. })
  14. }
  15. return target[key];
  16. },
  17. set: function (target, key, value, receiver) {
  18. console.log("window.set", key, value);
  19. target[key] = value;
  20. }
  21. });
  22. window.a = {};
  23. window.a;
  24. window.location = {a: 2};
  25. window.location.a;
  26. window.b = {a: 2};
  27. window.b.a;
  28. location.port;
  29. console.log("--------------");
  30. window.location.port;

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/784925
推荐阅读
相关标签
  

闽ICP备14008679号