Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
burp-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
19
Issues
19
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Benjamin "Ziirish" SANS
burp-ui
Commits
37ed099f
Verified
Commit
37ed099f
authored
Apr 02, 2019
by
Benjamin "Ziirish" SANS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
python 3.7 compatibility (fix
#304
)
parent
a367a3d4
Pipeline
#1609
passed with stage
in 14 minutes and 24 seconds
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
5 deletions
+7
-5
.gitlab-ci.yml
.gitlab-ci.yml
+1
-0
CHANGELOG.rst
CHANGELOG.rst
+2
-1
burpui/ext/tasks.py
burpui/ext/tasks.py
+2
-2
burpui/extensions.py
burpui/extensions.py
+1
-1
burpui/tasks.py
burpui/tasks.py
+1
-1
No files found.
.gitlab-ci.yml
View file @
37ed099f
...
...
@@ -57,6 +57,7 @@ build:py2:
only
:
-
master@ziirish/burp-ui
-
demo@ziirish/burp-ui
-
stable@ziirish/burp-ui
artifacts
:
paths
:
-
dist/
...
...
CHANGELOG.rst
View file @
37ed099f
Changelog
=========
0.6.6 (04/0
1
/2019)
0.6.6 (04/0
2
/2019)
------------------
- Fix: python 3.7 compatibility `#304 <https://git.ziirish.me/ziirish/burp-ui/issues/304>`__
- Fix: agent cannot start `#302 <https://git.ziirish.me/ziirish/burp-ui/issues/302>`__
0.6.5 (03/27/2019)
...
...
burpui/ext/
async
.py
→
burpui/ext/
tasks
.py
View file @
37ed099f
# -*- coding: utf8 -*-
"""
.. module:: burpui.ext.
async
.. module:: burpui.ext.
tasks
:platform: Unix
:synopsis: Burp-UI external
Async
module.
:synopsis: Burp-UI external
Tasks
module.
.. moduleauthor:: Ziirish <hi+burpui@ziirish.me>
...
...
burpui/extensions.py
View file @
37ed099f
...
...
@@ -309,7 +309,7 @@ def create_celery(myapp, warn=True):
redis_url
myapp
.
config
[
'CELERY_RESULT_BACKEND'
]
=
redis_url
from
.ext.
async
import
celery
from
.ext.
tasks
import
celery
celery
.
conf
.
update
(
myapp
.
config
)
if
not
hasattr
(
celery
,
'flask_app'
):
...
...
burpui/tasks.py
View file @
37ed099f
...
...
@@ -23,7 +23,7 @@ sys.path.insert(0, os.path.join(os.path.dirname(os.path.realpath(__file__)), '..
from
burpui._compat
import
PY3
# noqa
from
burpui.config
import
config
# noqa
from
burpui.ext.
async
import
celery
# noqa
from
burpui.ext.
tasks
import
celery
# noqa
from
burpui.ext.cache
import
cache
# noqa
from
burpui.sessions
import
session_manager
# noqa
from
burpui.server
import
BUIServer
# noqa
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment