Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caucase
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
caucase
Commits
45baf54f
Commit
45baf54f
authored
Nov 04, 2017
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http.manage: Add support for importing revocations.
Export is already provided by the regular protocol.
parent
47acf71f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
61 additions
and
1 deletion
+61
-1
caucase/http.py
caucase/http.py
+37
-0
caucase/test.py
caucase/test.py
+24
-1
No files found.
caucase/http.py
View file @
45baf54f
...
@@ -37,6 +37,7 @@ from cryptography import x509
...
@@ -37,6 +37,7 @@ from cryptography import x509
from
cryptography.hazmat.backends
import
default_backend
from
cryptography.hazmat.backends
import
default_backend
from
cryptography.hazmat.primitives
import
serialization
from
cryptography.hazmat.primitives
import
serialization
import
pem
import
pem
from
.
import
exceptions
from
.
import
utils
from
.
import
utils
from
.wsgi
import
Application
from
.wsgi
import
Application
from
.ca
import
CertificateAuthority
,
UserCertificateAuthority
from
.ca
import
CertificateAuthority
,
UserCertificateAuthority
...
@@ -588,6 +589,16 @@ def manage(argv=None):
...
@@ -588,6 +589,16 @@ def manage(argv=None):
'use this unless you are certain you need it and it is safe for your '
'use this unless you are certain you need it and it is safe for your '
'use-case.'
,
'use-case.'
,
)
)
parser
.
add_argument
(
'--import-crl'
,
default
=
[],
metavar
=
'PEM_FILE'
,
action
=
'append'
,
type
=
argparse
.
FileType
(
'r'
),
help
=
'Import service revocation list. Corresponding CA certificate must '
'be already present in the database (including added in the same run '
'using --import-ca).'
,
)
parser
.
add_argument
(
parser
.
add_argument
(
'--export-ca'
,
'--export-ca'
,
metavar
=
'PEM_FILE'
,
metavar
=
'PEM_FILE'
,
...
@@ -723,6 +734,32 @@ def manage(argv=None):
...
@@ -723,6 +734,32 @@ def manage(argv=None):
if
not
imported
:
if
not
imported
:
raise
ValueError
(
'No CA certificate imported'
)
raise
ValueError
(
'No CA certificate imported'
)
print
(
'Imported %i CA certificates'
%
imported
)
print
(
'Imported %i CA certificates'
%
imported
)
if
args
.
import_crl
:
db
=
SQLite3Storage
(
db_path
,
table_prefix
=
'cas'
)
trusted_ca_crt_set
=
[
utils
.
load_ca_certificate
(
x
[
'crt_pem'
])
for
x
in
db
.
getCAKeyPairList
()
]
latest_ca_not_after
=
max
(
x
.
not_valid_after
for
x
in
trusted_ca_crt_set
)
already_revoked_count
=
revoked_count
=
0
for
crl_file
in
args
.
import_crl
:
for
revoked
in
utils
.
load_crl
(
crl_file
.
read
(),
trusted_ca_crt_set
):
try
:
db
.
revoke
(
revoked
.
serial_number
,
latest_ca_not_after
,
)
except
exceptions
.
Found
:
already_revoked_count
+=
1
else
:
revoked_count
+=
1
print
(
'Revoked %i certificates (%i were already revoked)'
%
(
revoked_count
,
already_revoked_count
,
))
if
args
.
export_ca
is
not
None
:
if
args
.
export_ca
is
not
None
:
encryption_algorithm
=
serialization
.
BestAvailableEncryption
(
encryption_algorithm
=
serialization
.
BestAvailableEncryption
(
getBytePass
(
'CA export passphrase: '
)
getBytePass
(
'CA export passphrase: '
)
...
...
caucase/test.py
View file @
45baf54f
...
@@ -1625,9 +1625,23 @@ class CaucaseTest(unittest.TestCase):
...
@@ -1625,9 +1625,23 @@ class CaucaseTest(unittest.TestCase):
Exercise CA export and import code.
Exercise CA export and import code.
"""
"""
exported_ca
=
os
.
path
.
join
(
self
.
_server_dir
,
'exported.ca.pem'
)
exported_ca
=
os
.
path
.
join
(
self
.
_server_dir
,
'exported.ca.pem'
)
user_key_path
=
self
.
_createFirstUser
()
# Create a service certificate...
service_key
=
self
.
_createAndApproveCertificate
(
user_key_path
,
'service'
,
)
# ...and revoke it
# Note: Fetches CRL right after revoking certificate
self
.
_runClient
(
'--revoke-crt'
,
service_key
,
service_key
,
)
self
.
_runClient
()
getBytePass_orig
=
http
.
getBytePass
getBytePass_orig
=
http
.
getBytePass
http
.
getBytePass
=
lambda
x
:
'test'
orig_stdout
=
sys
.
stdout
try
:
try
:
http
.
getBytePass
=
lambda
x
:
'test'
sys
.
stdout
=
stdout
=
StringIO
()
self
.
assertFalse
(
os
.
path
.
exists
(
exported_ca
),
exported_ca
)
self
.
assertFalse
(
os
.
path
.
exists
(
exported_ca
),
exported_ca
)
http
.
manage
(
http
.
manage
(
argv
=
(
argv
=
(
...
@@ -1642,10 +1656,19 @@ class CaucaseTest(unittest.TestCase):
...
@@ -1642,10 +1656,19 @@ class CaucaseTest(unittest.TestCase):
argv
=
(
argv
=
(
'--db'
,
server_db2
,
'--db'
,
server_db2
,
'--import-ca'
,
exported_ca
,
'--import-ca'
,
exported_ca
,
'--import-crl'
,
self
.
_client_crl
,
),
),
)
)
self
.
assertTrue
(
os
.
path
.
exists
(
server_db2
),
server_db2
)
self
.
assertTrue
(
os
.
path
.
exists
(
server_db2
),
server_db2
)
self
.
assertEqual
(
[
'Imported 1 CA certificates'
,
'Revoked 1 certificates (0 were already revoked)'
,
],
stdout
.
getvalue
().
splitlines
(),
)
finally
:
finally
:
sys
.
stdout
=
orig_stdout
http
.
getBytePass
=
getBytePass_orig
http
.
getBytePass
=
getBytePass_orig
def
testWSGIBase
(
self
):
def
testWSGIBase
(
self
):
...
...
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