├── README.md ├── analyzer └── pintools │ ├── dll │ └── win32 │ │ ├── bblprofiler.dll │ │ ├── bblprofiler.dll.asc │ │ ├── entropy-random.dll │ │ ├── entropy-random.dll.asc │ │ ├── keyTracker.dll │ │ └── keyTracker.dll.asc │ └── src │ ├── bblTracer.h │ ├── branchTracer.h │ ├── bundle.h │ ├── callTracer.h │ ├── citation.h │ ├── common.cpp │ ├── compressor.cpp │ ├── configReader.cpp │ ├── configReader.h │ ├── entropy.h │ ├── fileManager.cpp │ ├── funcAnalyzer.h │ ├── funcTracer.h │ ├── inputRecorder.h │ ├── kaleidoscope.h │ ├── keyhunter.h │ ├── ksTracer.h │ ├── kscope.h │ ├── lzo │ ├── COPYING │ ├── Makefile │ ├── README.LZO │ ├── lzoconf.h │ ├── lzodefs.h │ ├── minilzo.c │ ├── minilzo.h │ └── testmini.c │ ├── main.cpp │ ├── memAnalyzer.h │ ├── memTracer.h │ └── prov.h ├── challenge-ccs18 ├── README.md ├── imagineViewer.7z └── imagineViewer.7z.asc ├── test suite ├── cryptoLibs │ ├── botan │ │ ├── aes_test.cpp │ │ ├── build.h │ │ ├── dsa_test.cpp │ │ ├── ecdsa_test.cpp │ │ └── rsa_test.cpp │ ├── cryptopp │ │ ├── aes_test.cpp │ │ ├── dsa_test.cpp │ │ ├── ecdsa_test.cpp │ │ └── rsa_test.cpp │ ├── gcrypt │ │ ├── testAES.cpp │ │ ├── testDSA.cpp │ │ ├── testECDSA.cpp │ │ └── testRSA.cpp │ ├── libsodium │ │ └── aes_test.cpp │ ├── mbedtls │ │ ├── aes_test.cpp │ │ ├── dsa_test.cpp │ │ ├── ecdsa_test.cpp │ │ └── rsa_test.cpp │ ├── nettle │ │ ├── aes_test.cpp │ │ ├── dsa_test.cpp │ │ ├── ecdsa_test.cpp │ │ └── rsa_test.cpp │ ├── openssl │ │ ├── aes_test.cpp │ │ ├── dsa_test.cpp │ │ ├── ecdsa_test.cpp │ │ └── rsa_test.cpp │ ├── tomcrypt │ │ ├── aes_test.cpp │ │ ├── dsa_test.cpp │ │ ├── ecdsa_test.cpp │ │ └── rsa_test.cpp │ └── wolfssl │ │ ├── aes_test.cpp │ │ ├── dsa_test.cpp │ │ ├── ecdsa_test.cpp │ │ └── rsa_test.cpp └── cryptoPrograms │ ├── 7zip.7z │ ├── 7zip.7z.asc │ ├── PSCP.7z │ ├── PSCP.7z.asc │ ├── README.md │ ├── WinRAR.7z │ ├── WinRAR.7z.asc │ ├── ccrypt.7z │ ├── ccrypt.7z.asc │ ├── cryptcat.7z │ ├── cryptcat.7z.asc │ ├── cryptochief.7z │ ├── cryptochief.7z.asc │ ├── enpass.7z │ ├── enpass.7z.asc │ ├── imagineViewer.7z │ ├── imagineViewer.7z.asc │ ├── ipmsg.7z │ ├── ipmsg.7z.asc │ ├── keepass.7z │ ├── keepass.7z.asc │ ├── mupdf.7z │ ├── mupdf.7z.asc │ ├── ultrasurf.7z │ ├── ultrasurf.7z.asc │ ├── wget.7z │ └── wget.7z.asc └── tex ├── acmart.cls ├── acmart.dtx ├── acmart.ins ├── appendix.tex ├── ccs18.pdf ├── def.tex ├── figure ├── barg.pdf ├── code.pdf ├── cryptochief.pdf ├── depend.pdf ├── flow.pdf ├── ipmsg.pdf ├── keyPinpoint.pdf ├── perf.tikz └── whittling.pdf ├── ibi.bib ├── main.tex └── paper ├── 00_abs.tex ├── 01_intro.tex ├── 02_background.tex ├── 03_design.tex ├── 03_overview.tex ├── 04_implementation.tex ├── 05_evaluation.tex ├── 06_discussion.tex ├── 07_related.tex ├── 08_conclusion.tex ├── big-table.tex ├── cmp-table.tex └── perf_tab.tex /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/README.md -------------------------------------------------------------------------------- /analyzer/pintools/dll/win32/bblprofiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/dll/win32/bblprofiler.dll -------------------------------------------------------------------------------- /analyzer/pintools/dll/win32/bblprofiler.dll.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/dll/win32/bblprofiler.dll.asc -------------------------------------------------------------------------------- /analyzer/pintools/dll/win32/entropy-random.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/dll/win32/entropy-random.dll -------------------------------------------------------------------------------- /analyzer/pintools/dll/win32/entropy-random.dll.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/dll/win32/entropy-random.dll.asc -------------------------------------------------------------------------------- /analyzer/pintools/dll/win32/keyTracker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/dll/win32/keyTracker.dll -------------------------------------------------------------------------------- /analyzer/pintools/dll/win32/keyTracker.dll.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/dll/win32/keyTracker.dll.asc -------------------------------------------------------------------------------- /analyzer/pintools/src/bblTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/bblTracer.h -------------------------------------------------------------------------------- /analyzer/pintools/src/branchTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/branchTracer.h -------------------------------------------------------------------------------- /analyzer/pintools/src/bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/bundle.h -------------------------------------------------------------------------------- /analyzer/pintools/src/callTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/callTracer.h -------------------------------------------------------------------------------- /analyzer/pintools/src/citation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/citation.h -------------------------------------------------------------------------------- /analyzer/pintools/src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/common.cpp -------------------------------------------------------------------------------- /analyzer/pintools/src/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/compressor.cpp -------------------------------------------------------------------------------- /analyzer/pintools/src/configReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/configReader.cpp -------------------------------------------------------------------------------- /analyzer/pintools/src/configReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/configReader.h -------------------------------------------------------------------------------- /analyzer/pintools/src/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/entropy.h -------------------------------------------------------------------------------- /analyzer/pintools/src/fileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/fileManager.cpp -------------------------------------------------------------------------------- /analyzer/pintools/src/funcAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/funcAnalyzer.h -------------------------------------------------------------------------------- /analyzer/pintools/src/funcTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/funcTracer.h -------------------------------------------------------------------------------- /analyzer/pintools/src/inputRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/inputRecorder.h -------------------------------------------------------------------------------- /analyzer/pintools/src/kaleidoscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/kaleidoscope.h -------------------------------------------------------------------------------- /analyzer/pintools/src/keyhunter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/keyhunter.h -------------------------------------------------------------------------------- /analyzer/pintools/src/ksTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/ksTracer.h -------------------------------------------------------------------------------- /analyzer/pintools/src/kscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/kscope.h -------------------------------------------------------------------------------- /analyzer/pintools/src/lzo/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/lzo/COPYING -------------------------------------------------------------------------------- /analyzer/pintools/src/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/lzo/Makefile -------------------------------------------------------------------------------- /analyzer/pintools/src/lzo/README.LZO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/lzo/README.LZO -------------------------------------------------------------------------------- /analyzer/pintools/src/lzo/lzoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/lzo/lzoconf.h -------------------------------------------------------------------------------- /analyzer/pintools/src/lzo/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/lzo/lzodefs.h -------------------------------------------------------------------------------- /analyzer/pintools/src/lzo/minilzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/lzo/minilzo.c -------------------------------------------------------------------------------- /analyzer/pintools/src/lzo/minilzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/lzo/minilzo.h -------------------------------------------------------------------------------- /analyzer/pintools/src/lzo/testmini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/lzo/testmini.c -------------------------------------------------------------------------------- /analyzer/pintools/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/main.cpp -------------------------------------------------------------------------------- /analyzer/pintools/src/memAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/memAnalyzer.h -------------------------------------------------------------------------------- /analyzer/pintools/src/memTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/memTracer.h -------------------------------------------------------------------------------- /analyzer/pintools/src/prov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/analyzer/pintools/src/prov.h -------------------------------------------------------------------------------- /challenge-ccs18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/challenge-ccs18/README.md -------------------------------------------------------------------------------- /challenge-ccs18/imagineViewer.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/challenge-ccs18/imagineViewer.7z -------------------------------------------------------------------------------- /challenge-ccs18/imagineViewer.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/challenge-ccs18/imagineViewer.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoLibs/botan/aes_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/botan/aes_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/botan/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/botan/build.h -------------------------------------------------------------------------------- /test suite/cryptoLibs/botan/dsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/botan/dsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/botan/ecdsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/botan/ecdsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/botan/rsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/botan/rsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/cryptopp/aes_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/cryptopp/aes_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/cryptopp/dsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/cryptopp/dsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/cryptopp/ecdsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/cryptopp/ecdsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/cryptopp/rsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/cryptopp/rsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/gcrypt/testAES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/gcrypt/testAES.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/gcrypt/testDSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/gcrypt/testDSA.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/gcrypt/testECDSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/gcrypt/testECDSA.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/gcrypt/testRSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/gcrypt/testRSA.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/libsodium/aes_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/libsodium/aes_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/mbedtls/aes_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/mbedtls/aes_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/mbedtls/dsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/mbedtls/dsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/mbedtls/ecdsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/mbedtls/ecdsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/mbedtls/rsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/mbedtls/rsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/nettle/aes_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/nettle/aes_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/nettle/dsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/nettle/dsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/nettle/ecdsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/nettle/ecdsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/nettle/rsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/nettle/rsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/openssl/aes_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/openssl/aes_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/openssl/dsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/openssl/dsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/openssl/ecdsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/openssl/ecdsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/openssl/rsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/openssl/rsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/tomcrypt/aes_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/tomcrypt/aes_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/tomcrypt/dsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/tomcrypt/dsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/tomcrypt/ecdsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/tomcrypt/ecdsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/tomcrypt/rsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/tomcrypt/rsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/wolfssl/aes_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/wolfssl/aes_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/wolfssl/dsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/wolfssl/dsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/wolfssl/ecdsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/wolfssl/ecdsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoLibs/wolfssl/rsa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoLibs/wolfssl/rsa_test.cpp -------------------------------------------------------------------------------- /test suite/cryptoPrograms/7zip.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/7zip.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/7zip.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/7zip.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoPrograms/PSCP.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/PSCP.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/PSCP.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/PSCP.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoPrograms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/README.md -------------------------------------------------------------------------------- /test suite/cryptoPrograms/WinRAR.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/WinRAR.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/WinRAR.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/WinRAR.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoPrograms/ccrypt.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/ccrypt.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/ccrypt.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/ccrypt.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoPrograms/cryptcat.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/cryptcat.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/cryptcat.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/cryptcat.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoPrograms/cryptochief.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/cryptochief.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/cryptochief.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/cryptochief.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoPrograms/enpass.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/enpass.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/enpass.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/enpass.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoPrograms/imagineViewer.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/imagineViewer.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/imagineViewer.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/imagineViewer.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoPrograms/ipmsg.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/ipmsg.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/ipmsg.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/ipmsg.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoPrograms/keepass.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/keepass.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/keepass.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/keepass.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoPrograms/mupdf.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/mupdf.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/mupdf.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/mupdf.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoPrograms/ultrasurf.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/ultrasurf.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/ultrasurf.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/ultrasurf.7z.asc -------------------------------------------------------------------------------- /test suite/cryptoPrograms/wget.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/wget.7z -------------------------------------------------------------------------------- /test suite/cryptoPrograms/wget.7z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/test suite/cryptoPrograms/wget.7z.asc -------------------------------------------------------------------------------- /tex/acmart.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/acmart.cls -------------------------------------------------------------------------------- /tex/acmart.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/acmart.dtx -------------------------------------------------------------------------------- /tex/acmart.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/acmart.ins -------------------------------------------------------------------------------- /tex/appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/appendix.tex -------------------------------------------------------------------------------- /tex/ccs18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/ccs18.pdf -------------------------------------------------------------------------------- /tex/def.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/def.tex -------------------------------------------------------------------------------- /tex/figure/barg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/figure/barg.pdf -------------------------------------------------------------------------------- /tex/figure/code.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/figure/code.pdf -------------------------------------------------------------------------------- /tex/figure/cryptochief.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/figure/cryptochief.pdf -------------------------------------------------------------------------------- /tex/figure/depend.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/figure/depend.pdf -------------------------------------------------------------------------------- /tex/figure/flow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/figure/flow.pdf -------------------------------------------------------------------------------- /tex/figure/ipmsg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/figure/ipmsg.pdf -------------------------------------------------------------------------------- /tex/figure/keyPinpoint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/figure/keyPinpoint.pdf -------------------------------------------------------------------------------- /tex/figure/perf.tikz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/figure/perf.tikz -------------------------------------------------------------------------------- /tex/figure/whittling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/figure/whittling.pdf -------------------------------------------------------------------------------- /tex/ibi.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/ibi.bib -------------------------------------------------------------------------------- /tex/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/main.tex -------------------------------------------------------------------------------- /tex/paper/00_abs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/00_abs.tex -------------------------------------------------------------------------------- /tex/paper/01_intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/01_intro.tex -------------------------------------------------------------------------------- /tex/paper/02_background.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/02_background.tex -------------------------------------------------------------------------------- /tex/paper/03_design.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/03_design.tex -------------------------------------------------------------------------------- /tex/paper/03_overview.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/03_overview.tex -------------------------------------------------------------------------------- /tex/paper/04_implementation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/04_implementation.tex -------------------------------------------------------------------------------- /tex/paper/05_evaluation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/05_evaluation.tex -------------------------------------------------------------------------------- /tex/paper/06_discussion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/06_discussion.tex -------------------------------------------------------------------------------- /tex/paper/07_related.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/07_related.tex -------------------------------------------------------------------------------- /tex/paper/08_conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/08_conclusion.tex -------------------------------------------------------------------------------- /tex/paper/big-table.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/big-table.tex -------------------------------------------------------------------------------- /tex/paper/cmp-table.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/cmp-table.tex -------------------------------------------------------------------------------- /tex/paper/perf_tab.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoSSIP-SJTU/k-hunt/HEAD/tex/paper/perf_tab.tex --------------------------------------------------------------------------------