├── .gitattributes ├── .gitignore ├── README.md ├── doc ├── crack.gif ├── load.png ├── server.png ├── tab.png └── test.gif ├── jsEncrypter.iml ├── pom.xml ├── script ├── nodejs_server.js └── phantomjs_server.js ├── src └── main │ └── java │ └── burp │ ├── BurpExtender.java │ ├── GUI.java │ ├── HttpClient.java │ ├── Menu.java │ └── Utils.java └── test ├── TestScript ├── Base64 │ ├── base64.js │ └── jsEncrypter_base64.js ├── RSA │ ├── jsEncrypter_rsa.js │ └── jsencrypt.js ├── des │ ├── des.js │ └── jsEncrypter_des.js ├── md5 │ ├── jsEncrypter_md5.js │ └── md5.js ├── sha1 │ ├── jsEncrypter_sha1.js │ └── sha1.js ├── sha256 │ ├── crypto-js.js │ └── jsEncrypter_sha256.js ├── sha384 │ ├── crypto-js.js │ └── jsEncrypter_sha384.js └── sha512 │ ├── crypto-js.js │ └── jsEncrypter_sha512.js └── webapp ├── index.html ├── js ├── base64.js ├── crypto-js.js ├── jquery-3.2.1.min.js ├── jsencrypt.js ├── md5.js └── sha1.js ├── key ├── rsa_private_key.pem └── rsa_public_key.pem ├── login_check.php └── rsa.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/README.md -------------------------------------------------------------------------------- /doc/crack.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/doc/crack.gif -------------------------------------------------------------------------------- /doc/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/doc/load.png -------------------------------------------------------------------------------- /doc/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/doc/server.png -------------------------------------------------------------------------------- /doc/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/doc/tab.png -------------------------------------------------------------------------------- /doc/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/doc/test.gif -------------------------------------------------------------------------------- /jsEncrypter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/jsEncrypter.iml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/pom.xml -------------------------------------------------------------------------------- /script/nodejs_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/script/nodejs_server.js -------------------------------------------------------------------------------- /script/phantomjs_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/script/phantomjs_server.js -------------------------------------------------------------------------------- /src/main/java/burp/BurpExtender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/src/main/java/burp/BurpExtender.java -------------------------------------------------------------------------------- /src/main/java/burp/GUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/src/main/java/burp/GUI.java -------------------------------------------------------------------------------- /src/main/java/burp/HttpClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/src/main/java/burp/HttpClient.java -------------------------------------------------------------------------------- /src/main/java/burp/Menu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/src/main/java/burp/Menu.java -------------------------------------------------------------------------------- /src/main/java/burp/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/src/main/java/burp/Utils.java -------------------------------------------------------------------------------- /test/TestScript/Base64/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/Base64/base64.js -------------------------------------------------------------------------------- /test/TestScript/Base64/jsEncrypter_base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/Base64/jsEncrypter_base64.js -------------------------------------------------------------------------------- /test/TestScript/RSA/jsEncrypter_rsa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/RSA/jsEncrypter_rsa.js -------------------------------------------------------------------------------- /test/TestScript/RSA/jsencrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/RSA/jsencrypt.js -------------------------------------------------------------------------------- /test/TestScript/des/des.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/des/des.js -------------------------------------------------------------------------------- /test/TestScript/des/jsEncrypter_des.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/des/jsEncrypter_des.js -------------------------------------------------------------------------------- /test/TestScript/md5/jsEncrypter_md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/md5/jsEncrypter_md5.js -------------------------------------------------------------------------------- /test/TestScript/md5/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/md5/md5.js -------------------------------------------------------------------------------- /test/TestScript/sha1/jsEncrypter_sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/sha1/jsEncrypter_sha1.js -------------------------------------------------------------------------------- /test/TestScript/sha1/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/sha1/sha1.js -------------------------------------------------------------------------------- /test/TestScript/sha256/crypto-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/sha256/crypto-js.js -------------------------------------------------------------------------------- /test/TestScript/sha256/jsEncrypter_sha256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/sha256/jsEncrypter_sha256.js -------------------------------------------------------------------------------- /test/TestScript/sha384/crypto-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/sha384/crypto-js.js -------------------------------------------------------------------------------- /test/TestScript/sha384/jsEncrypter_sha384.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/sha384/jsEncrypter_sha384.js -------------------------------------------------------------------------------- /test/TestScript/sha512/crypto-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/sha512/crypto-js.js -------------------------------------------------------------------------------- /test/TestScript/sha512/jsEncrypter_sha512.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/TestScript/sha512/jsEncrypter_sha512.js -------------------------------------------------------------------------------- /test/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/webapp/index.html -------------------------------------------------------------------------------- /test/webapp/js/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/webapp/js/base64.js -------------------------------------------------------------------------------- /test/webapp/js/crypto-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/webapp/js/crypto-js.js -------------------------------------------------------------------------------- /test/webapp/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/webapp/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /test/webapp/js/jsencrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/webapp/js/jsencrypt.js -------------------------------------------------------------------------------- /test/webapp/js/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/webapp/js/md5.js -------------------------------------------------------------------------------- /test/webapp/js/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/webapp/js/sha1.js -------------------------------------------------------------------------------- /test/webapp/key/rsa_private_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/webapp/key/rsa_private_key.pem -------------------------------------------------------------------------------- /test/webapp/key/rsa_public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/webapp/key/rsa_public_key.pem -------------------------------------------------------------------------------- /test/webapp/login_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/webapp/login_check.php -------------------------------------------------------------------------------- /test/webapp/rsa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0ny1/jsEncrypter/HEAD/test/webapp/rsa.php --------------------------------------------------------------------------------