Skip to content

Commit

Permalink
Merge pull request #234 from pablosnt/bugfix/django-vulnerability
Browse files Browse the repository at this point in the history
Upgrade Django version to 3.2.20
  • Loading branch information
pablosnt authored Jul 8, 2023
2 parents cb60efc + 34d04a3 commit 771cf17
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [1.6.2] - 2023-07-08

### Security

- Upgrade `Django` version to `3.2.20` (https://github.com/pablosnt/rekono/issues/233)


## [1.6.1] - 2023-05-31

### Security
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Go to https://127.0.0.1/
Rekono Desktop is a standalone app with all features, that can be installed and executed locally. It's the best and easiest option for personal and local usage. Execue the following command to install it:

```bash
wget https://github.com/pablosnt/rekono/releases/download/1.6.1/rekono-desktop_1.6.1_amd64.deb && dpkg -i rekono-desktop_1.6.1_amd64.deb || apt -f install -y
wget https://github.com/pablosnt/rekono/releases/download/1.6.2/rekono-desktop_1.6.2_amd64.deb && dpkg -i rekono-desktop_1.6.2_amd64.deb || apt -f install -y
```

> Default credentials are `rekono:rekono`. For security reasons, **password should be changed** the first time you access the account
Expand Down
4 changes: 2 additions & 2 deletions rekono/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rekono/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rekono",
"version": "1.6.1",
"version": "1.6.2",
"description": "Rekono is an automation platform that combines different hacking tools to complete pentesting processes",
"author": "Pablo Santiago López <rekono.project@gmail.com>",
"homepage": "https://github.com/pablosnt/rekono",
Expand Down
2 changes: 1 addition & 1 deletion rekono/rekono/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

# Rekono description
DESCRIPTION = 'Rekono is an automation platform that combines different hacking tools to complete pentesting processes'
VERSION = '1.6.1' # Rekono version
VERSION = '1.6.2' # Rekono version
TESTING = 'test' in sys.argv # Tests execution

################################################################################
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
coverage==6.3.1
defusedxml==0.7.1
Django==3.2.19
Django==3.2.20
djangorestframework==3.12.4
djangorestframework-simplejwt==5.2.2
django-filter==21.1
Expand Down

0 comments on commit 771cf17

Please sign in to comment.