Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sophie Herold
gajim
Commits
749a01a2
Commit
749a01a2
authored
7 years ago
by
André
Browse files
Options
Downloads
Patches
Plain Diff
Simplify check_X509.py
as pyasn1 and pyOpenSSL are required now
parent
6d10a5e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
gajim/common/check_X509.py
+165
-177
165 additions, 177 deletions
gajim/common/check_X509.py
gajim/features_window.py
+0
-17
0 additions, 17 deletions
gajim/features_window.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
166 additions
and
195 deletions
gajim/common/check_X509.py
+
165
−
177
View file @
749a01a2
import
logging
log
=
logging
.
getLogger
(
'
gajim.c.check_X509
'
)
try
:
import
OpenSSL.SSL
import
OpenSSL.crypto
ver
=
OpenSSL
.
__version__
if
ver
<
'
0.12
'
:
raise
ImportError
from
pyasn1.type
import
univ
,
constraint
,
char
,
namedtype
,
tag
from
pyasn1.codec.der.decoder
import
decode
from
gajim.common.helpers
import
prep
,
InvalidFormat
MAX
=
64
oid_xmppaddr
=
'
1.3.6.1.5.5.7.8.5
'
oid_dnssrv
=
'
1.3.6.1.5.5.7.8.7
'
class
DirectoryString
(
univ
.
Choice
):
componentType
=
namedtype
.
NamedTypes
(
namedtype
.
NamedType
(
'
teletexString
'
,
char
.
TeletexString
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
namedtype
.
NamedType
(
'
printableString
'
,
char
.
PrintableString
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
namedtype
.
NamedType
(
'
universalString
'
,
char
.
UniversalString
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
namedtype
.
NamedType
(
'
utf8String
'
,
char
.
UTF8String
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
namedtype
.
NamedType
(
'
bmpString
'
,
char
.
BMPString
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
namedtype
.
NamedType
(
'
ia5String
'
,
char
.
IA5String
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
namedtype
.
NamedType
(
'
gString
'
,
univ
.
OctetString
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
)
class
AttributeValue
(
DirectoryString
):
pass
class
AttributeType
(
univ
.
ObjectIdentifier
):
pass
class
AttributeTypeAndValue
(
univ
.
Sequence
):
componentType
=
namedtype
.
NamedTypes
(
namedtype
.
NamedType
(
'
type
'
,
AttributeType
()),
namedtype
.
NamedType
(
'
value
'
,
AttributeValue
()),
)
class
RelativeDistinguishedName
(
univ
.
SetOf
):
componentType
=
AttributeTypeAndValue
()
class
RDNSequence
(
univ
.
SequenceOf
):
componentType
=
RelativeDistinguishedName
()
class
Name
(
univ
.
Choice
):
componentType
=
namedtype
.
NamedTypes
(
namedtype
.
NamedType
(
''
,
RDNSequence
()),
)
class
GeneralName
(
univ
.
Choice
):
componentType
=
namedtype
.
NamedTypes
(
namedtype
.
NamedType
(
'
otherName
'
,
univ
.
Sequence
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatConstructed
,
0x0
))),
namedtype
.
NamedType
(
'
rfc822Name
'
,
char
.
IA5String
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatSimple
,
1
))),
namedtype
.
NamedType
(
'
dNSName
'
,
char
.
IA5String
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatSimple
,
2
))),
namedtype
.
NamedType
(
'
x400Address
'
,
univ
.
Sequence
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatConstructed
,
0x3
))),
namedtype
.
NamedType
(
'
directoryName
'
,
Name
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatConstructed
,
0x4
))),
namedtype
.
NamedType
(
'
ediPartyName
'
,
univ
.
Sequence
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatConstructed
,
0x5
))),
namedtype
.
NamedType
(
'
uniformResourceIdentifier
'
,
char
.
IA5String
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatSimple
,
6
))),
namedtype
.
NamedType
(
'
iPAddress
'
,
univ
.
OctetString
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatSimple
,
7
))),
namedtype
.
NamedType
(
'
registeredID
'
,
univ
.
ObjectIdentifier
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatSimple
,
8
))),
)
class
GeneralNames
(
univ
.
SequenceOf
):
componentType
=
GeneralName
()
sizeSpec
=
univ
.
SequenceOf
.
sizeSpec
+
constraint
.
ValueSizeConstraint
(
1
,
MAX
)
def
_parse_asn1
(
asn1
):
obj
=
decode
(
asn1
,
asn1Spec
=
GeneralNames
())[
0
]
r
=
{}
for
o
in
obj
:
name
=
o
.
getName
()
if
name
==
'
dNSName
'
:
if
name
not
in
r
:
r
[
name
]
=
[]
r
[
name
].
append
(
str
(
o
.
getComponent
()))
if
name
==
'
otherName
'
:
if
name
not
in
r
:
r
[
name
]
=
{}
tag
=
str
(
tuple
(
o
.
getComponent
())[
0
])
val
=
str
(
tuple
(
o
.
getComponent
())[
1
])
if
tag
not
in
r
[
name
]:
r
[
name
][
tag
]
=
[]
r
[
name
][
tag
].
append
(
val
)
if
name
==
'
uniformResourceIdentifier
'
:
r
[
'
uniformResourceIdentifier
'
]
=
True
return
r
def
check_certificate
(
cert
,
domain
):
cnt
=
cert
.
get_extension_count
()
if
'
.
'
in
domain
:
compared_domain
=
domain
.
split
(
'
.
'
,
1
)[
1
]
else
:
compared_domain
=
''
srv_domain
=
'
_xmpp-client.
'
+
domain
compared_srv_domain
=
'
_xmpp-client.
'
+
compared_domain
for
i
in
range
(
0
,
cnt
):
ext
=
cert
.
get_extension
(
i
)
if
ext
.
get_short_name
()
==
b
'
subjectAltName
'
:
try
:
r
=
_parse_asn1
(
ext
.
get_data
())
except
:
log
.
error
(
'
Wrong data in certificate: subjectAltName=%s
'
%
\
ext
.
get_data
())
continue
if
'
otherName
'
in
r
:
if
oid_xmppaddr
in
r
[
'
otherName
'
]:
for
host
in
r
[
'
otherName
'
][
oid_xmppaddr
]:
try
:
host
=
prep
(
None
,
host
,
None
)
except
InvalidFormat
:
continue
if
host
==
domain
:
return
True
if
oid_dnssrv
in
r
[
'
otherName
'
]:
for
host
in
r
[
'
otherName
'
][
oid_dnssrv
]:
if
host
.
startswith
(
'
_xmpp-client.*.
'
):
if
host
.
replace
(
'
*.
'
,
''
,
1
)
==
compared_srv_domain
:
return
True
continue
if
host
==
srv_domain
:
return
True
if
'
dNSName
'
in
r
:
for
host
in
r
[
'
dNSName
'
]:
if
host
.
startswith
(
'
*.
'
):
if
host
[
2
:]
==
compared_domain
:
return
True
import
OpenSSL.SSL
import
OpenSSL.crypto
from
pyasn1.type
import
univ
,
constraint
,
char
,
namedtype
,
tag
from
pyasn1.codec.der.decoder
import
decode
from
gajim.common.helpers
import
prep
,
InvalidFormat
MAX
=
64
oid_xmppaddr
=
'
1.3.6.1.5.5.7.8.5
'
oid_dnssrv
=
'
1.3.6.1.5.5.7.8.7
'
class
DirectoryString
(
univ
.
Choice
):
componentType
=
namedtype
.
NamedTypes
(
namedtype
.
NamedType
(
'
teletexString
'
,
char
.
TeletexString
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
namedtype
.
NamedType
(
'
printableString
'
,
char
.
PrintableString
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
namedtype
.
NamedType
(
'
universalString
'
,
char
.
UniversalString
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
namedtype
.
NamedType
(
'
utf8String
'
,
char
.
UTF8String
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
namedtype
.
NamedType
(
'
bmpString
'
,
char
.
BMPString
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
namedtype
.
NamedType
(
'
ia5String
'
,
char
.
IA5String
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
namedtype
.
NamedType
(
'
gString
'
,
univ
.
OctetString
().
subtype
(
subtypeSpec
=
constraint
.
ValueSizeConstraint
(
1
,
MAX
))),
)
class
AttributeValue
(
DirectoryString
):
pass
class
AttributeType
(
univ
.
ObjectIdentifier
):
pass
class
AttributeTypeAndValue
(
univ
.
Sequence
):
componentType
=
namedtype
.
NamedTypes
(
namedtype
.
NamedType
(
'
type
'
,
AttributeType
()),
namedtype
.
NamedType
(
'
value
'
,
AttributeValue
()),
)
class
RelativeDistinguishedName
(
univ
.
SetOf
):
componentType
=
AttributeTypeAndValue
()
class
RDNSequence
(
univ
.
SequenceOf
):
componentType
=
RelativeDistinguishedName
()
class
Name
(
univ
.
Choice
):
componentType
=
namedtype
.
NamedTypes
(
namedtype
.
NamedType
(
''
,
RDNSequence
()),
)
class
GeneralName
(
univ
.
Choice
):
componentType
=
namedtype
.
NamedTypes
(
namedtype
.
NamedType
(
'
otherName
'
,
univ
.
Sequence
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatConstructed
,
0x0
))),
namedtype
.
NamedType
(
'
rfc822Name
'
,
char
.
IA5String
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatSimple
,
1
))),
namedtype
.
NamedType
(
'
dNSName
'
,
char
.
IA5String
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatSimple
,
2
))),
namedtype
.
NamedType
(
'
x400Address
'
,
univ
.
Sequence
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatConstructed
,
0x3
))),
namedtype
.
NamedType
(
'
directoryName
'
,
Name
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatConstructed
,
0x4
))),
namedtype
.
NamedType
(
'
ediPartyName
'
,
univ
.
Sequence
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatConstructed
,
0x5
))),
namedtype
.
NamedType
(
'
uniformResourceIdentifier
'
,
char
.
IA5String
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatSimple
,
6
))),
namedtype
.
NamedType
(
'
iPAddress
'
,
univ
.
OctetString
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatSimple
,
7
))),
namedtype
.
NamedType
(
'
registeredID
'
,
univ
.
ObjectIdentifier
().
subtype
(
implicitTag
=
tag
.
Tag
(
tag
.
tagClassContext
,
tag
.
tagFormatSimple
,
8
))),
)
class
GeneralNames
(
univ
.
SequenceOf
):
componentType
=
GeneralName
()
sizeSpec
=
univ
.
SequenceOf
.
sizeSpec
+
constraint
.
ValueSizeConstraint
(
1
,
MAX
)
def
_parse_asn1
(
asn1
):
obj
=
decode
(
asn1
,
asn1Spec
=
GeneralNames
())[
0
]
r
=
{}
for
o
in
obj
:
name
=
o
.
getName
()
if
name
==
'
dNSName
'
:
if
name
not
in
r
:
r
[
name
]
=
[]
r
[
name
].
append
(
str
(
o
.
getComponent
()))
if
name
==
'
otherName
'
:
if
name
not
in
r
:
r
[
name
]
=
{}
tag
=
str
(
tuple
(
o
.
getComponent
())[
0
])
val
=
str
(
tuple
(
o
.
getComponent
())[
1
])
if
tag
not
in
r
[
name
]:
r
[
name
][
tag
]
=
[]
r
[
name
][
tag
].
append
(
val
)
if
name
==
'
uniformResourceIdentifier
'
:
r
[
'
uniformResourceIdentifier
'
]
=
True
return
r
def
check_certificate
(
cert
,
domain
):
cnt
=
cert
.
get_extension_count
()
if
'
.
'
in
domain
:
compared_domain
=
domain
.
split
(
'
.
'
,
1
)[
1
]
else
:
compared_domain
=
''
srv_domain
=
'
_xmpp-client.
'
+
domain
compared_srv_domain
=
'
_xmpp-client.
'
+
compared_domain
for
i
in
range
(
0
,
cnt
):
ext
=
cert
.
get_extension
(
i
)
if
ext
.
get_short_name
()
==
b
'
subjectAltName
'
:
try
:
r
=
_parse_asn1
(
ext
.
get_data
())
except
:
log
.
error
(
'
Wrong data in certificate: subjectAltName=%s
'
%
\
ext
.
get_data
())
continue
if
'
otherName
'
in
r
:
if
oid_xmppaddr
in
r
[
'
otherName
'
]:
for
host
in
r
[
'
otherName
'
][
oid_xmppaddr
]:
try
:
host
=
prep
(
None
,
host
,
None
)
except
InvalidFormat
:
continue
if
host
==
domain
:
return
True
if
r
:
return
False
break
subject
=
cert
.
get_subject
()
if
subject
.
commonName
==
domain
:
return
True
return
False
except
ImportError
:
log
.
warning
(
'
Import of PyOpenSSL or pyasn1 failed. Cannot correctly check
'
'
SSL certificate
'
)
def
check_certificate
(
cert
,
domain
):
subject
=
cert
.
get_subject
()
if
subject
.
commonName
==
domain
:
return
True
return
False
if
oid_dnssrv
in
r
[
'
otherName
'
]:
for
host
in
r
[
'
otherName
'
][
oid_dnssrv
]:
if
host
.
startswith
(
'
_xmpp-client.*.
'
):
if
host
.
replace
(
'
*.
'
,
''
,
1
)
==
compared_srv_domain
:
return
True
continue
if
host
==
srv_domain
:
return
True
if
'
dNSName
'
in
r
:
for
host
in
r
[
'
dNSName
'
]:
if
host
.
startswith
(
'
*.
'
):
if
host
[
2
:]
==
compared_domain
:
return
True
continue
if
host
==
domain
:
return
True
if
r
:
return
False
break
subject
=
cert
.
get_subject
()
if
subject
.
commonName
==
domain
:
return
True
return
False
This diff is collapsed.
Click to expand it.
gajim/features_window.py
+
0
−
17
View file @
749a01a2
...
...
@@ -45,10 +45,6 @@ class FeaturesWindow:
# {name: (available_function, unix_text, windows_text)}
self
.
features
=
{
_
(
'
SSL certificate validation
'
):
(
self
.
pyopenssl_available
,
_
(
'
A library used to validate server certificates to ensure a secure connection.
'
),
_
(
'
Requires python-pyopenssl > 0.12 and pyasn1.
'
),
_
(
'
Requires python-pyopenssl > 0.12 and pyasn1.
'
)),
_
(
'
Bonjour / Zeroconf
'
):
(
self
.
zeroconf_available
,
_
(
'
Serverless chatting with autodetected clients in a local network.
'
),
_
(
'
Requires python-avahi.
'
),
...
...
@@ -151,19 +147,6 @@ class FeaturesWindow:
text
=
text
+
self
.
features
[
feature
][
2
]
self
.
desc_label
.
set_text
(
text
)
def
pyopenssl_available
(
self
):
try
:
import
OpenSSL.SSL
import
OpenSSL.crypto
ver
=
OpenSSL
.
__version__
ver_l
=
[
int
(
i
)
for
i
in
ver
.
split
(
'
.
'
)]
if
ver_l
<
[
0
,
12
]:
raise
ImportError
import
pyasn1
except
Exception
:
return
False
return
True
def
zeroconf_available
(
self
):
return
app
.
HAVE_ZEROCONF
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
749a01a2
...
...
@@ -271,7 +271,7 @@ setup(
install_requires
=
[
'
dbus-python;sys_platform==
"
linux
"'
,
'
nbxmpp
'
,
'
pyOpenSSL
'
,
'
pyOpenSSL
>=0.12
'
,
'
pyasn1
'
,
],
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment