Skip to content

Commit 41bab0e

Browse files
committedFeb 29, 2024·
[BOT] post-merge updates
1 parent 13e0478 commit 41bab0e

File tree

5 files changed

+20
-12
lines changed

5 files changed

+20
-12
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ addon | version | maintainers | summary
4242
[users_ldap_mail](users_ldap_mail/) | 16.0.1.0.0 | [![joao-p-marques](https://github.com/joao-p-marques.png?size=30px)](https://github.com/joao-p-marques) | LDAP mapping for user name and e-mail
4343
[users_ldap_populate](users_ldap_populate/) | 16.0.1.0.0 | [![joao-p-marques](https://github.com/joao-p-marques.png?size=30px)](https://github.com/joao-p-marques) | LDAP Populate
4444
[vault](vault/) | 16.0.1.0.0 | | Password vault integration in Odoo
45+
[vault_share](vault_share/) | 16.0.1.0.0 | | Implementation of a mechanism to share secrets
4546

4647
[//]: # (end addons)
4748

‎setup/_metapackage/VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.0.20240222.0
1+
16.0.20240229.0

‎setup/_metapackage/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
'odoo-addon-users_ldap_mail>=16.0dev,<16.1dev',
3030
'odoo-addon-users_ldap_populate>=16.0dev,<16.1dev',
3131
'odoo-addon-vault>=16.0dev,<16.1dev',
32+
'odoo-addon-vault_share>=16.0dev,<16.1dev',
3233
],
3334
classifiers=[
3435
'Programming Language :: Python',

‎vault_share/README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Vault - Share
77
!! This file is generated by oca-gen-addon-readme !!
88
!! changes will be overwritten. !!
99
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10-
!! source digest: sha256:9a16926a6329561017dac0fa81e331bcd50b83bc373281609831a25e42fb3e0c
10+
!! source digest: sha256:adce488b82d4097f6a7f94b8dfeb82712b9e717846f3cc745600419fc4393eed
1111
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
1212
1313
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -31,7 +31,7 @@ Vault - Share
3131
This module implements possibilities to share specific secrets with external users. This bases on the vault implementation and the generated RSA key pair.
3232

3333
Share
34-
=====
34+
~~~~~
3535

3636
This allows an user to share a secret with external users. A share can be generated from a vault entry or directly created by an user. The secret is symmetrically encrypted by a key derived from a pin. To grant access the user has to transmit the link and pin with the external. If either the access counter reaches 0 or the share expires it will be deleted automatically. Due to the usage of a numeric pin and the browser side decryption a share is vulnerable to brute-force attacks and shouldn't be used as a permanent storage for secrets. For long time uses the user should create an account and a vault should be used.
3737

‎vault_share/static/description/index.html

+15-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<?xml version="1.0" encoding="utf-8"?>
21
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
32
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
43
<head>
@@ -367,45 +366,53 @@ <h1 class="title">Vault - Share</h1>
367366
!! This file is generated by oca-gen-addon-readme !!
368367
!! changes will be overwritten. !!
369368
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370-
!! source digest: sha256:9a16926a6329561017dac0fa81e331bcd50b83bc373281609831a25e42fb3e0c
369+
!! source digest: sha256:adce488b82d4097f6a7f94b8dfeb82712b9e717846f3cc745600419fc4393eed
371370
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372371
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-auth/tree/16.0/vault_share"><img alt="OCA/server-auth" src="https://img.shields.io/badge/github-OCA%2Fserver--auth-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-auth-16-0/server-auth-16-0-vault_share"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/server-auth&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373372
<p>This module implements possibilities to share specific secrets with external users. This bases on the vault implementation and the generated RSA key pair.</p>
374373
<div class="section" id="share">
375374
<h1>Share</h1>
376375
<p>This allows an user to share a secret with external users. A share can be generated from a vault entry or directly created by an user. The secret is symmetrically encrypted by a key derived from a pin. To grant access the user has to transmit the link and pin with the external. If either the access counter reaches 0 or the share expires it will be deleted automatically. Due to the usage of a numeric pin and the browser side decryption a share is vulnerable to brute-force attacks and shouldn’t be used as a permanent storage for secrets. For long time uses the user should create an account and a vault should be used.</p>
377376
<p><strong>Table of contents</strong></p>
377+
<div class="contents local topic" id="contents">
378+
<ul class="simple">
379+
<li><a class="reference internal" href="#known-issues-roadmap" id="toc-entry-1">Known issues / Roadmap</a></li>
380+
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-2">Bug Tracker</a></li>
381+
<li><a class="reference internal" href="#credits" id="toc-entry-3">Credits</a></li>
382+
</ul>
378383
</div>
379384
<div class="section" id="known-issues-roadmap">
380-
<h1>Known issues / Roadmap</h1>
385+
<h2><a class="toc-backref" href="#toc-entry-1">Known issues / Roadmap</a></h2>
381386
<ul class="simple">
382387
<li>Secure the download of the encrypted file behind a challenge/response</li>
383388
</ul>
384389
</div>
385390
<div class="section" id="bug-tracker">
386-
<h1>Bug Tracker</h1>
391+
<h2><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h2>
387392
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-auth/issues">GitHub Issues</a>.
388393
In case of trouble, please check there if your issue has already been reported.
389394
If you spotted it first, help us to smash it by providing a detailed and welcomed
390395
<a class="reference external" href="https://github.com/OCA/server-auth/issues/new?body=module:%20vault_share%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
391396
<p>Do not contact contributors directly about support or help with technical issues.</p>
392397
</div>
393398
<div class="section" id="credits">
394-
<h1>Credits</h1>
399+
<h2><a class="toc-backref" href="#toc-entry-3">Credits</a></h2>
400+
</div>
401+
</div>
395402
<div class="section" id="authors">
396-
<h2>Authors</h2>
403+
<h1>Authors</h1>
397404
<ul class="simple">
398405
<li>initOS GmbH</li>
399406
</ul>
400407
</div>
401408
<div class="section" id="contributors">
402-
<h2>Contributors</h2>
409+
<h1>Contributors</h1>
403410
<ul class="simple">
404411
<li>Florian Kantelberg &lt;<a class="reference external" href="mailto:florian.kantelberg&#64;initos.com">florian.kantelberg&#64;initos.com</a>&gt;</li>
405412
</ul>
406413
</div>
407414
<div class="section" id="maintainers">
408-
<h2>Maintainers</h2>
415+
<h1>Maintainers</h1>
409416
<p>This module is maintained by the OCA.</p>
410417
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
411418
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
@@ -415,6 +422,5 @@ <h2>Maintainers</h2>
415422
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
416423
</div>
417424
</div>
418-
</div>
419425
</body>
420426
</html>

0 commit comments

Comments
 (0)
Please sign in to comment.