mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
13 lines
309 B
Python
13 lines
309 B
Python
# -*- coding: utf8 -*-
|
|
"""
|
|
.. module:: burpui.ext.limit
|
|
:platform: Unix
|
|
:synopsis: Burp-UI external Limit module.
|
|
|
|
.. moduleauthor:: Ziirish <hi+burpui@ziirish.me>
|
|
|
|
"""
|
|
from flask_limiter import Limiter
|
|
from flask_limiter.util import get_remote_address
|
|
|
|
limiter = Limiter(key_func=get_remote_address)
|