Skip to content

Commit

Permalink
Updated readme, version, changelog and fix vucsa URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Warxim committed Jun 2, 2023
1 parent ac432eb commit 2dacb9b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will are documented in this changelog file.

## [1.0.1] - 2023-06-02
### Added
- fixed macOS icon
- updated readme
- fixed url

## [1.0.0] - 2022-01-01
### Added
- common functionality
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Currently the vulnerable application contains the following challenges:
6. Horizontal Access Control
7. Vertical Access Control

If you want to know how to solve these challenges, take a look at the [PETEP website](http://petep.warxim.com/methodology/),
If you want to know how to solve these challenges, take a look at the [PETEP website](https://petep.warxim.com/methodology/),
which describes how to use the open-source tool PETEP to exploit them.

**Tip:** Before you start hacking, do not forget to check the data structure of messages bellow.
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ repositories {
}

dependencies {
compile project(":vucsa-common")
compile project(":vucsa-client")
compile project(":vucsa-server")
project(":vucsa-common")
project(":vucsa-client")
project(":vucsa-server")
}

distributions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@
import javafx.scene.layout.GridPane;
import javafx.stage.Stage;

import java.awt.*;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.logging.Level;
import java.util.logging.Logger;

Expand Down Expand Up @@ -74,7 +70,7 @@ public static void show() {
link.setOnAction(AboutDialog::onWebClick);

// Copyright
var copyrightLabel = new Label("Copyright (C) Michal Valka, 2022, all rights reserved.");
var copyrightLabel = new Label("Copyright (C) Michal Valka, 2023, all rights reserved.");

// Grid
var grid = new GridPane();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
* Global constants.
*/
public final class Constant {
public static final String VERSION = "1.0.0";
public static final String WEB = "http://vucsa.warxim.com";
public static final String VERSION = "1.0.1";
public static final String WEB = "https://vucsa.warxim.com";

public static final String DEFAULT_SERVER_HOST = "127.0.0.1";
public static final int DEFAULT_SERVER_PORT = 8765;
Expand Down

0 comments on commit 2dacb9b

Please sign in to comment.