├── LICENSE ├── README.md ├── REQUIREMENTS ├── data ├── data.csv ├── data2.csv └── screenshot │ ├── async.png │ └── sync.png ├── model ├── URLCNN.py ├── data_helper.py ├── eval.py ├── train.py └── word2vec_helpers.py └── server ├── db.sqlite3 ├── detection ├── __init__.py ├── admin.py ├── data_helper.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py ├── views.py └── word2vec_helpers.py ├── manage.py └── server ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/README.md -------------------------------------------------------------------------------- /REQUIREMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/REQUIREMENTS -------------------------------------------------------------------------------- /data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/data/data.csv -------------------------------------------------------------------------------- /data/data2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/data/data2.csv -------------------------------------------------------------------------------- /data/screenshot/async.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/data/screenshot/async.png -------------------------------------------------------------------------------- /data/screenshot/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/data/screenshot/sync.png -------------------------------------------------------------------------------- /model/URLCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/model/URLCNN.py -------------------------------------------------------------------------------- /model/data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/model/data_helper.py -------------------------------------------------------------------------------- /model/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/model/eval.py -------------------------------------------------------------------------------- /model/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/model/train.py -------------------------------------------------------------------------------- /model/word2vec_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/model/word2vec_helpers.py -------------------------------------------------------------------------------- /server/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/server/db.sqlite3 -------------------------------------------------------------------------------- /server/detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/detection/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/server/detection/admin.py -------------------------------------------------------------------------------- /server/detection/data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/server/detection/data_helper.py -------------------------------------------------------------------------------- /server/detection/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/detection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/server/detection/models.py -------------------------------------------------------------------------------- /server/detection/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/server/detection/tests.py -------------------------------------------------------------------------------- /server/detection/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/server/detection/urls.py -------------------------------------------------------------------------------- /server/detection/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/server/detection/views.py -------------------------------------------------------------------------------- /server/detection/word2vec_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/server/detection/word2vec_helpers.py -------------------------------------------------------------------------------- /server/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/server/manage.py -------------------------------------------------------------------------------- /server/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/server/server/settings.py -------------------------------------------------------------------------------- /server/server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/server/server/urls.py -------------------------------------------------------------------------------- /server/server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwellszhang/DetectMaliciousURL/HEAD/server/server/wsgi.py --------------------------------------------------------------------------------