Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dnsviz/dnsviz.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-09-28Fix check of exceeding original TTLHEADmasterCasey Deccio
Check original TTL field twice: once for RRSIG TTL and once for RRset TTL. Fixes #85
2021-09-14Merge pull request #87 from pemensik/pytestCasey Deccio
Make tests work with Pytest
2021-09-14Make tests detected by pytestPetr Menšík
Do not require explicit running of each test, locate tests just from pytest. Change also travis test paths.
2021-09-14Do not require working fileno in testsPetr Menšík
Pytest replaces stdin and stdout with fake class, ensuring stdin is not used in tests. Tests work fine with file handle directly, fallback from io.open to just pure class. It makes tests passing under pytest.
2021-08-17Only graph external signer if there is an analysisCasey Deccio
2021-08-17External signer is optionalCasey Deccio
2021-08-06Make compatible with python2.7Casey Deccio
2021-08-06Use a daemon-type thread to simplify managementCasey Deccio
2021-08-03Print algorithm value as integer, not enumCasey Deccio
2021-08-03Only populate zsks/ksks if there are DNSKEYsCasey Deccio
2021-07-28Don't crash with no IPv6 supportCasey Deccio
Newer Linux kernels don't fail on bind() when there is no IPv6 support; instead they get as far as connect() before they fail. This commit modifies the error assessment after a query attempt was made, such that EADDRNOTAVAIL isn't a problem if the address was the wildcard address.
2021-07-28Tweak install instructionsCasey Deccio
2021-07-28Update linkCasey Deccio
2021-07-28Add reference to RHEL 8 / CentOS 8Casey Deccio
2021-07-27Allow scripts to run without /etc/resolv.conf if not neededCasey Deccio
2021-07-27Remove superfluous statementCasey Deccio
2021-07-08Query for NSEC3PARAMCasey Deccio
2021-07-08Merge pull request #83 from fcelda/ttl-expiration-conditionCasey Deccio
fix comparing record TTL and RRSIG expiration time
2021-07-08fix comparing record TTL and RRSIG expiration timeJan Včelák
2021-03-12Initialize key-related vars if DNSKEY was queriedCasey Deccio
2021-03-12Bump version to 0.9.3v0.9.3Casey Deccio
2021-03-05Recreate EDNS if options or payload are changedCasey Deccio
dnspython >= 2.0.0 introduces an OPT class, instances of which include the edns, ednsflags, and payload attributes. However, the payload attribute is immutable because it is actually the TTL value of the OPT record. This commit changes the code to use use_edns() instead of trying to set payload directly. Additionally, the EDNS options in dnspython >= 2.0.0 are implemented as a tuple, so use_edns() is to modify the option as well. Fixes #74.
2021-02-06Bump version to 0.9.2v0.9.2Casey Deccio
2021-02-06Merge pull request #72 from julianbrost/python-3.9Casey Deccio
Add compatibility for Python 3.9
2021-02-06Update version checking for pygraphviz 1.7Casey Deccio
2021-02-06Don't try to retrieve a query that wasn't madeCasey Deccio
2021-02-01Add compatibility for Python 3.9Julian Brost
Python 3.1 deprecated base64.encodestring() in favor of the newly introduced base64.encodebytes() [0]. In Python 3.9, base64.encodestring() got removed [1]. [0] https://docs.python.org/3.1/library/base64.html#base64.encodestring [1] https://docs.python.org/3/whatsnew/3.9.html#removed
2021-01-28Correct prefix for Ed448Casey Deccio
2021-01-20Bump version to 0.9.1v0.9.1Casey Deccio
2021-01-19Update copyright yearCasey Deccio
2021-01-19Allow custom ports for recursive servers tooCasey Deccio
Recursive servers were not previously being considered. This is fixed by checking for WILDCARD_EXPLICIT_DELEGATION. Fixes #71.
2021-01-19Only reference dnskey is there is oneCasey Deccio
2021-01-12Update version to 0.9.0Casey Deccio
2021-01-12Add tests to distCasey Deccio
2021-01-09Update version numberv0.9.0Casey Deccio
2021-01-09Merge pull request #69 from dnsviz/obsoletealgCasey Deccio
Obsoletealg
2021-01-09Fix warning logicCasey Deccio
2021-01-09Always warn if digest type 1 exists with stronger digest typeCasey Deccio
2021-01-09Update wording of errorCasey Deccio
2021-01-09Warn if using prohibited or not recommended algorithmCasey Deccio
2021-01-09Warn if zones are signed with prohibited algorithmsCasey Deccio
2021-01-09Revamp code that ignores SHA1 if something better existsCasey Deccio
2021-01-09Make wording more intuitiveCasey Deccio
2021-01-09Allow prohibited algorithms to be considered with command-line optionCasey Deccio
2021-01-09Consider algorithms that MUST NOT be validatedCasey Deccio
See #63 and RFC 8624.
2021-01-09Sort out supported_algs in a separate methodCasey Deccio
2021-01-09Fix typoCasey Deccio
2021-01-09Categorize errors appropriatelyCasey Deccio
2020-12-30Add meaningful commentsCasey Deccio
2020-12-30Make change in 26a8b7 fit better in existing codeCasey Deccio