1 Star 2 Fork 0

诶嘿嘿 / Intensio-Obfuscator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
python_code_malfunctions.md 1.88 KB
一键复制 编辑 原始数据 按行查看 历史
Hnfull 提交于 2020-01-28 03:44 . release version 1.0.8

Malfunctions

1) When [-rts, --replacetostr] is called

  • If a variable/class/function has an identical name with a word between ' ' or " " in an stdout function
    • Can generate an error = no
      • input:

        test = "mixer"
        
        print("this is a test !")
      • output:

        ChrVMVxrZASDnzCcsWSmIBrfoWgQkdKD = "mixer"
        
        print("this is a ChrVMVxrZASDnzCcsWSmIBrfoWgQkdKD !")
        # your text will have the same value that the mixer value of `variables/class/function`

2) when you called [-rfn, --replacefilename]

  • If you import python file

    • Can generate an error = no
      • Recommended:

        # I have test1.py file that contain several functions or classes
        from path.test1 import get
        get("user")
      • Not Recommended:

        # I have test1.py file that contain several functions or classes
        from path import test1
        test1.get("user")
      • Intensio-Obfuscator will detect a non compliant format code for obfuscation and exclude this file name automatically

      • You can excldue mannualy a file name file name exclusion

  • If you import python file and in path the file name have the same name that a folder

    • Can generate an error = no
      • Recommended:

        # I have test1.py file that contain several functions or classes
        from path.mytest.test1 import get
        get("user")
      • Not Recommended:

        # I have test1.py file that contain several functions or classes
        from path.test1.test1 import get
        get("user")
      • Intensio-Obfuscator will detect a non compliant format code for obfuscation and exclude this file name automatically

1
https://gitee.com/hacktor/Intensio-Obfuscator.git
git@gitee.com:hacktor/Intensio-Obfuscator.git
hacktor
Intensio-Obfuscator
Intensio-Obfuscator
master

搜索帮助