gitextract_anrct33o/ ├── .github/ │ └── workflows/ │ └── go.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Detector.py ├── LICENSE ├── Makefile ├── Preprocessing.py ├── README.md ├── config/ │ ├── ctags │ └── movery_config.py ├── config.json ├── config.json.example ├── docs/ │ └── test_report.md ├── go/ │ ├── README.md │ ├── cmd/ │ │ └── movery/ │ │ └── main.go │ ├── go.mod │ ├── internal/ │ │ ├── analyzers/ │ │ │ └── language.go │ │ ├── api/ │ │ │ └── server.go │ │ ├── cmd/ │ │ │ ├── generate.go │ │ │ ├── root.go │ │ │ ├── scan.go │ │ │ ├── server.go │ │ │ └── web.go │ │ ├── config/ │ │ │ └── config.go │ │ ├── core/ │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── models.go │ │ │ ├── scanner.go │ │ │ └── scanner_test.go │ │ ├── detectors/ │ │ │ ├── javascript.go │ │ │ ├── python.go │ │ │ ├── tests/ │ │ │ │ └── detector_test.go │ │ │ └── vulnerability.go │ │ ├── reporters/ │ │ │ ├── html.go │ │ │ ├── json.go │ │ │ └── xml.go │ │ ├── utils/ │ │ │ ├── logging.go │ │ │ ├── memory.go │ │ │ ├── parallel.go │ │ │ ├── security.go │ │ │ ├── security_test.go │ │ │ └── tests/ │ │ │ └── security_test.go │ │ └── web/ │ │ ├── app.go │ │ ├── static/ │ │ │ ├── css/ │ │ │ │ └── style.css │ │ │ └── js/ │ │ │ └── app.js │ │ └── templates/ │ │ └── index.html │ ├── tests/ │ │ ├── integration/ │ │ │ └── workflow_test.go │ │ └── security/ │ │ └── security_test.go │ └── web/ │ └── templates/ │ └── report.html ├── movery/ │ ├── __init__.py │ ├── analyzers/ │ │ ├── __init__.py │ │ ├── code_analyzer.py │ │ └── language.py │ ├── config/ │ │ ├── __init__.py │ │ ├── config.json │ │ └── config.py │ ├── config.json │ ├── detectors/ │ │ ├── __init__.py │ │ └── vulnerability.py │ ├── go/ │ │ └── cmd/ │ │ └── movery/ │ │ └── main.go │ ├── main.py │ ├── reporters/ │ │ ├── __init__.py │ │ └── html.py │ ├── templates/ │ │ └── report.html │ ├── tests/ │ │ ├── integration/ │ │ │ └── test_workflow.py │ │ ├── security/ │ │ │ └── test_security.py │ │ └── unit/ │ │ ├── test_analyzer.py │ │ ├── test_detector.py │ │ ├── test_security.py │ │ └── test_vulnerability.py │ └── utils/ │ ├── __init__.py │ ├── logging.py │ ├── memory.py │ ├── parallel.py │ └── security.py ├── requirements.txt ├── setup.py ├── signatures.json ├── signatures.json.example └── src/ ├── analyzers/ │ └── language.py ├── config/ │ └── config.py ├── detectors/ │ └── vulnerability.py ├── main.py ├── reporters/ │ └── html.py └── utils/ ├── logging.py ├── memory.py └── parallel.py