From 5098d149979c6d1f9f6cc4edcb847134729d1281 Mon Sep 17 00:00:00 2001 From: Anton Livaja Date: Thu, 28 Mar 2024 20:34:05 -0400 Subject: [PATCH] feat: add tools page and update action button copy --- _config.yml | 12 ++--- _includes/head.html | 3 ++ _includes/header.html | 2 +- _layouts/about.html | 2 +- _layouts/landing.html | 6 +-- _layouts/services.html | 22 +------- _layouts/tools.html | 113 +++++++++++++++++++++++++++++++++++++++++ _sass/base.scss | 2 +- contact.md | 16 +++--- tools.md | 5 ++ 10 files changed, 142 insertions(+), 41 deletions(-) create mode 100644 _layouts/tools.html create mode 100644 tools.md diff --git a/_config.yml b/_config.yml index b783b92..bee6bd2 100644 --- a/_config.yml +++ b/_config.yml @@ -21,16 +21,16 @@ title: Distrust email: lance@distrust.co description: >- # this means to ignore newlines until "baseurl:" - Trust - Nothing + Trust Nothing baseurl: "" # the subpath of your site, e.g. /blog url: "https://distrust.co" # the base hostname & protocol for your site, e.g. http://example.com header_pages: - - index.md - - about.md - - services.md - - contact.md +- index.md +- about.md +- services.md +- tools.md +- contact.md style: dark # dark (default), light or hacker listen_for_clients_preferred_style: false # false (default) or true diff --git a/_includes/head.html b/_includes/head.html index 2aa148d..9677adf 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -32,6 +32,9 @@
Services
+
+ Tools +
Contact
diff --git a/_includes/header.html b/_includes/header.html index 3eb6e62..9f07e7f 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -19,7 +19,7 @@ {%- endfor -%}
- Request a Quote + Free Consultation
@@ -134,7 +134,7 @@

Distrust offers a wide range of services which are tailored to your organization. Whether you need a complete security assessment, want to create or improve an open source security tool, or want to focus on assessing a specific aspect of your organization or system - we are here to help. Our experienced staff will collaborate closely with you to understand your unique needs and create a tailor made solution that works for you.

Learn more - Request a Quote + Free Consultation
@@ -180,7 +180,7 @@

- Request a Quote + Free Consultation {%- include footer.html -%} diff --git a/_layouts/services.html b/_layouts/services.html index a43115f..6c53c0a 100644 --- a/_layouts/services.html +++ b/_layouts/services.html @@ -15,7 +15,7 @@

How can we help you?

Distrust offers a wide range of services which are tailored to your organization. Whether you need a complete security assessment, want to create or improve an open source security tool, or want to focus on assessing a specific aspect of your organization or system - we are here to help. Our experienced staff will collaborate closely with you to understand your unique needs and create a tailor made solution that works for you.


- Request a Quote + Free Consultation
@@ -89,28 +89,10 @@
-

Research & Development

+

Research

Rather than write the same document or tool 10 times and bill each client for it, we focus our unused retainer hours on open sourcing every document and tool we legally can, so we can focus our time with clients on their unique needs. If we are doing public work you would like so see more of, or that almost meets your needs, we would love to hear from you and figure out a path to see your needs met.

-
diff --git a/_layouts/tools.html b/_layouts/tools.html new file mode 100644 index 0000000..43fcfcd --- /dev/null +++ b/_layouts/tools.html @@ -0,0 +1,113 @@ + + + + +{%- include head.html -%} + + +
+ + {%- include header.html -%} + +
+
+
+
+

Tools

+

Distrust develops open source tooling to help make the internet a safer place!

+ +

Rather than write the same document or tool 10 times and bill each client for it, we focus our unused retainer hours on open sourcing every document and tool we legally can, so we can focus our time with clients on their unique needs. If we are doing public work you would like so see more of, or that almost meets your needs, we would love to hear from you and figure out a path to see your needs met.

+
+
+
+
+
+ +
+ +
+
+
+

AirgapOS

+ https://git.distrust.co/public/airgap +

A live buildroot based Linux distribution designed for managing secrets offline.

+ +
+
+
+
    +
  • Deterministic binary verification
  • +
  • Small footprint (< 100MB)
  • +
  • Immutable and diskless
  • +
  • Network drivers removed
  • +
+
+
+ +
+ +
+
+
+

Keyfork

+ https://git.distrust.co/public/keyfork +

An opinionated and modular toolchain for generating and managing a wide range of cryptographic keys offline and on smartcards from a shared bip39 mnemonic phrase..

+
+
+
+
    +
  • BIP39 style key derivation from OS or hardware entropy
  • +
  • Sharding mechanism allows "M-of-N" recovery
  • +
  • Built deterministically
  • +
  • Intended for use with air-gapped systems
  • +
+
+
+ +
+ +
+
+
+

StageX

+ https://codeberg.org/stagex/stagex +

Minimalism and security first repository of reproducible and multi-signed OCI images of common open source software toolchains full-source bootstrapped from Stage 0 all the way up.

+
+
+
+
    +
  • Fully verifiable and deterministic build toolchain
  • +
  • Deterministic packages of commonly used software (rust, go, openssl, curl and many more)
  • +
  • Flexible drop in replacement for existing software
  • +
  • Available on [dockerhub](https://hub.docker.com/u/stagex)
  • +
+
+
+ +
+ +
+
+
+

EnclaveOS

+ https://git.distrust.co/public/enclaveos +

A minimal, immutable, and deterministic Linux unikernel build system targeting various Trusted Execution Environments for use cases that require high security and accountability.

+
+
+
+
    +
  • Immutable: Root filesystem is a CPIO filesystem extracted to a RamFS at boot
  • +
  • Minimal: < 5MB footprint and nothing is included but a kernel and your target binary by default
  • +
  • Deterministic: multiple people can reproduce the build and verify its integrity
  • +
  • Hardened: No TCP/IP network support, most unnecessary kernel features disabled and follows [Kernel Self Protection Project](https://kernsec.org/wiki/index.php/Kernel_Self_Protection_Project) recommendations
  • +
+
+
+
+ + {%- include footer.html -%} + +
+ + + \ No newline at end of file diff --git a/_sass/base.scss b/_sass/base.scss index c5b790a..585ee36 100644 --- a/_sass/base.scss +++ b/_sass/base.scss @@ -71,7 +71,7 @@ hr { margin-top: 20px; } .header-page-links a { margin: 0px 15px; - font-size: 1.3rem; + font-size: 1.1rem; text-decoration: none; } diff --git a/contact.md b/contact.md index f923744..29e37a1 100644 --- a/contact.md +++ b/contact.md @@ -4,18 +4,16 @@ layout: home permalink: /contact.html --- +Send an email to `sales@distrust.co` to schedule a free introductory consultation. + +## Emails + +- [sales@distrust.co](mailto:sales@distrust.co) +- [team@distrust.co](mailto:team@distrust.co) + ## Team - Lance Vick \<[lance@distrust.co](mailto:lance@distrust.co)\> [6B61 ECD7 6088 748C 7059 0D55 E90A 4013 36C8 AAA9](https://keys.openpgp.org/vks/v1/by-fingerprint/6B61ECD76088748C70590D55E90A401336C8AAA9) - Ryan Heywood \<[ryan@distrust.co](mailto:ryan@distrust.co)\> [8882 3A75 ECAA 786B 0FF3 8B14 8E40 1478 A3FB EF72](https://keys.openpgp.org/vks/v1/by-fingerprint/88823A75ECAA786B0FF38B148E401478A3FBEF72) - Anton Livaja \<[anton@distrust.co](mailto:anton@distrust.co)\> [F4BF 5C81 EC78 A5DD 341C 91EE DC4B 7D1F 52E0 BA4D](https://keys.openpgp.org/vks/v1/by-fingerprint/F4BF5C81EC78A5DD341C91EEDC4B7D1F52E0BA4D) - Shane Engelman \<[shane@distrust.co](mailto:shane@distrust.co)\> [3D7C 8D39 E8C4 DF77 1583 D3F0 A8A0 91FD 3460 01CA](https://keys.openpgp.org/vks/v1/by-fingerprint/3D7C8D39E8C4DF771583D3F0A8A091FD346001CA) - -## Sales - -- [sales@distrust.co](mailto:sales@distrust.co) - - -## General - -- [team@distrust.co](mailto:team@distrust.co) diff --git a/tools.md b/tools.md new file mode 100644 index 0000000..fee9953 --- /dev/null +++ b/tools.md @@ -0,0 +1,5 @@ +--- +title: Tools +layout: tools +permalink: /tools.html +--- \ No newline at end of file