├── Conv.py ├── LICENSE ├── LSTM.py ├── MLP.py ├── README.md ├── SVM.py ├── data ├── normal_examples.csv └── xssed.csv ├── file └── init.txt ├── log └── init.txt ├── processing.py ├── utils.py ├── word2vec.py └── word2vec_gensim.py /Conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SparkSharly/DL_for_xss/HEAD/Conv.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SparkSharly/DL_for_xss/HEAD/LICENSE -------------------------------------------------------------------------------- /LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SparkSharly/DL_for_xss/HEAD/LSTM.py -------------------------------------------------------------------------------- /MLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SparkSharly/DL_for_xss/HEAD/MLP.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SparkSharly/DL_for_xss/HEAD/README.md -------------------------------------------------------------------------------- /SVM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SparkSharly/DL_for_xss/HEAD/SVM.py -------------------------------------------------------------------------------- /data/normal_examples.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SparkSharly/DL_for_xss/HEAD/data/normal_examples.csv -------------------------------------------------------------------------------- /data/xssed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SparkSharly/DL_for_xss/HEAD/data/xssed.csv -------------------------------------------------------------------------------- /file/init.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/init.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SparkSharly/DL_for_xss/HEAD/processing.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SparkSharly/DL_for_xss/HEAD/utils.py -------------------------------------------------------------------------------- /word2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SparkSharly/DL_for_xss/HEAD/word2vec.py -------------------------------------------------------------------------------- /word2vec_gensim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SparkSharly/DL_for_xss/HEAD/word2vec_gensim.py --------------------------------------------------------------------------------