gitextract_38x9q4gh/ ├── .github/ │ └── workflows/ │ ├── codeql.yml │ ├── lint.yml │ └── pytest.yml ├── .gitignore ├── LICENSE ├── Plugin_for_Chrome/ │ ├── README.md │ ├── client/ │ │ ├── background.js │ │ ├── manifest.json │ │ └── popup/ │ │ ├── popup.css │ │ ├── popup.html │ │ └── popup.js │ └── server/ │ └── app.py ├── README.md ├── WEBtool/ │ ├── app.py │ ├── phishpedia_web.py │ ├── readme.md │ ├── static/ │ │ ├── css/ │ │ │ ├── sidebar.css │ │ │ └── style.css │ │ └── js/ │ │ ├── main.js │ │ └── sidebar.js │ ├── templates/ │ │ └── index.html │ └── utils_web.py ├── configs.py ├── configs.yaml ├── datasets/ │ └── test_sites/ │ └── accounts.g.cdcde.com/ │ ├── html.txt │ └── info.txt ├── logo_matching.py ├── logo_recog.py ├── models.py ├── phishpedia.py ├── pixi.toml ├── setup.bat ├── setup.sh └── utils.py