Skip to content

Commit 6d77c93

Browse files
authored
Merge pull request #2610 from testssl/links
Change orga from drwetter --> testssl
2 parents b5ad5bd + 5f4ca15 commit 6d77c93

File tree

5 files changed

+51
-47
lines changed

5 files changed

+51
-47
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
* Trust chain check against certificate stores from Apple (OS), Linux (OS),
138138
Microsoft (OS), Mozilla (Firefox Browser), works for openssl >=1.0.1
139139
* IPv6 (status: 80% working, details see
140-
https://github.com/drwetter/testssl.sh/issues/11
140+
https://github.com/testssl/testssl.sh/issues/11
141141
* works now on servers requiring a x509 certificate for authentication
142142
* extensive CN <--> hostname check
143143
* SSL Session ID check
@@ -183,7 +183,7 @@
183183
* quite some LibreSSL fixes, still not recommended to use though (see https://testssl.sh/)
184184
* lots of fixes, code improvements, even more robust
185185

186-
Full log @ https://github.com/drwetter/testssl.sh/commits/2.6/testssl.sh
186+
Full log @ https://github.com/testssl/testssl.sh/commits/2.6/testssl.sh
187187

188188
### New in 2.4
189189
* "only one cmd line option at a time" is completely gone
@@ -198,7 +198,7 @@ Full log @ https://github.com/drwetter/testssl.sh/commits/2.6/testssl.sh
198198
* lots of cosmetic and maintainability code cleanups
199199
* bugfixing
200200

201-
Full changelog: https://github.com/drwetter/testssl.sh/commits/2.4/testssl.sh
201+
Full changelog: https://github.com/testssl/testssl.sh/commits/2.4/testssl.sh
202202

203203
### 2.2. new features:
204204
* Works fully under FreeBSD (openssl >=1.0)
@@ -214,7 +214,7 @@ Full changelog: https://github.com/drwetter/testssl.sh/commits/2.4/testssl.sh
214214
* RFC <---> OpenSSL name space mapping of ciphers everywhere
215215
* includes a lot of fixes
216216

217-
Full changelog @ https://github.com/drwetter/testssl.sh/commits/2.2/testssl.sh
217+
Full changelog @ https://github.com/testssl/testssl.sh/commits/2.2/testssl.sh
218218

219219
### 2.0 major release, new features:
220220
* SNI

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ is always welcome, here @ github or via e-mail.
55

66
Note please the following
77

8-
* Please read at least the [coding convention](https://github.com/drwetter/testssl.sh/Coding_Convention.md).
8+
* Please read at least the [coding convention](https://github.com/testssl/testssl.sh/Coding_Convention.md).
99
* One PR per feature or bug fix or improvement. Please do not mix issues.
1010
* Document your PR, both in the PR and/or commit message and in the code.
1111
* Please test your changes thoroughly as reliability is important for this project. You may want to check different servers with different settings.

Dockerfile.git

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ FROM alpine:3.20
55
WORKDIR /home/testssl
66

77
ARG BUILD_VERSION
8-
ARG ARCHIVE_URL=https://github.com/drwetter/testssl.sh/archive/
9-
ARG URL=https://github.com/drwetter/testssl.sh.git
8+
ARG ARCHIVE_URL=https://github.com/testssl/testssl.sh/archive/
9+
ARG URL=https://github.com/testssl/testssl.sh.git
1010

1111
RUN test -n "${BUILD_VERSION}" \
1212
&& apk update \

Readme.md

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11

22
## Intro
33

4-
[![CI tests](https://github.com/drwetter/testssl.sh/actions/workflows/unit_tests.yml/badge.svg)](https://github.com/drwetter/testssl.sh/actions/workflows/unit_tests.yml)
5-
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/drwetter/testssl.sh?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6-
[![License](https://img.shields.io/github/license/drwetter/testssl.sh)](https://github.com/drwetter/testssl.sh/LICENSE)
7-
[![Docker](https://img.shields.io/docker/pulls/drwetter/testssl.sh)](https://github.com/drwetter/testssl.sh/blob/3.2/Dockerfile.md)
4+
[![CI tests](https://github.com/testssl/testssl.sh/actions/workflows/unit_tests.yml/badge.svg)](https://github.com/testssl/testssl.sh/actions/workflows/unit_tests.yml)
5+
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/testssl/testssl.sh?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6+
[![License](https://img.shields.io/github/license/testssl/testssl.sh)](https://github.com/testssl/testssl.sh/LICENSE)
7+
[![Docker](https://img.shields.io/docker/pulls/testssl/testssl.sh)](https://github.com/testssl/testssl.sh/blob/3.2/Dockerfile.md)
8+
89

910
`testssl.sh` is a free command line tool which checks a server's service on
1011
any port for the support of TLS/SSL ciphers, protocols as well as some
@@ -44,16 +45,16 @@ due to bash-socket-based checks. As a result you can also use e.g. LibreSSL or O
4445
(silent) check for binaries is done when you start testssl.sh . System V needs probably
4546
to have GNU grep installed. MacOS X and Windows (using MSYS2, Cygwin or WSL) work too.
4647

47-
Update notification here or @ [mastodon](https://infosec.exchange/@testssl) (old: [twitter](https://twitter.com/drwetter))
48+
Update notification here or @ [mastodon](https://infosec.exchange/@testssl or [bluesky](https://bsky.app/profile/testssl.bsky.social). Please note the [twitter](https://twitter.com/drwetter) account is not being used anymore.
4849

4950
### Installation
5051

5152
You can download testssl.sh branch 3.2 just by cloning this git repository:
5253

53-
git clone --depth 1 https://github.com/drwetter/testssl.sh.git
54+
git clone --depth 1 https://github.com/testssl/testssl.sh.git
5455

55-
3.2 is now the latest branch which evolved from 3.1dev. It's in the release candidate phase.
56-
For the former stable version help yourself by downloading the [ZIP](https://codeload.github.com/drwetter/testssl.sh/zip/v3.0.8) or [tar.gz](https://codeload.github.com/drwetter/testssl.sh/tar.gz/v3.0.8) archive. Just ``cd`` to the directory created (=INSTALLDIR) and run it off there.
56+
3.2 is now the latest branch which evolved from 3.1dev. It's in the release candidate phase and considered as stable.
57+
For the former stable version named oldstable please help yourself by downloading the [ZIP](https://codeload.github.com/testssl/testssl.sh/zip/v3.0.9) or [tar.gz](https://codeload.github.com/testssl/testssl.sh/tar.gz/v3.0.9) archive. Just ``cd`` to the directory created (=INSTALLDIR) and run it off there.
5758

5859
#### Docker
5960

@@ -68,19 +69,19 @@ Or if you have cloned this repo you also can just ``cd`` to the INSTALLDIR and r
6869
docker build . -t imagefoo && docker run --rm -t imagefoo example.com
6970
```
7071

71-
For more please consult [Dockerfile.md](https://github.com/drwetter/testssl.sh/blob/3.2/Dockerfile.md).
72+
For more please consult [Dockerfile.md](https://github.com/testssl/testssl.sh/blob/3.2/Dockerfile.md).
7273

7374
### No Warranty
7475

75-
Usage of the program is without any warranty. Use it at your own risk.
76+
Usage of the program is without any warranty. Use it at your own risk.
7677

7778
Testssl.sh is intended to be used as a standalone CLI tool. While we tried to apply best practise security measures, we can't guarantee that the program is without any vulnerabilities. Running as a service may pose security risks and you're recommended to apply additional security measures.
7879

7980
### Status
8081

81-
We're currently in the release candidate phase for version 3.2. Bigger features will be developed in a separate branch before merged into a 3.3dev to avoid hiccups or inconsistencies.
82+
We're currently in the release candidate phase for version 3.2. You should use it despite the label "RC". Bigger features will be developed in a separate branch before merged into a 3.3dev to avoid hiccups or inconsistencies.
8283

83-
Version 3.0.X receives bugfixes, labeled as 3.0.1, 3.0.2 and so on. This will happen until 3.2 is released.
84+
Version 3.0.X receives bugfixes, labeled as 3.0.1, 3.0.2 and so on. This will happen until 3.2 is finally released.
8485

8586
Support for 2.9.5 has been dropped. Supported is >= 3.0.x only.
8687

@@ -92,16 +93,19 @@ Support for 2.9.5 has been dropped. Supported is >= 3.0.x only.
9293

9394
### Contributing
9495

95-
Contributions are welcome! See [CONTRIBUTING.md](https://github.com/drwetter/testssl.sh/blob/3.2/CONTRIBUTING.md) for details. Please also have a look at the [Coding Convention](https://github.com/drwetter/testssl.sh/blob/3.2/Coding_Convention.md).
96+
Contributions are welcome! See [CONTRIBUTING.md](https://github.com/testssl/testssl.sh/blob/3.2/CONTRIBUTING.md) for details. Please also have a look at the [Coding Convention](https://github.com/testssl/testssl.sh/blob/3.2/Coding_Convention.md). A lot of contributors already helped to push the project where it currently is, see [CREDITS.md](https://github.com/testssl/testssl.sh/blob/3.2/CREDITS.md). We still you use your help now. A start would be look for issues which are labeled as [good first issue](https://github.com/testssl/testssl.sh/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22), [for grabs](https://github.com/testssl/testssl.sh/issues?q=is%3Aissue+is%3Aopen+label%3A%22for+grabs%22) or [help wanted](https://github.com/testssl/testssl.sh/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22). The latter is more advanced.
97+
98+
In general there's some maintenance burden, like maintaining handshakes and CA stores, writing unit tests, improving github actions. If you believe you can contribute, speak up.
99+
96100

97101
### Bug reports
98102

99103
Bug reports are important. It makes this project more robust.
100104

101105
Please file bugs in the issue tracker @ GitHub. Do not forget to provide detailed information, see template for issue, and further details @
102-
https://github.com/drwetter/testssl.sh/wiki/Bug-reporting. Nobody can read your thoughts -- yet. And only agencies your screen ;-)
106+
https://github.com/testssl/testssl.sh/wiki/Bug-reporting. Nobody can read your thoughts -- yet. And only agencies your screen ;-)
103107

104-
You can also debug yourself, see [here](https://github.com/drwetter/testssl.sh/wiki/Findings-and-HowTo-Fix-them).
108+
You can also debug yourself, see [here](https://github.com/testssl/testssl.sh/wiki/Findings-and-HowTo-Fix-them).
105109

106110
----
107111

@@ -128,7 +132,7 @@ Please address questions not specifically to the code of testssl.sh to the respe
128132

129133
#### Brew package
130134

131-
* see [#233](https://github.com/drwetter/testssl.sh/issues/233) and
135+
* see [#233](https://github.com/testssl/testssl.sh/issues/233) and
132136
[https://github.com/Homebrew/homebrew](https://github.com/Homebrew/homebrew)
133137

134138
#### Daemon for batch execution of testssl.sh command files

0 commit comments

Comments
 (0)