GithubHelp home page GithubHelp logo

forbeslindesay / authentication Goto Github PK

View Code? Open in Web Editor NEW
91.0 91.0 7.0 2.98 MB

Modular, strongly typed, promise based, independent implementations of various authentication protocols

License: Other

TypeScript 88.77% HTML 0.61% JavaScript 10.28% CSS 0.34%

authentication's People

Contributors

dependabot[bot] avatar forbeslindesay avatar maael avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

authentication's Issues

Analysis: 95% of dependency updates in this repository can be merged.

Hey there 👋

Our bot, Adaptly, found that 21 out of 22 currently open dependency update PRs can be merged.
That's 95% right there:

View Safe to Merge PRs1. chore(deps): bump express from 4.16.4 to 4.18.2 in /website
2. chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2
3. chore(deps): bump css-what from 2.1.2 to 2.1.3
4. chore(deps): bump jsdom from 16.3.0 to 16.7.0
5. chore(deps): bump urijs from 1.19.1 to 1.19.11
6. chore(deps): bump url-parse from 1.4.3 to 1.5.10
7. chore(deps): bump follow-redirects from 1.5.9 to 1.14.8
8. chore(deps): bump tmpl from 1.0.4 to 1.0.5
9. chore(deps): bump path-parse from 1.0.6 to 1.0.7
10. chore(deps): bump path-parse from 1.0.6 to 1.0.7 in /website
11. chore(deps): bump ws from 7.3.1 to 7.4.6
12. chore(deps): bump dns-packet from 1.3.1 to 1.3.4
13. chore(deps): bump nodemailer from 4.6.8 to 6.4.16
14. chore(deps): bump hosted-git-info from 2.7.1 to 2.8.9
15. chore(deps): bump lodash from 4.17.19 to 4.17.21 in /website
16. chore(deps): bump ua-parser-js from 0.7.19 to 0.7.28 in /website
17. chore(deps): bump y18n from 3.2.1 to 3.2.2
18. chore(deps): bump elliptic from 6.4.1 to 6.5.4
19. chore(deps): bump ini from 1.3.5 to 1.3.7
20. chore(deps): bump highlight.js from 9.13.1 to 9.18.5 in /website
21. chore(deps): bump http-proxy from 1.17.0 to 1.18.1

feels

🔎   How does Adaptly know this?

It analyses changelogs of dependencies updated in a PR.
If no breaking changes are found in the changelogs, PR is marked as good to merge.

✨ Try Adaptly yourself

Feel free to try Adaptly on your repositories and finally
merge dependency update PRs. Let us know if you have any questions.

Best of luck with your projects,
Lauris
[email protected]

Action required: Greenkeeper could not be activated 🚨

🚨 You need to enable Continuous Integration on all branches of this repository. 🚨

To enable Greenkeeper, you need to make sure that a commit status is reported on all branches. This is required by Greenkeeper because it uses your CI build statuses to figure out when to notify you about breaking changes.

Since we didn’t receive a CI status on the greenkeeper/initial branch, it’s possible that you don’t have CI set up yet. We recommend using Travis CI, but Greenkeeper will work with every other CI service as well.

If you have already set up a CI for this repository, you might need to check how it’s configured. Make sure it is set to run on all new branches. If you don’t want it to run on absolutely every branch, you can whitelist branches starting with greenkeeper/.

Once you have installed and configured CI on this repository correctly, you’ll need to re-trigger Greenkeeper’s initial pull request. To do this, please delete the greenkeeper/initial branch in this repository, and then remove and re-add this repository to the Greenkeeper App’s white list on Github. You'll find this list on your repo or organization’s settings page, under Installed GitHub Apps.

This vs `cookie-parser`

I haven't used this package before and the documentation (unlike the one for @authentication/cookie-session) don't seem to suggest this should replace or be used alongside cookie-parser. The reason for this question is that I'm trying to see if this will make cookie-parser redundant or possibly hinder the security benefits from this package.

And side question, how would you advise using the three cookie endpoints (from https://www.atauthentication.com/docs/cookie.html#usage)?

[Exponencial Rate Limit] - Wrong state

It seems like the exponencial rate limit's state has inverted values on value/timestamp properties.

After my first request, the state become:

rateLimitFinded:  {

  _id: 5f567e2be34c8f6794899a16,
  userID: '12345678expo',
  value: 1599503915810,
  timestamp: 1,
  __v: 0
}

While my bucket state:

rateLimitFinded:  {
  _id: 5f567e25e34c8f6794899a14,
  userID: '12345678bucket',
  value: 9,
  timestamp: 1599503915784,
  __v: 0
}

I'm using the same store implementation for both.
For both, bucket and exponencial, the timestamp value is a refereer for the last attempt here and here

I can't look up now. But when I have time I will search in the code where is the apparent bug

[secure-hash]: require is not defined

I'm trying to use @authentication/secure-hash and @authentication/generate-passcode in a Quasar project with the Registration page's <script> section as follows:

import { hash } from '@authentication/secure-hash';
import generatePassCode, { Encoding } from '@authentication/generate-passcode';

export default {
  data() {
    return {
      // ...
    };
  },
  methods: {
    async register() {
      const password = await generatePassCode(40, Encoding.base91);
      const pwHash = await hash(password);
      //...
    },
  },
};

the password generate works as console.logging password shows it, however, simply having import { hash } from '@authentication/secure-hash'; (even in a boot file) causes the require is not defined error:

ReferenceError: require is not defined
    at Object.eval (index.js?1146:6)
    at eval (index.js:165)
    at Object../node_modules/node-gyp-build/index.js (vendor.js:4450)
    at __webpack_require__ (app.js:854)
    at fn (app.js:151)
    at Object.eval (index.js?1b94:1)
    at eval (index.js:5)
    at Object../node_modules/sodium-native/index.js (vendor.js:5947)
    at __webpack_require__ (app.js:854)
    at fn (app.js:151)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.