{"id":17543418,"url":"https://github.com/jacobweinstock/gophish","last_synced_at":"2026-07-08T09:31:12.633Z","repository":{"id":57557942,"uuid":"321511453","full_name":"jacobweinstock/gophish","owner":"jacobweinstock","description":"Redfish client library written in Go","archived":false,"fork":false,"pushed_at":"2020-12-15T02:54:08.000Z","size":274,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T05:29:00.319Z","etag":null,"topics":["go","redfish"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jacobweinstock.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-12-15T00:45:20.000Z","updated_at":"2022-01-26T03:10:53.000Z","dependencies_parsed_at":"2022-08-28T11:41:57.030Z","dependency_job_id":null,"html_url":"https://github.com/jacobweinstock/gophish","commit_stats":null,"previous_names":["jacobweinstock/redfish"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jacobweinstock/gophish","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobweinstock%2Fgophish","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobweinstock%2Fgophish/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobweinstock%2Fgophish/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobweinstock%2Fgophish/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jacobweinstock","download_url":"https://codeload.github.com/jacobweinstock/gophish/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobweinstock%2Fgophish/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35260671,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-08T02:00:06.796Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","redfish"],"created_at":"2024-10-21T00:24:06.329Z","updated_at":"2026-07-08T09:31:12.610Z","avatar_url":"https://github.com/jacobweinstock.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Redfish and Swordfish client library\n\nfork of https://github.com/stmcginnis/gofish\n\n[![Go Doc](https://godoc.org/github.com/jacobweinstock/gophish?status.svg)](http://godoc.org/github.com/jacobweinstock/gophish)\n[![Go Report Card](https://goreportcard.com/badge/github.com/jacobweinstock/gophish?branch=master)](https://goreportcard.com/report/github.com/jacobweinstock/gophish)\n[![Releases](https://img.shields.io/github/release/jacobweinstock/redfish/all.svg?style=flat-square)](https://github.com/jacobweinstock/gophish/releases)\n[![LICENSE](https://img.shields.io/github/license/jacobweinstock/redfish.svg?style=flat-square)](./LICENSE)\n\n## Introduction\n\ngophish is a Golang library for interacting with [DMTF Redfish](https://www.dmtf.org/standards/redfish) and [SNIA Swordfish](https://www.snia.org/forums/smi/swordfish) enabled devices.\nFor the moment, the goal of this repo is to stay up to date with https://github.com/stmcginnis/gofish.\n\n## Usage\n\nBasic usage:\n\n```go\n\npackage main\n\nimport (\n    \"fmt\"\n\n    \"github.com/jacobweinstock/gophish\"\n)\n\nfunc main() {\n    config := gophish.ClientConfig{\n        Endpoint: \"https://localhost:5000\",\n        Username: \"admin\",\n        Password: \"admin\",\n        Insecure: true,\n    }\n    ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)\n    defer cancel()\n    c, err := gophish.Connect(ctx, config)\n    if err != nil {\n        panic(err)\n    }\n    defer c.Logout(ctx)\n\n    // Query the chassis data using the session token\n    chassis, err := c.Service.Systems(ctx)\n    if err != nil {\n        panic(err)\n    }\n\n    for _, chass := range chassis {\n        fmt.Println(\"Chassis:\", chass.PowerState)\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobweinstock%2Fgophish","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacobweinstock%2Fgophish","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobweinstock%2Fgophish/lists"}