Giter Site home page Giter Site logo

covidcertificate-management-service's People

Contributors

andreascafuto avatar armin-isenring-bit avatar cedricmoullet avatar fabe2913 avatar fabiansson avatar georgepapad88 avatar haraldloesing avatar iris-hunkeler avatar lindit avatar mathias-wegmueller-ti8m avatar matthieu-riolo-ti8m avatar mofobo-bit avatar mojti8m avatar ndinat avatar nicolakellertim avatar stefantextor avatar ubaggeler avatar yannikinniger avatar

Stargazers

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

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

covidcertificate-management-service's Issues

Unbounded Query when retrieving the revocation list

The implementation of findAllUvcis has an unbounded query. This is not an issue for 1000s of revocations, but considering that entire lots of certain vaccines could become known as ineffective, the number of revoked certificates may quickly increase by 10^5 certificates weekly. Devices calling this endpoint even in small numbers on a daily basis will potentially DoS the system, exceed any limits for response body sizes and provoke timeouts.

@Repository
public interface RevocationRepository extends JpaRepository<Revocation, UUID> {
    Revocation findByUvci(String uvci);

    @Query("SELECT r.uvci FROM Revocation r")
    List<String> findAllUvcis();
}

Hope this is..

I truly hope this is either a joke or a primary school project.

Code uses WebClient but blocks

The code uses the reactive WebClient but ends up calling #block() which, as the name suggests, blocks and therefore defeats the whole purpose of using WebClient in the first place. Examples:

The code should instead do one of the following:

  • Avoid calling #block() and instead call #subscribe()
  • Switch from the reactive WebClient to the blocking RestTemplate

Considering all the rest of the code is blocking (JpaRepository, โ€ฆ) WebClient seems like the better match.

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.