├── README.md ├── Steganalysis ├── CCN │ ├── CCN.py │ └── G729PreProcessor_PMS.py ├── FSM │ ├── FSM.py │ ├── G729PreProcessor_CNV+PMS.py │ ├── finalmodel_FM_10_1000.h5 │ ├── finalweight_FM_10_1000.h5 │ ├── s_FM_10_1000.h5 │ └── t_FM_10_1000.h5 ├── README.md ├── RSM │ ├── G729PreProcessor_CNV+PMS.py │ ├── RSM.py │ └── full_half_model_30.h5 ├── SFFN │ ├── G729PreProcessor.py │ ├── HSFN_result │ │ └── ch_g729a_100_simul_1000ms │ │ │ ├── HSFN │ │ │ ├── checkpoint.pth.tar │ │ │ └── model_best.pth.tar │ │ │ ├── HSFN_finetune │ │ │ ├── checkpoint.pth.tar │ │ │ └── model_best.pth.tar │ │ │ ├── rnn1 │ │ │ ├── checkpoint.pth.tar │ │ │ ├── model_best.pth.tar │ │ │ └── result.txt │ │ │ └── rnn2 │ │ │ ├── checkpoint.pth.tar │ │ │ ├── model_best.pth.tar │ │ │ └── result.txt │ ├── SFFN.py │ ├── SFFN_finetune.py │ ├── SFFN_pretrain1.py │ ├── SFFN_pretrain2.py │ └── SFFN_test.py └── SS-QCCN │ ├── G729PreProcessor_QIM.py │ └── SS-QCCN.py └── Steganography ├── README.md └── Stega_tool ├── StegCoder.exe └── wav2pcm.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/README.md -------------------------------------------------------------------------------- /Steganalysis/CCN/CCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/CCN/CCN.py -------------------------------------------------------------------------------- /Steganalysis/CCN/G729PreProcessor_PMS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/CCN/G729PreProcessor_PMS.py -------------------------------------------------------------------------------- /Steganalysis/FSM/FSM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/FSM/FSM.py -------------------------------------------------------------------------------- /Steganalysis/FSM/G729PreProcessor_CNV+PMS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/FSM/G729PreProcessor_CNV+PMS.py -------------------------------------------------------------------------------- /Steganalysis/FSM/finalmodel_FM_10_1000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/FSM/finalmodel_FM_10_1000.h5 -------------------------------------------------------------------------------- /Steganalysis/FSM/finalweight_FM_10_1000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/FSM/finalweight_FM_10_1000.h5 -------------------------------------------------------------------------------- /Steganalysis/FSM/s_FM_10_1000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/FSM/s_FM_10_1000.h5 -------------------------------------------------------------------------------- /Steganalysis/FSM/t_FM_10_1000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/FSM/t_FM_10_1000.h5 -------------------------------------------------------------------------------- /Steganalysis/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Steganalysis/RSM/G729PreProcessor_CNV+PMS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/RSM/G729PreProcessor_CNV+PMS.py -------------------------------------------------------------------------------- /Steganalysis/RSM/RSM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/RSM/RSM.py -------------------------------------------------------------------------------- /Steganalysis/RSM/full_half_model_30.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/RSM/full_half_model_30.h5 -------------------------------------------------------------------------------- /Steganalysis/SFFN/G729PreProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/G729PreProcessor.py -------------------------------------------------------------------------------- /Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/HSFN/checkpoint.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/HSFN/checkpoint.pth.tar -------------------------------------------------------------------------------- /Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/HSFN/model_best.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/HSFN/model_best.pth.tar -------------------------------------------------------------------------------- /Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/HSFN_finetune/checkpoint.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/HSFN_finetune/checkpoint.pth.tar -------------------------------------------------------------------------------- /Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/HSFN_finetune/model_best.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/HSFN_finetune/model_best.pth.tar -------------------------------------------------------------------------------- /Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/rnn1/checkpoint.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/rnn1/checkpoint.pth.tar -------------------------------------------------------------------------------- /Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/rnn1/model_best.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/rnn1/model_best.pth.tar -------------------------------------------------------------------------------- /Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/rnn1/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/rnn1/result.txt -------------------------------------------------------------------------------- /Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/rnn2/checkpoint.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/rnn2/checkpoint.pth.tar -------------------------------------------------------------------------------- /Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/rnn2/model_best.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/rnn2/model_best.pth.tar -------------------------------------------------------------------------------- /Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/rnn2/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/HSFN_result/ch_g729a_100_simul_1000ms/rnn2/result.txt -------------------------------------------------------------------------------- /Steganalysis/SFFN/SFFN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/SFFN.py -------------------------------------------------------------------------------- /Steganalysis/SFFN/SFFN_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/SFFN_finetune.py -------------------------------------------------------------------------------- /Steganalysis/SFFN/SFFN_pretrain1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/SFFN_pretrain1.py -------------------------------------------------------------------------------- /Steganalysis/SFFN/SFFN_pretrain2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/SFFN_pretrain2.py -------------------------------------------------------------------------------- /Steganalysis/SFFN/SFFN_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SFFN/SFFN_test.py -------------------------------------------------------------------------------- /Steganalysis/SS-QCCN/G729PreProcessor_QIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SS-QCCN/G729PreProcessor_QIM.py -------------------------------------------------------------------------------- /Steganalysis/SS-QCCN/SS-QCCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganalysis/SS-QCCN/SS-QCCN.py -------------------------------------------------------------------------------- /Steganography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganography/README.md -------------------------------------------------------------------------------- /Steganography/Stega_tool/StegCoder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganography/Stega_tool/StegCoder.exe -------------------------------------------------------------------------------- /Steganography/Stega_tool/wav2pcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangzlTHU/VStego800K/HEAD/Steganography/Stega_tool/wav2pcm.py --------------------------------------------------------------------------------