Browse Source

[IMP] module name

pull/262/head
Sylvain LE GAL 9 years ago
parent
commit
1779d51391
  1. 6
      auth_brute_force/README.rst
  2. 5
      auth_brute_force/__openerp__.py
  3. 2
      auth_brute_force/controllers/controllers.py
  4. 2
      auth_brute_force/data/ir_config_parameter.xml
  5. 2
      auth_brute_force/models/res_authentication_attempt.py
  6. 2
      auth_brute_force/models/res_banned_remote.py
  7. 2
      auth_brute_force/views/action.xml
  8. 2
      auth_brute_force/views/menu.xml
  9. 2
      auth_brute_force/views/view.xml

6
auth_brute_force/README.rst

@ -1,9 +1,9 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:alt: License :alt: License
=======================================================
Authentication Tracking and Prevent Brute-force Attacks
=======================================================
===============================================================
Tracks Authentication Attempts and Prevents Brute-force Attacks
===============================================================
This module registers each request done by users trying to authenticate into This module registers each request done by users trying to authenticate into
Odoo. If the authentication fails, a counter is increased for the given remote Odoo. If the authentication fails, a counter is increased for the given remote

5
auth_brute_force/__openerp__.py

@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
############################################################################## ##############################################################################
# #
# Authentification - Track And Prevent Brute-force Attack module for Odoo
# Tracks Authentication Attempts and Prevents Brute-force Attacks module
# Copyright (C) 2015-Today GRAP (http://www.grap.coop) # Copyright (C) 2015-Today GRAP (http://www.grap.coop)
# @author Sylvain LE GAL (https://twitter.com/legalsylvain) # @author Sylvain LE GAL (https://twitter.com/legalsylvain)
# #
@ -24,7 +24,8 @@
'name': 'Authentification - Brute-force Attack', 'name': 'Authentification - Brute-force Attack',
'version': '8.0.1.0.0', 'version': '8.0.1.0.0',
'category': 'base', 'category': 'base',
'summary': "Authentication Tracking and Prevent Brute-force Attack",
'summary': "Tracks Authentication Attempts and Prevents Brute-force"
" Attacks module",
'author': "GRAP,Odoo Community Association (OCA)", 'author': "GRAP,Odoo Community Association (OCA)",
'website': 'http://www.grap.coop', 'website': 'http://www.grap.coop',
'license': 'AGPL-3', 'license': 'AGPL-3',

2
auth_brute_force/controllers/controllers.py

@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
############################################################################## ##############################################################################
# #
# Authentification - Track And Prevent Brute-force Attack module for Odoo
# Tracks Authentication Attempts and Prevents Brute-force Attacks module
# Copyright (C) 2015-Today GRAP (http://www.grap.coop) # Copyright (C) 2015-Today GRAP (http://www.grap.coop)
# @author Sylvain LE GAL (https://twitter.com/legalsylvain) # @author Sylvain LE GAL (https://twitter.com/legalsylvain)
# #

2
auth_brute_force/data/ir_config_parameter.xml

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- ********************************************************************** --> <!-- ********************************************************************** -->
<!--Authentification - Track And Prevent Brute-force Attack module for Odoo -->
<!--Tracks Authentication Attempts and Prevents Brute-force Attacks module -->
<!--Copyright (C) 2015-Today GRAP (http://www.grap.coop) --> <!--Copyright (C) 2015-Today GRAP (http://www.grap.coop) -->
<!--@author Sylvain LE GAL (https://twitter.com/legalsylvain) --> <!--@author Sylvain LE GAL (https://twitter.com/legalsylvain) -->

2
auth_brute_force/models/res_authentication_attempt.py

@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
############################################################################## ##############################################################################
# #
# Authentification - Track And Prevent Brute-force Attack module for Odoo
# Tracks Authentication Attempts and Prevents Brute-force Attacks module
# Copyright (C) 2015-Today GRAP (http://www.grap.coop) # Copyright (C) 2015-Today GRAP (http://www.grap.coop)
# @author Sylvain LE GAL (https://twitter.com/legalsylvain) # @author Sylvain LE GAL (https://twitter.com/legalsylvain)
# #

2
auth_brute_force/models/res_banned_remote.py

@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
############################################################################## ##############################################################################
# #
# Authentification - Track And Prevent Brute-force Attack module for Odoo
# Tracks Authentication Attempts and Prevents Brute-force Attacks module
# Copyright (C) 2015-Today GRAP (http://www.grap.coop) # Copyright (C) 2015-Today GRAP (http://www.grap.coop)
# @author Sylvain LE GAL (https://twitter.com/legalsylvain) # @author Sylvain LE GAL (https://twitter.com/legalsylvain)
# #

2
auth_brute_force/views/action.xml

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- ********************************************************************** --> <!-- ********************************************************************** -->
<!--Authentification - Track And Prevent Brute-force Attack module for Odoo -->
<!--Tracks Authentication Attempts and Prevents Brute-force Attacks module -->
<!--Copyright (C) 2015-Today GRAP (http://www.grap.coop) --> <!--Copyright (C) 2015-Today GRAP (http://www.grap.coop) -->
<!--@author Sylvain LE GAL (https://twitter.com/legalsylvain) --> <!--@author Sylvain LE GAL (https://twitter.com/legalsylvain) -->

2
auth_brute_force/views/menu.xml

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- ********************************************************************** --> <!-- ********************************************************************** -->
<!--Authentification - Track And Prevent Brute-force Attack module for Odoo -->
<!--Tracks Authentication Attempts and Prevents Brute-force Attacks module -->
<!--Copyright (C) 2015-Today GRAP (http://www.grap.coop) --> <!--Copyright (C) 2015-Today GRAP (http://www.grap.coop) -->
<!--@author Sylvain LE GAL (https://twitter.com/legalsylvain) --> <!--@author Sylvain LE GAL (https://twitter.com/legalsylvain) -->

2
auth_brute_force/views/view.xml

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- ********************************************************************** --> <!-- ********************************************************************** -->
<!--Authentification - Track And Prevent Brute-force Attack module for Odoo -->
<!--Tracks Authentication Attempts and Prevents Brute-force Attacks module -->
<!--Copyright (C) 2015-Today GRAP (http://www.grap.coop) --> <!--Copyright (C) 2015-Today GRAP (http://www.grap.coop) -->
<!--@author Sylvain LE GAL (https://twitter.com/legalsylvain) --> <!--@author Sylvain LE GAL (https://twitter.com/legalsylvain) -->

Loading…
Cancel
Save