├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── robots.txt └── squrl.png ├── src ├── App.js ├── App.test.js ├── components │ ├── Decrypter.jsx │ ├── Footer.jsx │ ├── Header.jsx │ ├── SessionKeyField.jsx │ ├── Squrl.jsx │ ├── Terms.jsx │ └── Wrapper.jsx ├── dbinteract.js ├── index.css ├── index.js ├── reportWebVitals.js ├── server │ ├── driver.js │ ├── models │ │ └── url.js │ ├── server.js │ └── views │ │ ├── info.ejs │ │ ├── password.ejs │ │ └── redirector.ejs ├── setupTests.js └── tests │ └── checkRateLimit.js └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/squrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/public/squrl.png -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Decrypter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/components/Decrypter.jsx -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/SessionKeyField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/components/SessionKeyField.jsx -------------------------------------------------------------------------------- /src/components/Squrl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/components/Squrl.jsx -------------------------------------------------------------------------------- /src/components/Terms.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/components/Terms.jsx -------------------------------------------------------------------------------- /src/components/Wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/components/Wrapper.jsx -------------------------------------------------------------------------------- /src/dbinteract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/dbinteract.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/server/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/server/driver.js -------------------------------------------------------------------------------- /src/server/models/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/server/models/url.js -------------------------------------------------------------------------------- /src/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/server/server.js -------------------------------------------------------------------------------- /src/server/views/info.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/server/views/info.ejs -------------------------------------------------------------------------------- /src/server/views/password.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/server/views/password.ejs -------------------------------------------------------------------------------- /src/server/views/redirector.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/server/views/redirector.ejs -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/tests/checkRateLimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/src/tests/checkRateLimit.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-carver/Squrl/HEAD/tailwind.config.js --------------------------------------------------------------------------------