Projects STRLCPY wrongsecrets Commits d33ae7ce
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■
    src/main/java/org/owasp/wrongsecrets/AboutController.java
    skipped 5 lines
    6 6  import org.springframework.web.bind.annotation.GetMapping;
    7 7   
    8 8  /**
    9  - * About controler hosting /about endpoint
     9 + * About controler hosting /about endpoint.
    10 10   */
    11 11  @Controller
    12 12  public class AboutController {
    skipped 10 lines
  • ■ ■ ■ ■
    src/main/java/org/owasp/wrongsecrets/challenges/docker/Challenge0.java
    skipped 11 lines
    12 12  import static org.owasp.wrongsecrets.RuntimeEnvironment.Environment.DOCKER;
    13 13   
    14 14  /**
    15  - * Introductionary challenge to get acquinted with the setup
     15 + * Introduction challenge to get a user introduced with the setup.
    16 16   */
    17 17  @Component
    18 18  @Order(0)
    skipped 59 lines
  • ■ ■ ■ ■
    src/main/java/org/owasp/wrongsecrets/challenges/docker/Challenge1.java
    skipped 13 lines
    14 14  import static org.owasp.wrongsecrets.RuntimeEnvironment.Environment.DOCKER;
    15 15   
    16 16  /**
    17  - * Challenge to find the hardcoded password in code
     17 + * Challenge to find the hardcoded password in code.
    18 18   */
    19 19  @Component
    20 20  @Order(1)
    skipped 59 lines
  • ■ ■ ■ ■
    src/main/java/org/owasp/wrongsecrets/challenges/docker/Constants.java
    skipped 2 lines
    3 3  import lombok.experimental.UtilityClass;
    4 4   
    5 5  /**
    6  - * used for Challenges their secrets
     6 + * used for Challenges their secrets.
    7 7   */
    8 8  @UtilityClass
    9 9  public class Constants {
    skipped 5 lines
  • ■ ■ ■ ■
    src/main/java/org/owasp/wrongsecrets/challenges/kubernetes/Vaultpassword.java
    skipped 2 lines
    3 3  import org.springframework.boot.context.properties.ConfigurationProperties;
    4 4   
    5 5  /**
    6  - * Class used to get password from vault usisng the springboot cloud integration with vault
     6 + * Class used to get password from vault usisng the springboot cloud integration with vault.
    7 7   */
    8 8  @ConfigurationProperties("vaultpassword")
    9 9  public class Vaultpassword {
    skipped 14 lines
  • ■ ■ ■ ■ ■ ■
    src/main/java/org/owasp/wrongsecrets/oauth/TokenController.java
    skipped 15 lines
    16 16  import java.util.UUID;
    17 17   
    18 18  /**
    19  - * Controller used for one of the front-end challenges
     19 + * Controller used for one of the front-end challenges.
    20 20   */
    21 21  @Slf4j
    22 22  @Controller
    skipped 21 lines
    44 44   }
    45 45   
    46 46   /**
    47  - * Tokenrequest used to call tokencontroller.
     47 + * TokenRequest used to call tokenController.
    48 48   * @param grant_type string for grant type
    49 49   * @param client_id string for the clientid
    50 50   * @param client_secret holding the client secret for auth. target of challenge.
    skipped 4 lines
    55 55   }
    56 56   
    57 57   /**
    58  - * TokenResponse returned by Tokencontroller
     58 + * TokenResponse returned by TokenController.
    59 59   * @param accessToken string with the token retrieved through oauth
    60 60   * @param tokenType string with the tokentype retrieved through oauth
    61 61   * @param expiresIn long with the token expiration moment
    skipped 19 lines
Please wait...
Page is in error, reload to recover