Breaking Cloud Native Web APIs in their natural habitat.

Overview

Go GitHub Action Container Build GitHub Action Kubernetes Integration GitHub Action

cnfuzz - Cloud Native Web API Fuzzer

"Breaking Cloud Native Web APIs in their natural habitat."

Fuzzing web APIs in their fully converged Cloud Native state renders more representative results, just like it would have been deployed in production.

cnfuzz is a project written in Golang that automates fuzzing web APIs deployed in Kubernetes clusters. By tracking hashes of all container images, (re)deployed web API versions will be fuzzed - to detect potential security and stability issues and stores its results in a data lake.

OpenAPI and RESTler by Microsoft are being used to further automate the process.

Why?

  • You want to fuzz web API logic where they actually operate, especially when fuzzing complete Service Meshes
  • You want to integrate and/or build data lakes with fuzzing data on top of AWS S3 based storage
  • You want to save expensive Cloud CI/CD pipeline credits by using idle Kubernetes cluster resources
  • You want fuzzing te be done outside of your CI/CD pipeline
  • You have heavy performance requirements for your fuzzing and Cloud based CI/CD pipelines do not suffice
  • You want to fuzz web API's of services which are interconnected and are being deployed by different teams in the same Kubernetes cluster
  • You want to automatically fuzz existing opensource software for instability issues
  • You get excited over fuzzing farms

Architecture

Usage

Installation

helm repo add cnfuzz https://suecodelabs.github.io/cnfuzz
helm repo update
helm install cnfuzz cnfuzz/cnfuzz

Getting started

All it takes to getting started after installation of cnfuzz on your Kubernetes cluster is to annotate your Kubernetes Pods, Deployments, DaemonSets, etc like in the following example:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: my-api
spec:
  selector:
    matchLabels:
      app: my-api
  replicas: 1
  template:
    metadata:
      labels:
        app: my-api
      annotations:
        cnfuzz/enable: "true"
        cnfuzz/open-api-doc: "/swagger/swagger.json"
        cnfuzz/secret: "0d5989ed-d60c-470e-b1b5-576fcf0f5d8c"
    spec:
      containers:
        - name: myapi
          image: my-api
          imagePullPolicy: Always
          ports:
            - containerPort: 80

Setup Kubernetes development environment

Build and run

Kind

# don't forget to commit your changes locally before deploying to Kind.
make kind-init

Rancher Desktop

# don't forget to commit your changes locally before deploying to Rancher Desktop.
make rancher-init

These commands do the following:

  • Setup initial deployment of cnfuzz
  • Build a container image and load it into Kubernetes
  • Install cnfuzz via helm with the local built image
  • Create example webapi deployment to fuzz

Kind

# don't forget to commit your changes locally before deploying to Kind.
make kind-build

Rancher Desktop

# don't forget to commit your changes locally before deploying to Kind.
make rancher-build

These commands do the following:

  • (re)-build cnfuzz and upgrade deployment with latest image

Cleanup the build

This command does the following:

  • delete the cnfuzz installation from Kubernetes
make k8s-clean
# If you did a git pull between the above build and the below k8s-clean
# you will see an error. Specify the release as follows:
make k8s-clean GIT_COMMIT=f4fd3d2

Build project

For building the project you can use the Makefile.

Build Docker image

IMAGE=myrepo/cnfuzz make image

Compile binary

# Compile project to binary dist/cnfuzz
make build

Prepare for release

cd docs
helm package ../charts/cnfuzz
helm repo index --url https://suecodelabs.github.io/cnfuzz/ .

Roadmap

  • Opensource graduation research project ❤️
  • Support Kustomize
  • Integrate more tightly with Kubernetes
  • Autodiscovery of possible URI prefixes

Sponsors

Engineering Team

  • Luuk van den Maagdenberg, Lead Developer
  • Pim Merks, Developer
  • Robert Scholts, Developer
  • Sylvia van Os, Developer
  • Ofer Chen, Developer
  • Serge van Namen, Developer / Community Lead
  • Hans Strijker, Maintainer
  • Sam Crauwels, Maintainer
  • Michiel Westerink, Maintainer

Community

Every first Thursday of the month at 18:30 CET there will be a hybrid community meetup for users, developers and maintainers of the project hosted at Sue B.V. in the Netherlands.

Google Meet or see you at Sue B.V. including lovely drinks and food before the meetup!

Swag

Do you want swag that our awesome marketing team created for this project? Come to our community meetup on prem or contact [email protected] to receive your swag!

Stickers & Gear

Support

Do you need support that cannot be handled via issue tracking? Please contact us at [email protected] or via the contact form on this page.

Comments
  • install question

    install question

    helm install cnfuzz cnfuzz/cnfuzz

    return an error :Error: INSTALLATION FAILED: failed post-install: timed out waiting for the condition

    iwant to know :need whose condition

    question 
    opened by zyd6 15
  • To use cnfuzzy, I only need to prepare the following 3 points.?

    To use cnfuzzy, I only need to prepare the following 3 points.?

    My project is the spring boot project

    1、cnfuzz/enable: "true" Set to use cnfuzzy identification 2、cnfuzz/open-api-doc: "/swagger/swagger.json" I need to prepare the swagger document under the target project container directory 3、cnfuzz/secret: "0d5989ed-d60c-470e-b1b5-576fcf0f5d8c" I don't understand the meaning of this secret. Whether the key of cnfuzzy service or the key of target project

    opened by zyd6 7
  • Major CNFuzz refactor

    Major CNFuzz refactor

    Major refactor of CNFuzz. The biggest difference is in how config works. Instead of using flags we now simply parse a yaml file inside a config map. Other big change is in how logging is implemented. We now use logr in combination with zap (just like the Kubernetes project).

    Some small things still need to be done. Like adding back the health checks and adding tests for the new code.

    closes #8 closes #63 (not entirely true, but I'm fine with keeping Cobra) Probably fixes some bugs

    opened by Luukvdm 2
  • Bump github.com/getkin/kin-openapi from 0.110.0 to 0.111.0

    Bump github.com/getkin/kin-openapi from 0.110.0 to 0.111.0

    Bumps github.com/getkin/kin-openapi from 0.110.0 to 0.111.0.

    Release notes

    Sourced from github.com/getkin/kin-openapi's releases.

    v0.111.0

    What's Changed

    New Contributors

    Full Changelog: https://github.com/getkin/kin-openapi/compare/v0.110.0...v0.111.0

    Commits
    • 2975a21 openapi3: patch YAML serialization of dates (#698)
    • 35bb627 Fix links to OpenAPI spec after GitHub changes (#714)
    • 6a3b779 Fix inconsistent processing of server variables in gorillamux router (#705)
    • 6cbc1b0 openapi3filter: parse integers with strconv.ParseInt instead of ParseFloat (#...
    • 7413c27 openapi3filter: Include schema ref or title in response body validation error...
    • b003421 Add json patch support (#702)
    • c1219e3 Bugfix/issue638 (#700)
    • f136047 Use and update GetBody() member of request (#704)
    • 8718011 Try decoding as JSON first then YAML, for speed (#693)
    • ebbf60d fix: setting defaults for oneOf and anyOf (#690)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • Bump sigs.k8s.io/controller-runtime from 0.13.1 to 0.14.0

    Bump sigs.k8s.io/controller-runtime from 0.13.1 to 0.14.0

    Bumps sigs.k8s.io/controller-runtime from 0.13.1 to 0.14.0.

    Release notes

    Sourced from sigs.k8s.io/controller-runtime's releases.

    v0.14.0

    Changes since v0.13.1

    :warning: Breaking Changes

    • Add Get functionality to SubResourceClient (#2094)
    • Allow configuring RecoverPanic for controllers globally (#2093)
    • Add client.SubResourceWriter (#2072)
    • Support registration and removal of event handler (#2046)
    • Update Kubernetes dependencies to v0.26 (#2043, #2087)
    • Zap log: Default to RFC3339 time encoding (#2029)
    • cache.BuilderWithOptions inherit options from caller (#1980)

    :sparkles: New Features

    • Builder: Do not require For (#2091)
    • support disable deepcopy on list funcion (#2076)
    • Add cluster.NewClientFunc with options (#2054)
    • Tidy up startup logging of kindWithCache source (#2057)
    • Add function to get reconcileID from context (#2056)
    • feat: add NOT predicate (#2031)
    • Allow to provide a custom lock interface to manager (#2027)
    • Add tls options to manager.Options (#2023)
    • Update Go version to 1.19 (#1986)

    :bug: Bug Fixes

    • Prevent manager from getting started a second time (#2090)
    • Missing error log for in-cluster config (#2051)
    • Skip custom mutation handler when delete a CR (#2049)
    • fix: improve semantics of combining cache selectorsByObject (#2039)
    • Conversion webhook should not panic when conversion request is nil (#1970)

    :seedling: Others

    • Prepare for release 0.14 (#2100)
    • Generate files and update modules (#2096)
    • Bump github.com/onsi/ginkgo/v2 from 2.5.1 to 2.6.0 (#2097)
    • Bump golang.org/x/time (#2089)
    • Update OWNERS: remove inactive members, promote fillzpp sbueringer (#2088, #2092)
    • Default ENVTEST version to a working one (1.24.2) (#2081)
    • Update golangci-lint to v1.50.1 (#2080)
    • Bump go.uber.org/zap from 1.23.0 to 1.24.0 (#2077)
    • Bump golang.org/x/sys from 0.2.0 to 0.3.0 (#2078)
    • Ignore Kubernetes Dependencies in Dependabot (#2071)
    • Bump github.com/prometheus/client_golang from 1.13.0 to 1.14.0 (#2070)
    • Bump github.com/onsi/ginkgo/v2 from 2.5.0 to 2.5.1 (#2066)
    • seedling to dependabot (#2065)
    • Bump github.com/onsi/gomega from 1.23.0 to 1.24.1 (#2062)
    • Bump go.uber.org/zap from 1.21.0 to 1.23.0 (#2060)
    • Bump actions/checkout from 2 to 3 (#2059)
    • Bump golangci/golangci-lint-action from 2 to 3 (#2058)
    • Add Dependabot for dependency management (#2050)
    • Deprecate Webhook Server TLSMinVersion (#2041)

    ... (truncated)

    Commits
    • ddcb99d Merge pull request #2100 from vincepri/release-0.14
    • 69f0938 Merge pull request #2094 from alvaroaleman/subresoruce-get
    • 8738e91 Merge pull request #2091 from alvaroaleman/no-for
    • ca4b4de Merge pull request #2096 from lucacome/generate
    • 5673341 Merge pull request #2097 from kubernetes-sigs/dependabot/go_modules/github.co...
    • 7333aed :seedling: Bump github.com/onsi/ginkgo/v2 from 2.5.1 to 2.6.0
    • d4f1e82 Generate files and update modules
    • a387bf4 Merge pull request #2093 from alvaroaleman/recover-panic-globally
    • da7dd5d :warning: Allow configuring RecoverPanic for controllers globally
    • c773bef Merge pull request #2092 from alvaroaleman/cleanup-2
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • Bump github.com/getkin/kin-openapi from 0.107.0 to 0.108.0

    Bump github.com/getkin/kin-openapi from 0.107.0 to 0.108.0

    Bumps github.com/getkin/kin-openapi from 0.107.0 to 0.108.0.

    Release notes

    Sourced from github.com/getkin/kin-openapi's releases.

    v0.108.0

    What's Changed

    New Contributors

    Full Changelog: https://github.com/getkin/kin-openapi/compare/v0.107.0...v0.108.0

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • Bump github.com/spf13/cobra from 1.5.0 to 1.6.1

    Bump github.com/spf13/cobra from 1.5.0 to 1.6.1

    Bumps github.com/spf13/cobra from 1.5.0 to 1.6.1.

    Release notes

    Sourced from github.com/spf13/cobra's releases.

    v1.6.1

    Bug fixes 🐛

    • Fixes a panic when AddGroup isn't called before AddCommand(my-sub-command) is executed. This can happen within more complex cobra file structures that have many different inits to be executed. Now, the check for groups has been moved to ExecuteC and provides more flexibility when working with grouped commands - @​marckhouzam (and shout out to @​aawsome, @​andig and @​KINGSABRI for a deep investigation into this! 👏🏼)

    v1.6.0

    Summer 2022 Release

    Some exciting changes make their way to Cobra! Command completions continue to get better and better (including adding --help and --version automatic flags to the completions list). Grouping is now possible in your help output as well! And you can now use the OnFinalize method to cleanup things when all "work" is done. Checkout the full changelog below:


    Features 🌠

    Deprecation 👎🏼

    • ExactValidArgs is deprecated (but not being removed entirely). This is abit nuanced, so checkout #1643 for further information and the updated user_guide.md on how this may affect you (and how you can take advantage of the correct behavior in the validators): @​umarcor #1643

    Bug fixes 🐛

    Dependencies 🗳️

    Testing 🤔

    Docs ✏️

    Misc 💭

    ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • Bump github.com/getkin/kin-openapi from 0.104.0 to 0.106.0

    Bump github.com/getkin/kin-openapi from 0.104.0 to 0.106.0

    Bumps github.com/getkin/kin-openapi from 0.104.0 to 0.106.0.

    Release notes

    Sourced from github.com/getkin/kin-openapi's releases.

    v0.106.0

    What's Changed

    Full Changelog: https://github.com/getkin/kin-openapi/compare/v0.105.0...v0.106.0

    v0.105.0

    What's Changed

    New Contributors

    Full Changelog: https://github.com/getkin/kin-openapi/compare/v0.104.0...v0.105.0

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • Bump k8s.io/apimachinery from 0.25.2 to 0.25.3

    Bump k8s.io/apimachinery from 0.25.2 to 0.25.3

    Bumps k8s.io/apimachinery from 0.25.2 to 0.25.3.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • Bump github.com/spf13/cobra from 1.5.0 to 1.6.0

    Bump github.com/spf13/cobra from 1.5.0 to 1.6.0

    Bumps github.com/spf13/cobra from 1.5.0 to 1.6.0.

    Release notes

    Sourced from github.com/spf13/cobra's releases.

    v1.6.0

    Summer 2022 Release

    Some exciting changes make their way to Cobra! Command completions continue to get better and better (including adding --help and --version automatic flags to the completions list). Grouping is now possible in your help output as well! And you can now use the OnFinalize method to cleanup things when all "work" is done. Checkout the full changelog below:


    Features 🌠

    Deprecation 👎🏼

    • ExactValidArgs is deprecated (but not being removed entirely). This is abit nuanced, so checkout #1643 for further information and the updated user_guide.md on how this may affect you (and how you can take advantage of the correct behavior in the validators): @​umarcor #1643

    Bug fixes 🐛

    Dependencies 🗳️

    Testing 🤔

    Docs ✏️

    Misc 💭

    Note: Per #1804, we will be moving away from "seasonal" releases and doing more generic point release targets. Continue to track the milestones and issues in the spf13/cobra GitHub repository for more information!

    Great work everyone! Cobra would never be possible without your contributions! 🐍

    ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • Bump k8s.io/api from 0.25.0 to 0.25.1

    Bump k8s.io/api from 0.25.0 to 0.25.1

    Bumps k8s.io/api from 0.25.0 to 0.25.1.

    Commits
    • d6c357a Update dependencies to v0.25.1 tag
    • fce3016 Merge pull request #112161pohly/automated-cherry-pick-of-#112129
    • 29513a2 dependencies: update to ginkgo v2.1.6 and gomega v1.20.1
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • Bump github.com/getkin/kin-openapi from 0.110.0 to 0.112.0

    Bump github.com/getkin/kin-openapi from 0.110.0 to 0.112.0

    Bumps github.com/getkin/kin-openapi from 0.110.0 to 0.112.0.

    Release notes

    Sourced from github.com/getkin/kin-openapi's releases.

    v0.112.0

    What's Changed

    New Contributors

    Full Changelog: https://github.com/getkin/kin-openapi/compare/v0.111.0...v0.112.0

    v0.111.0

    What's Changed

    New Contributors

    Full Changelog: https://github.com/getkin/kin-openapi/compare/v0.110.0...v0.111.0

    Commits
    • 46e0df8 openapi3filter: use option to skip setting defaults on validation (#708)
    • a0b67a0 openapi3: continue validation on valid oneOf properties (#721)
    • 1f680b5 feat: improve error reporting for bad/missing discriminator (#718)
    • 1490eae openapi3: introduce (Paths).InMatchingOrder() paths iterator (#719)
    • de2455e openapi3: unexport ValidationOptions fields and add some more (#717)
    • 3be535f openapi3filter: validate non-string headers (#712)
    • 25a5fe4 Leave allocation capacity guessing to the runtime (#716)
    • 2975a21 openapi3: patch YAML serialization of dates (#698)
    • 35bb627 Fix links to OpenAPI spec after GitHub changes (#714)
    • 6a3b779 Fix inconsistent processing of server variables in gorillamux router (#705)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • Bump sigs.k8s.io/controller-runtime from 0.13.1 to 0.14.1

    Bump sigs.k8s.io/controller-runtime from 0.13.1 to 0.14.1

    Bumps sigs.k8s.io/controller-runtime from 0.13.1 to 0.14.1.

    Release notes

    Sourced from sigs.k8s.io/controller-runtime's releases.

    v0.14.1

    Changes since v0.14.0

    :bug: Bug Fixes

    Full Changelog: https://github.com/kubernetes-sigs/controller-runtime/compare/v0.14.0...v0.14.1

    v0.14.0

    Changes since v0.13.1

    :warning: Breaking Changes

    • Add Get functionality to SubResourceClient (#2094)
    • Allow configuring RecoverPanic for controllers globally (#2093)
    • Add client.SubResourceWriter (#2072)
    • Support registration and removal of event handler (#2046)
    • Update Kubernetes dependencies to v0.26 (#2043, #2087)
    • Zap log: Default to RFC3339 time encoding (#2029)
    • cache.BuilderWithOptions inherit options from caller (#1980)

    :sparkles: New Features

    • Builder: Do not require For (#2091)
    • support disable deepcopy on list funcion (#2076)
    • Add cluster.NewClientFunc with options (#2054)
    • Tidy up startup logging of kindWithCache source (#2057)
    • Add function to get reconcileID from context (#2056)
    • feat: add NOT predicate (#2031)
    • Allow to provide a custom lock interface to manager (#2027)
    • Add tls options to manager.Options (#2023)
    • Update Go version to 1.19 (#1986)

    :bug: Bug Fixes

    • Prevent manager from getting started a second time (#2090)
    • Missing error log for in-cluster config (#2051)
    • Skip custom mutation handler when delete a CR (#2049)
    • fix: improve semantics of combining cache selectorsByObject (#2039)
    • Conversion webhook should not panic when conversion request is nil (#1970)

    :seedling: Others

    • Prepare for release 0.14 (#2100)
    • Generate files and update modules (#2096)
    • Bump github.com/onsi/ginkgo/v2 from 2.5.1 to 2.6.0 (#2097)
    • Bump golang.org/x/time (#2089)
    • Update OWNERS: remove inactive members, promote fillzpp sbueringer (#2088, #2092)
    • Default ENVTEST version to a working one (1.24.2) (#2081)
    • Update golangci-lint to v1.50.1 (#2080)
    • Bump go.uber.org/zap from 1.23.0 to 1.24.0 (#2077)
    • Bump golang.org/x/sys from 0.2.0 to 0.3.0 (#2078)
    • Ignore Kubernetes Dependencies in Dependabot (#2071)

    ... (truncated)

    Commits
    • 84c5c9f 🐛 controllers without For() fail to start (#2108)
    • ddcb99d Merge pull request #2100 from vincepri/release-0.14
    • 69f0938 Merge pull request #2094 from alvaroaleman/subresoruce-get
    • 8738e91 Merge pull request #2091 from alvaroaleman/no-for
    • ca4b4de Merge pull request #2096 from lucacome/generate
    • 5673341 Merge pull request #2097 from kubernetes-sigs/dependabot/go_modules/github.co...
    • 7333aed :seedling: Bump github.com/onsi/ginkgo/v2 from 2.5.1 to 2.6.0
    • d4f1e82 Generate files and update modules
    • a387bf4 Merge pull request #2093 from alvaroaleman/recover-panic-globally
    • da7dd5d :warning: Allow configuring RecoverPanic for controllers globally
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • Bump k8s.io/api from 0.25.4 to 0.26.0

    Bump k8s.io/api from 0.25.4 to 0.26.0

    Bumps k8s.io/api from 0.25.4 to 0.26.0.

    Commits
    • 2ee9a6c Update dependencies to v0.26.0 tag
    • 07ac8fe Merge remote-tracking branch 'origin/master' into release-1.26
    • 566ee01 Update golang.org/x/net 1e63c2f
    • b966dc9 sync: update go.mod
    • 053624e Merge pull request #111023 from pohly/dynamic-resource-allocation
    • 3590eda Merge pull request #113375 from atiratree/PodHealthyPolicy-api
    • 5a4f9a5 generated
    • 5cb3202 Merge pull request #113186 from ttakahashi21/KEP-3294
    • 993c43c api: add UnhealthyPodEvictionPolicy for PDBs
    • dfd6ea2 Generate code
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • Bump k8s.io/client-go from 0.25.4 to 0.26.0

    Bump k8s.io/client-go from 0.25.4 to 0.26.0

    Bumps k8s.io/client-go from 0.25.4 to 0.26.0.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • Bump k8s.io/apimachinery from 0.25.4 to 0.26.0

    Bump k8s.io/apimachinery from 0.25.4 to 0.26.0

    Bumps k8s.io/apimachinery from 0.25.4 to 0.26.0.

    Commits
    • 5d4cdd2 Merge remote-tracking branch 'origin/master' into release-1.26
    • 6cbc4a3 Update golang.org/x/net 1e63c2f
    • 6561235 Merge pull request #113699 from liggitt/manjusaka/fix-107415
    • dad8cd8 Update workload selector validation
    • fe82462 Add extra value validation for matchExpression field in LabelSelector
    • 067949d update k8s.io/utils to fix util tracing panic
    • 0ceff90 Merge pull request #112223 from astraw99/fix-ownerRef-validate
    • 9e85d3a Merge pull request #112649 from howardjohn/set/optimize-everything-nothing
    • 88a1448 Rename and comment on why sharing is safe
    • b03a432 Merge pull request #113367 from pohly/dep-ginkgo-gomega
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
Releases(v0.2.1)
  • v0.2.1(Dec 10, 2022)

    What's Changed

    • Update build-push-action by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/87
    • Bump cosign by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/88
    • Update issue templates by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/91
    • Create dependabot.yml by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/90
    • Create codeql-analysis.yml by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/89
    • Logging util functions by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/108
    • fixed bug in logger.Fatal*() and added testcases by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/116
    • Version pinning keeps breaking over time by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/121
    • Restructured the project files by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/129
    • Wait until a pod is ready and if necessary refresh the pod info by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/131
    • new cnfuzz release by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/132

    Full Changelog: https://github.com/suecodelabs/cnfuzz/compare/v0.2.0...v0.2.1

    Source code(tar.gz)
    Source code(zip)
  • v0.2.0(Aug 22, 2022)

    What's Changed

    • Debugging with DevSpace by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/76
    • Upgraded the dependencies by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/78
    • Feature/health check by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/79
    • Upgrade KinD by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/80
    • Update restler image by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/81
    • Major CNFuzz refactor by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/82
    • Update README.md by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/83
    • Create 0.2.0 release by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/86

    Full Changelog: https://github.com/suecodelabs/cnfuzz/compare/v0.1.2...v0.2.0

    Source code(tar.gz)
    Source code(zip)
  • v0.1.2(May 16, 2022)

    What's Changed

    • Version bumps of dependencies by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/74
    • Golang package version bumps by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/75

    Full Changelog: https://github.com/suecodelabs/cnfuzz/compare/v0.1.1...v0.1.2

    Source code(tar.gz)
    Source code(zip)
  • v0.1.1(May 6, 2022)

    CNFuzz now defaults with forgiving values to be deployed on smaller/test environments.

    What's Changed

    • Fix/default values non prod by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/73

    Full Changelog: https://github.com/suecodelabs/cnfuzz/compare/v0.1.0...v0.1.1

    Source code(tar.gz)
    Source code(zip)
  • v0.1.0(May 6, 2022)

    First dot release which makes it easy to install CNFuzz on Kubernetes clusters without the need of having to clone the repository.

    What's Changed

    • Add contact form by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/69
    • Create helm chart repo by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/70
    • Release 0.1.0 by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/71
    • Fix install command by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/72

    Full Changelog: https://github.com/suecodelabs/cnfuzz/compare/v0.0.3-alpha...v0.1.0

    Source code(tar.gz)
    Source code(zip)
  • v0.0.3-alpha(Apr 28, 2022)

    What's Changed

    • Update README by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/67
    • Support opt out for microsoft RESTler telemetry by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/68

    Full Changelog: https://github.com/suecodelabs/cnfuzz/compare/v0.0.2-alpha...v0.0.3-alpha

    Source code(tar.gz)
    Source code(zip)
  • v0.0.2-alpha(Apr 28, 2022)

    This release supports suggestions to deploy CNFuzz on Kubernetes clusters where the resources are scarce.

    What's Changed

    • Support small setups by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/65
    • release v0.0.2-alpha by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/66

    Full Changelog: https://github.com/suecodelabs/cnfuzz/compare/v0.0.1-alpha...v0.0.2-alpha

    Source code(tar.gz)
    Source code(zip)
  • v0.0.1-alpha(Apr 28, 2022)

    The first (alpha) release of CNFuzz which supports:

    • Automation of web API fuzzing in Kubernetes clusters using RESTler
    • Exporting fuzzing results to S3 compatible storage backends
    • Caching already fuzzed image hashes via Redis

    What's Changed

    • Create go.yml by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/1
    • Update readme meet url by @robertscholts in https://github.com/suecodelabs/cnfuzz/pull/2
    • Create docker-publish.yml by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/3
    • Switch to github container image registry by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/4
    • Updated abstract by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/5
    • Re-order abstract by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/6
    • Use todo api container by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/15
    • Fix/dev instructions by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/16
    • Improve local development setup by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/18
    • Add Github Actions badge by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/22
    • Simplified auth code by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/23
    • Add KinD Kubernetes deployment for integration testing by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/24
    • Fix KinD integration by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/25
    • Switch to local todo api build by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/30
    • Store fuzzing results in a persistent storage solution by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/31
    • Godoc comments by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/32
    • Swag init by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/34
    • Add marketing contact info by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/35
    • Add more swag by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/36
    • updating badges to link to build by @robertscholts in https://github.com/suecodelabs/cnfuzz/pull/39
    • Config re-arrange & renames by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/37
    • Ignore *.swp files by @lcmwesterink in https://github.com/suecodelabs/cnfuzz/pull/43
    • Fix make kind race condition by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/42
    • Use redis standalone mode to not start 4 instances of redis for local development by @pimmerks in https://github.com/suecodelabs/cnfuzz/pull/40
    • get namespace config prop from viper by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/45
    • Detail the build instructions. by @Oddly in https://github.com/suecodelabs/cnfuzz/pull/48
    • Cleanup old files by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/38
    • Update README by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/49
    • renamed job-img flag to scheduler-img flag by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/47
    • Faster local development flow by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/50
    • Updating to go 1.18 by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/56
    • Initial take on simple redis support in the chart by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/57
    • Cache images and their status by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/55
    • proper TIMESTAMP for Makefile by @oferchen in https://github.com/suecodelabs/cnfuzz/pull/58
    • Resource limits for fuzzing jobs by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/59
    • Support rancher desktop by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/61
    • Basic S3 storage support by @Luukvdm in https://github.com/suecodelabs/cnfuzz/pull/60
    • Setup Chart to point to the correct container build by @pcktdmp in https://github.com/suecodelabs/cnfuzz/pull/64

    New Contributors

    • @pcktdmp made their first contribution in https://github.com/suecodelabs/cnfuzz/pull/1
    • @robertscholts made their first contribution in https://github.com/suecodelabs/cnfuzz/pull/2
    • @Luukvdm made their first contribution in https://github.com/suecodelabs/cnfuzz/pull/23
    • @lcmwesterink made their first contribution in https://github.com/suecodelabs/cnfuzz/pull/43
    • @pimmerks made their first contribution in https://github.com/suecodelabs/cnfuzz/pull/40
    • @Oddly made their first contribution in https://github.com/suecodelabs/cnfuzz/pull/48
    • @oferchen made their first contribution in https://github.com/suecodelabs/cnfuzz/pull/58

    Full Changelog: https://github.com/suecodelabs/cnfuzz/commits/v0.0.1-alpha

    Source code(tar.gz)
    Source code(zip)
Owner
Sue B.V. - Cloud Native
Offering high-quality tech services, with a focus on Unix, Linux and open-source software, Sue has been a leading knowledge center for more than twenty years.
Sue B.V. - Cloud Native
A cloud native Identity & Access Proxy / API (IAP) and Access Control Decision API

Heimdall Heimdall is inspired by Ory's OAthkeeper, tries however to resolve the functional limitations of that product by also building on a more mode

Dimitrij Drus 19 Jan 6, 2023
A collection of cloud security icons :cloud::lock:

Cloud Security Icons These icons are published under the extremely permissive Creative Commons Zero v1.0 Universal license. Downloads We provide all i

Aqua Security 125 Jan 7, 2023
Lookup or replace AWS account IDs with their names and vice versa

awsacc A trusty helper for working with AWS account IDs. Working with AWS account IDs often involves more manual effort than necessary. Often account

Christian Bargmann 3 Oct 14, 2021
Amplitude unofficial client for Go, inspired in their official SDK for Node

Amplitude Golang SDK Amplitude unofficial client for Go, inspired in their official SDK for Node. For reference, visit HTTP API v2 documentation. Inst

Renato Almeida 6 Dec 31, 2022
Cheat sheet for Go language with Syntax and their Description.

Go Lang Syntax Cheat Sheet for Go Lang Index General Syntax Formate For Contributers 1. Name of Syntax 2. Syntax with Explaination 3. (Extra Explaina

null 0 Jan 14, 2022
Go library to access geocoding and reverse geocoding APIs

GeoService in Go Code Coverage A geocoding service developed in Go's way, idiomatic and elegant, not just in golang. This product is designed to open

Jerry Zhao 451 Dec 23, 2022
A golang client for the Twitch v3 API - public APIs only (for now)

go-twitch Test CLIENT_ID="<my client ID>" go test -v -cover Usage Example File: package main import ( "log" "os" "github.com/knspriggs/go-twi

Kristian Spriggs 22 Sep 27, 2022
Auto-generated Google APIs for Go.

Google APIs Client Library for Go Getting Started $ go get google.golang.org/api/tasks/v1 $ go get google.golang.org/api/moderator/v1 $ go get google.

Google APIs 3.3k Jan 8, 2023
Twilight is an unofficial Golang SDK for Twilio APIs

Twilight is an unofficial Golang SDK for Twilio APIs. Twilight was born as a result of my inability to spell Twilio correctly. I searched for a Twillio Golang client library and couldn’t find any, I decided to build one. Halfway through building this, I realized I had spelled Twilio as Twillio when searching for a client library on Github.

Ghvst Code 18 Jul 2, 2021
Sync your bank transactions with google sheets using Open Banking APIs

Sync your bank transactions with google sheets using Open Banking APIs

Alex Russell-Saw 30 Jul 22, 2022
Sync your bank transactions with google sheets using Open Banking APIs

this is a markdown version of the copy on the site landing page: https://youneedaspreadsheet.com You need a spreadsheet ?? Get on top of your finances

Alex Russell-Saw 30 Jul 22, 2022
The MinIO Admin Go Client SDK provides APIs to manage MinIO services

Golang Admin Client API Reference The MinIO Admin Golang Client SDK provides APIs to manage MinIO services. This quickstart guide will show you how to

High Performance, Kubernetes Native Object Storage 41 Dec 30, 2022
lambda-go-api-proxy makes it easy to port APIs written with Go frameworks such as Gin to AWS Lambda and Amazon API Gateway.

aws-lambda-go-api-proxy makes it easy to run Golang APIs written with frameworks such as Gin with AWS Lambda and Amazon API Gateway.

Amazon Web Services - Labs 755 Jan 6, 2023
"there" also called "GoThere" aims to be a simple Go Library to reduce redundant code for REST APIs.

there "there" also called "GoThere" aims to be a simple Go Library to reduce redundant code for REST APIs. Despite the existence of the other librarie

Christoph Krassnigg 43 Dec 25, 2022
Go API Client for NASA's Open APIs

Go Client for Nasa Open APIs Description The Go Client for Nasa Open APIs is a Go Client for the following Nasa Open APIs: APOD: Astronomy Picture of

Ernesto H 3 Sep 24, 2021
Fluent JavaScript API for SharePoint and Microsoft Graph REST APIs

PnPjs is a fluent JavaScript API for consuming SharePoint and Microsoft Graph REST APIs in a type-safe way. You can use it with SharePoint Framework,

Microsoft 365 Community 632 Dec 23, 2022
Http apis with AWS CDK for Go

Http apis with AWS CDK for Go Blog: https://harshq.medium.com/building-apps-with-aws-sdk-for-golang-api-gateway-and-lambda-b254858b1d71 Useful command

Harshana Abeyaratne 1 Jan 4, 2022
The task given by Appointy completed to develop APIs for a basic version of Instagram.

✨ Instagram APIs ✨ The task given by Appointy completed to develop APIs for a basic version of Instagram. Create an User Get User by Id Create a Post

Aayush Chodvadiya 1 Oct 9, 2021
Apis para la administracion de notifiaciones, utilizando servicios como AWS SNS y AWS SQS

notificacion_api Servicio para envío de notificaciónes por difusión en AWS SNS Especificaciones Técnicas Tecnologías Implementadas y Versiones Golang

Universidad Distrital Francisco José de Caldas 0 Jan 7, 2022