├── .coveragerc ├── .gitignore ├── .streamlit └── config.toml ├── Dockerfile ├── LICENSE ├── Readme.md ├── api.py ├── app.py ├── conf.py ├── docker-compose.yml ├── logger_code.py ├── requirements.txt ├── requirements_light.txt ├── src ├── crawler │ └── crawler.py ├── models │ ├── embedding │ │ ├── __init__.py │ │ ├── clip_embedding.py │ │ ├── embedding.py │ │ ├── google_embedding.py │ │ ├── resnet_embedding.py │ │ └── vit_embedding.py │ ├── llm │ │ ├── __init__.py │ │ ├── chatgpt_llm.py │ │ ├── gemini_llm.py │ │ ├── lama3.py │ │ └── llm.py │ └── logo_detection │ │ ├── __init__.py │ │ └── gemini.py ├── prepare_embedding.py └── use_cases │ ├── use_case_add_brand.py │ ├── use_case_embedding.py │ ├── use_case_llm.py │ ├── use_case_logo.py │ └── use_case_prepare_embedding.py ├── static ├── bh_usa_2024.png ├── brands │ ├── adblocker │ │ ├── 1.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── amazon │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── amex │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── apple │ │ ├── 1.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── arcade │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── att │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── bankofamerica │ │ ├── 1.png │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── blackhat │ │ ├── 1.png │ │ └── multimodalembedding@001-Google.json │ ├── booking │ │ ├── 1.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── credit_agricole │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── dhl │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── disney │ │ ├── 1.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── facebook │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── 9.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── guardio │ │ ├── 1.png │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── instagram │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── metamask │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── microsoft │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── ms_tech_scam │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── netflix │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── norton │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── paypal │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── pixels │ │ ├── 1.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── societe_generale │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── steam │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── tech scam │ │ ├── 1.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── ups │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ ├── usps │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json │ └── yahoo │ │ ├── 1.jpg │ │ ├── CLIP.json │ │ ├── Resnet101.json │ │ ├── ViT.json │ │ └── multimodalembedding@001-Google.json └── logo_looksphishy.png ├── test ├── api │ └── test_api.py ├── brands │ ├── 1.jpg │ ├── 1.txt │ └── multimodalembedding@001-Google.json ├── coverage.svg ├── crawler │ └── test_crawler.py ├── demo │ ├── blackhat │ │ ├── 1.png │ │ └── multimodalembedding@001-Google.json │ ├── f5f108f7-c40b-42c4-a822-ab04921566e6.filesusr.com_html_d5f765_6af734e5743bef6e19cc4529202aab9b.html │ │ ├── multimodalembedding@001-Google.json │ │ └── screenshot.png │ └── f5f108f7-c40b-42c4-a822-ab04921566e6.filesusr.com_html_d5f765_ffe522f68239859d2446f191187b8305.html │ │ ├── multimodalembedding@001-Google.json │ │ └── screenshot.png ├── models │ ├── embedding │ │ └── test_embedding.py │ ├── llm │ │ └── test_llm.py │ └── use_cases │ │ ├── test_use_case_image_embedding.py │ │ └── test_use_case_llm.py └── use_cases │ └── test_use_case_brand.py └── utils.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/.gitignore -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/Readme.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/api.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/app.py -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/conf.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /logger_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/logger_code.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_light.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/requirements_light.txt -------------------------------------------------------------------------------- /src/crawler/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/crawler/crawler.py -------------------------------------------------------------------------------- /src/models/embedding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/embedding/__init__.py -------------------------------------------------------------------------------- /src/models/embedding/clip_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/embedding/clip_embedding.py -------------------------------------------------------------------------------- /src/models/embedding/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/embedding/embedding.py -------------------------------------------------------------------------------- /src/models/embedding/google_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/embedding/google_embedding.py -------------------------------------------------------------------------------- /src/models/embedding/resnet_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/embedding/resnet_embedding.py -------------------------------------------------------------------------------- /src/models/embedding/vit_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/embedding/vit_embedding.py -------------------------------------------------------------------------------- /src/models/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/llm/__init__.py -------------------------------------------------------------------------------- /src/models/llm/chatgpt_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/llm/chatgpt_llm.py -------------------------------------------------------------------------------- /src/models/llm/gemini_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/llm/gemini_llm.py -------------------------------------------------------------------------------- /src/models/llm/lama3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/llm/lama3.py -------------------------------------------------------------------------------- /src/models/llm/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/llm/llm.py -------------------------------------------------------------------------------- /src/models/logo_detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/logo_detection/__init__.py -------------------------------------------------------------------------------- /src/models/logo_detection/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/models/logo_detection/gemini.py -------------------------------------------------------------------------------- /src/prepare_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/prepare_embedding.py -------------------------------------------------------------------------------- /src/use_cases/use_case_add_brand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/use_cases/use_case_add_brand.py -------------------------------------------------------------------------------- /src/use_cases/use_case_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/use_cases/use_case_embedding.py -------------------------------------------------------------------------------- /src/use_cases/use_case_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/use_cases/use_case_llm.py -------------------------------------------------------------------------------- /src/use_cases/use_case_logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/use_cases/use_case_logo.py -------------------------------------------------------------------------------- /src/use_cases/use_case_prepare_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/src/use_cases/use_case_prepare_embedding.py -------------------------------------------------------------------------------- /static/bh_usa_2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/bh_usa_2024.png -------------------------------------------------------------------------------- /static/brands/adblocker/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/adblocker/1.jpg -------------------------------------------------------------------------------- /static/brands/adblocker/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/adblocker/CLIP.json -------------------------------------------------------------------------------- /static/brands/adblocker/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/adblocker/Resnet101.json -------------------------------------------------------------------------------- /static/brands/adblocker/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/adblocker/ViT.json -------------------------------------------------------------------------------- /static/brands/adblocker/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/adblocker/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/amazon/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amazon/1.jpg -------------------------------------------------------------------------------- /static/brands/amazon/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amazon/2.jpg -------------------------------------------------------------------------------- /static/brands/amazon/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amazon/3.jpg -------------------------------------------------------------------------------- /static/brands/amazon/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amazon/CLIP.json -------------------------------------------------------------------------------- /static/brands/amazon/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amazon/Resnet101.json -------------------------------------------------------------------------------- /static/brands/amazon/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amazon/ViT.json -------------------------------------------------------------------------------- /static/brands/amazon/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amazon/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/amex/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amex/1.jpg -------------------------------------------------------------------------------- /static/brands/amex/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amex/2.jpg -------------------------------------------------------------------------------- /static/brands/amex/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amex/CLIP.json -------------------------------------------------------------------------------- /static/brands/amex/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amex/Resnet101.json -------------------------------------------------------------------------------- /static/brands/amex/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amex/ViT.json -------------------------------------------------------------------------------- /static/brands/amex/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/amex/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/apple/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/apple/1.jpg -------------------------------------------------------------------------------- /static/brands/apple/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/apple/CLIP.json -------------------------------------------------------------------------------- /static/brands/apple/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/apple/Resnet101.json -------------------------------------------------------------------------------- /static/brands/apple/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/apple/ViT.json -------------------------------------------------------------------------------- /static/brands/apple/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/apple/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/arcade/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/arcade/1.jpg -------------------------------------------------------------------------------- /static/brands/arcade/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/arcade/2.jpg -------------------------------------------------------------------------------- /static/brands/arcade/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/arcade/3.jpg -------------------------------------------------------------------------------- /static/brands/arcade/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/arcade/CLIP.json -------------------------------------------------------------------------------- /static/brands/arcade/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/arcade/Resnet101.json -------------------------------------------------------------------------------- /static/brands/arcade/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/arcade/ViT.json -------------------------------------------------------------------------------- /static/brands/arcade/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/arcade/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/att/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/att/1.jpg -------------------------------------------------------------------------------- /static/brands/att/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/att/2.jpg -------------------------------------------------------------------------------- /static/brands/att/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/att/3.jpg -------------------------------------------------------------------------------- /static/brands/att/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/att/CLIP.json -------------------------------------------------------------------------------- /static/brands/att/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/att/Resnet101.json -------------------------------------------------------------------------------- /static/brands/att/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/att/ViT.json -------------------------------------------------------------------------------- /static/brands/att/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/att/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/bankofamerica/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/bankofamerica/1.png -------------------------------------------------------------------------------- /static/brands/bankofamerica/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/bankofamerica/CLIP.json -------------------------------------------------------------------------------- /static/brands/bankofamerica/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/bankofamerica/Resnet101.json -------------------------------------------------------------------------------- /static/brands/bankofamerica/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/bankofamerica/ViT.json -------------------------------------------------------------------------------- /static/brands/bankofamerica/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/bankofamerica/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/blackhat/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/blackhat/1.png -------------------------------------------------------------------------------- /static/brands/blackhat/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/blackhat/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/booking/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/booking/1.jpg -------------------------------------------------------------------------------- /static/brands/booking/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/booking/CLIP.json -------------------------------------------------------------------------------- /static/brands/booking/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/booking/Resnet101.json -------------------------------------------------------------------------------- /static/brands/booking/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/booking/ViT.json -------------------------------------------------------------------------------- /static/brands/booking/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/booking/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/credit_agricole/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/credit_agricole/1.jpg -------------------------------------------------------------------------------- /static/brands/credit_agricole/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/credit_agricole/2.jpg -------------------------------------------------------------------------------- /static/brands/credit_agricole/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/credit_agricole/3.jpg -------------------------------------------------------------------------------- /static/brands/credit_agricole/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/credit_agricole/CLIP.json -------------------------------------------------------------------------------- /static/brands/credit_agricole/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/credit_agricole/Resnet101.json -------------------------------------------------------------------------------- /static/brands/credit_agricole/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/credit_agricole/ViT.json -------------------------------------------------------------------------------- /static/brands/credit_agricole/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/credit_agricole/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/dhl/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/dhl/1.jpg -------------------------------------------------------------------------------- /static/brands/dhl/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/dhl/2.jpg -------------------------------------------------------------------------------- /static/brands/dhl/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/dhl/3.jpg -------------------------------------------------------------------------------- /static/brands/dhl/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/dhl/4.jpg -------------------------------------------------------------------------------- /static/brands/dhl/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/dhl/CLIP.json -------------------------------------------------------------------------------- /static/brands/dhl/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/dhl/Resnet101.json -------------------------------------------------------------------------------- /static/brands/dhl/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/dhl/ViT.json -------------------------------------------------------------------------------- /static/brands/dhl/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/dhl/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/disney/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/disney/1.jpg -------------------------------------------------------------------------------- /static/brands/disney/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/disney/CLIP.json -------------------------------------------------------------------------------- /static/brands/disney/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/disney/Resnet101.json -------------------------------------------------------------------------------- /static/brands/disney/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/disney/ViT.json -------------------------------------------------------------------------------- /static/brands/disney/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/disney/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/facebook/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/1.jpg -------------------------------------------------------------------------------- /static/brands/facebook/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/10.jpg -------------------------------------------------------------------------------- /static/brands/facebook/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/11.jpg -------------------------------------------------------------------------------- /static/brands/facebook/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/12.jpg -------------------------------------------------------------------------------- /static/brands/facebook/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/13.jpg -------------------------------------------------------------------------------- /static/brands/facebook/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/14.jpg -------------------------------------------------------------------------------- /static/brands/facebook/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/15.jpg -------------------------------------------------------------------------------- /static/brands/facebook/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/16.jpg -------------------------------------------------------------------------------- /static/brands/facebook/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/17.jpg -------------------------------------------------------------------------------- /static/brands/facebook/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/18.jpg -------------------------------------------------------------------------------- /static/brands/facebook/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/19.jpg -------------------------------------------------------------------------------- /static/brands/facebook/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/2.jpg -------------------------------------------------------------------------------- /static/brands/facebook/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/20.jpg -------------------------------------------------------------------------------- /static/brands/facebook/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/21.jpg -------------------------------------------------------------------------------- /static/brands/facebook/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/22.jpg -------------------------------------------------------------------------------- /static/brands/facebook/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/23.jpg -------------------------------------------------------------------------------- /static/brands/facebook/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/24.jpg -------------------------------------------------------------------------------- /static/brands/facebook/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/3.jpg -------------------------------------------------------------------------------- /static/brands/facebook/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/4.jpg -------------------------------------------------------------------------------- /static/brands/facebook/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/5.jpg -------------------------------------------------------------------------------- /static/brands/facebook/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/6.jpg -------------------------------------------------------------------------------- /static/brands/facebook/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/7.jpg -------------------------------------------------------------------------------- /static/brands/facebook/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/8.jpg -------------------------------------------------------------------------------- /static/brands/facebook/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/9.jpg -------------------------------------------------------------------------------- /static/brands/facebook/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/CLIP.json -------------------------------------------------------------------------------- /static/brands/facebook/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/Resnet101.json -------------------------------------------------------------------------------- /static/brands/facebook/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/ViT.json -------------------------------------------------------------------------------- /static/brands/facebook/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/facebook/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/guardio/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/guardio/1.png -------------------------------------------------------------------------------- /static/brands/guardio/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/guardio/CLIP.json -------------------------------------------------------------------------------- /static/brands/guardio/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/guardio/Resnet101.json -------------------------------------------------------------------------------- /static/brands/guardio/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/guardio/ViT.json -------------------------------------------------------------------------------- /static/brands/guardio/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/guardio/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/instagram/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/instagram/1.jpg -------------------------------------------------------------------------------- /static/brands/instagram/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/instagram/2.jpg -------------------------------------------------------------------------------- /static/brands/instagram/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/instagram/3.jpg -------------------------------------------------------------------------------- /static/brands/instagram/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/instagram/CLIP.json -------------------------------------------------------------------------------- /static/brands/instagram/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/instagram/Resnet101.json -------------------------------------------------------------------------------- /static/brands/instagram/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/instagram/ViT.json -------------------------------------------------------------------------------- /static/brands/instagram/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/instagram/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/metamask/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/metamask/1.jpg -------------------------------------------------------------------------------- /static/brands/metamask/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/metamask/2.jpg -------------------------------------------------------------------------------- /static/brands/metamask/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/metamask/3.jpg -------------------------------------------------------------------------------- /static/brands/metamask/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/metamask/CLIP.json -------------------------------------------------------------------------------- /static/brands/metamask/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/metamask/Resnet101.json -------------------------------------------------------------------------------- /static/brands/metamask/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/metamask/ViT.json -------------------------------------------------------------------------------- /static/brands/metamask/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/metamask/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/microsoft/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/microsoft/1.jpg -------------------------------------------------------------------------------- /static/brands/microsoft/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/microsoft/2.jpg -------------------------------------------------------------------------------- /static/brands/microsoft/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/microsoft/3.jpg -------------------------------------------------------------------------------- /static/brands/microsoft/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/microsoft/CLIP.json -------------------------------------------------------------------------------- /static/brands/microsoft/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/microsoft/Resnet101.json -------------------------------------------------------------------------------- /static/brands/microsoft/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/microsoft/ViT.json -------------------------------------------------------------------------------- /static/brands/microsoft/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/microsoft/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/ms_tech_scam/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ms_tech_scam/1.jpg -------------------------------------------------------------------------------- /static/brands/ms_tech_scam/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ms_tech_scam/2.jpg -------------------------------------------------------------------------------- /static/brands/ms_tech_scam/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ms_tech_scam/3.jpg -------------------------------------------------------------------------------- /static/brands/ms_tech_scam/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ms_tech_scam/CLIP.json -------------------------------------------------------------------------------- /static/brands/ms_tech_scam/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ms_tech_scam/Resnet101.json -------------------------------------------------------------------------------- /static/brands/ms_tech_scam/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ms_tech_scam/ViT.json -------------------------------------------------------------------------------- /static/brands/ms_tech_scam/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ms_tech_scam/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/netflix/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/netflix/1.jpg -------------------------------------------------------------------------------- /static/brands/netflix/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/netflix/2.jpg -------------------------------------------------------------------------------- /static/brands/netflix/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/netflix/CLIP.json -------------------------------------------------------------------------------- /static/brands/netflix/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/netflix/Resnet101.json -------------------------------------------------------------------------------- /static/brands/netflix/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/netflix/ViT.json -------------------------------------------------------------------------------- /static/brands/netflix/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/netflix/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/norton/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/norton/1.jpg -------------------------------------------------------------------------------- /static/brands/norton/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/norton/2.jpg -------------------------------------------------------------------------------- /static/brands/norton/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/norton/CLIP.json -------------------------------------------------------------------------------- /static/brands/norton/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/norton/Resnet101.json -------------------------------------------------------------------------------- /static/brands/norton/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/norton/ViT.json -------------------------------------------------------------------------------- /static/brands/norton/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/norton/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/paypal/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/paypal/1.jpg -------------------------------------------------------------------------------- /static/brands/paypal/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/paypal/2.jpg -------------------------------------------------------------------------------- /static/brands/paypal/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/paypal/3.jpg -------------------------------------------------------------------------------- /static/brands/paypal/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/paypal/4.jpg -------------------------------------------------------------------------------- /static/brands/paypal/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/paypal/CLIP.json -------------------------------------------------------------------------------- /static/brands/paypal/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/paypal/Resnet101.json -------------------------------------------------------------------------------- /static/brands/paypal/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/paypal/ViT.json -------------------------------------------------------------------------------- /static/brands/paypal/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/paypal/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/pixels/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/pixels/1.jpg -------------------------------------------------------------------------------- /static/brands/pixels/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/pixels/CLIP.json -------------------------------------------------------------------------------- /static/brands/pixels/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/pixels/Resnet101.json -------------------------------------------------------------------------------- /static/brands/pixels/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/pixels/ViT.json -------------------------------------------------------------------------------- /static/brands/pixels/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/pixels/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/societe_generale/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/societe_generale/1.jpg -------------------------------------------------------------------------------- /static/brands/societe_generale/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/societe_generale/2.jpg -------------------------------------------------------------------------------- /static/brands/societe_generale/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/societe_generale/CLIP.json -------------------------------------------------------------------------------- /static/brands/societe_generale/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/societe_generale/Resnet101.json -------------------------------------------------------------------------------- /static/brands/societe_generale/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/societe_generale/ViT.json -------------------------------------------------------------------------------- /static/brands/societe_generale/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/societe_generale/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/steam/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/steam/1.jpg -------------------------------------------------------------------------------- /static/brands/steam/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/steam/2.jpg -------------------------------------------------------------------------------- /static/brands/steam/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/steam/3.jpg -------------------------------------------------------------------------------- /static/brands/steam/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/steam/CLIP.json -------------------------------------------------------------------------------- /static/brands/steam/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/steam/Resnet101.json -------------------------------------------------------------------------------- /static/brands/steam/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/steam/ViT.json -------------------------------------------------------------------------------- /static/brands/steam/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/steam/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/tech scam/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/tech scam/1.jpg -------------------------------------------------------------------------------- /static/brands/tech scam/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/tech scam/CLIP.json -------------------------------------------------------------------------------- /static/brands/tech scam/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/tech scam/Resnet101.json -------------------------------------------------------------------------------- /static/brands/tech scam/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/tech scam/ViT.json -------------------------------------------------------------------------------- /static/brands/tech scam/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/tech scam/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/ups/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ups/1.jpg -------------------------------------------------------------------------------- /static/brands/ups/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ups/2.jpg -------------------------------------------------------------------------------- /static/brands/ups/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ups/3.jpg -------------------------------------------------------------------------------- /static/brands/ups/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ups/CLIP.json -------------------------------------------------------------------------------- /static/brands/ups/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ups/Resnet101.json -------------------------------------------------------------------------------- /static/brands/ups/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ups/ViT.json -------------------------------------------------------------------------------- /static/brands/ups/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/ups/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/usps/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/usps/1.jpg -------------------------------------------------------------------------------- /static/brands/usps/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/usps/2.jpg -------------------------------------------------------------------------------- /static/brands/usps/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/usps/3.jpg -------------------------------------------------------------------------------- /static/brands/usps/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/usps/4.jpg -------------------------------------------------------------------------------- /static/brands/usps/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/usps/5.jpg -------------------------------------------------------------------------------- /static/brands/usps/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/usps/CLIP.json -------------------------------------------------------------------------------- /static/brands/usps/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/usps/Resnet101.json -------------------------------------------------------------------------------- /static/brands/usps/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/usps/ViT.json -------------------------------------------------------------------------------- /static/brands/usps/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/usps/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/brands/yahoo/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/yahoo/1.jpg -------------------------------------------------------------------------------- /static/brands/yahoo/CLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/yahoo/CLIP.json -------------------------------------------------------------------------------- /static/brands/yahoo/Resnet101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/yahoo/Resnet101.json -------------------------------------------------------------------------------- /static/brands/yahoo/ViT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/yahoo/ViT.json -------------------------------------------------------------------------------- /static/brands/yahoo/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/brands/yahoo/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /static/logo_looksphishy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/static/logo_looksphishy.png -------------------------------------------------------------------------------- /test/api/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/api/test_api.py -------------------------------------------------------------------------------- /test/brands/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/brands/1.jpg -------------------------------------------------------------------------------- /test/brands/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/brands/1.txt -------------------------------------------------------------------------------- /test/brands/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/brands/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /test/coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/coverage.svg -------------------------------------------------------------------------------- /test/crawler/test_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/crawler/test_crawler.py -------------------------------------------------------------------------------- /test/demo/blackhat/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/demo/blackhat/1.png -------------------------------------------------------------------------------- /test/demo/blackhat/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/demo/blackhat/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /test/demo/f5f108f7-c40b-42c4-a822-ab04921566e6.filesusr.com_html_d5f765_6af734e5743bef6e19cc4529202aab9b.html/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/demo/f5f108f7-c40b-42c4-a822-ab04921566e6.filesusr.com_html_d5f765_6af734e5743bef6e19cc4529202aab9b.html/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /test/demo/f5f108f7-c40b-42c4-a822-ab04921566e6.filesusr.com_html_d5f765_6af734e5743bef6e19cc4529202aab9b.html/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/demo/f5f108f7-c40b-42c4-a822-ab04921566e6.filesusr.com_html_d5f765_6af734e5743bef6e19cc4529202aab9b.html/screenshot.png -------------------------------------------------------------------------------- /test/demo/f5f108f7-c40b-42c4-a822-ab04921566e6.filesusr.com_html_d5f765_ffe522f68239859d2446f191187b8305.html/multimodalembedding@001-Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/demo/f5f108f7-c40b-42c4-a822-ab04921566e6.filesusr.com_html_d5f765_ffe522f68239859d2446f191187b8305.html/multimodalembedding@001-Google.json -------------------------------------------------------------------------------- /test/demo/f5f108f7-c40b-42c4-a822-ab04921566e6.filesusr.com_html_d5f765_ffe522f68239859d2446f191187b8305.html/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/demo/f5f108f7-c40b-42c4-a822-ab04921566e6.filesusr.com_html_d5f765_ffe522f68239859d2446f191187b8305.html/screenshot.png -------------------------------------------------------------------------------- /test/models/embedding/test_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/models/embedding/test_embedding.py -------------------------------------------------------------------------------- /test/models/llm/test_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/models/llm/test_llm.py -------------------------------------------------------------------------------- /test/models/use_cases/test_use_case_image_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/models/use_cases/test_use_case_image_embedding.py -------------------------------------------------------------------------------- /test/models/use_cases/test_use_case_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/models/use_cases/test_use_case_llm.py -------------------------------------------------------------------------------- /test/use_cases/test_use_case_brand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/test/use_cases/test_use_case_brand.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardiosec/looksphishy/HEAD/utils.py --------------------------------------------------------------------------------