Popularity
1.3
Growing
Activity
0.0
Stable
9
2
3
Programming language: Go
License: BSD 3-clause "New" or "Revised" License
Tags:
Third-party APIs
Latest version: v1.0.0
gomalshare alternatives and similar packages
Based on the "Third-party APIs" category.
Alternatively, view gomalshare alternatives based on common mentions on social networks and blogs.
-
goamz
Popular fork of goamz which adds some missing API calls to certain packages. -
webhooks
:fishing_pole_and_fish: Webhook receiver for GitHub, Bitbucket, GitLab, Gogs -
githubql
Package githubv4 is a client library for accessing GitHub GraphQL API v4 (https://docs.github.com/en/graphql). -
geo-golang
Go library to access geocoding and reverse geocoding APIs -
twitter-scraper
Scrape the Twitter Frontend API without authentication with Golang. -
lark
Feishu/Lark Open API Go SDK, Support ALL Open API and Event Callback. -
hipchat (xmpp)
A golang package to communicate with HipChat over XMPP -
gostorm
GoStorm is a Go library that implements the communications protocol required to write Storm spouts and Bolts in Go that communicate with the Storm shells. -
clarifai
DEPRECATED: please use https://github.com/Clarifai/clarifai-go-grpc -
go-trending
Go library for accessing trending repositories and developers at Github. -
hipchat
This project implements a Go client library for the Hipchat API. -
go-tgbot
Golang telegram bot API wrapper, session-based router and middleware -
cachet
Go(lang) client library for Cachet (open source status page system). -
simples3
Simple no frills AWS S3 Golang Library using REST with V4 Signing (without AWS Go SDK) -
go-lark
An easy-to-use SDK for Feishu and Lark Open Platform (Messaging API only) -
GoMusicBrainz
a Go (Golang) MusicBrainz WS2 client library - work in progress -
megos
Go(lang) client library for accessing information of an Apache Mesos cluster.
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
Do you think we are missing an alternative of gomalshare or a related project?
README
MalShare client library
MalShare is a free Malware repository providing researchers access to samples, malicous feeds, and Yara results. Link to Malshare:
Usage example
go get -u github.com/MonaxGT/gomalshare
go test -api APIKEY -url URL
Simple example using library in cmd/gomalshare/main.go
package main
import (
"flag"
"fmt"
"github.com/MonaxGT/gomalshare"
)
func main() {
apiKeyPtr := flag.String("api", "", "API key MalShare")
urlPtr := flag.String("url", "", "URL MalShare")
flag.Parse()
var err error
var conf *gomalshare.Client
// init function
conf, err = gomalshare.New(*apiKeyPtr, *urlPtr) // Initiate new connection to API
if err != nil {
panic(err)
}
// example with return list of hashes last 24 hours
var list24 *[]gomalshare.HashList
list24, _ = conf.GetListOfHash24()
fmt.Println(list24)
// example with return list of types of downloading files last 24 hours
typeCount, _ := conf.GetListOfTypesFile24()
fmt.Println(typeCount)
// example with return current api key limit
var limitKey *gomalshare.LimitKey
limitKey, _ = conf.GetLimitKey()
fmt.Println(limitKey)
// example with return information of files by using sample
var search *[]gomalshare.SearchDetails
search, err = conf.GetSearchResult("emotet")
if err != nil {
fmt.Println(err)
}
for _, v := range *search {
fmt.Println(v.Md5)
}
// example upload file
filename := "test.test"
err = conf.UploadFile(filename)
if err != nil {
fmt.Println(err)
}
// example for download file by hash request
file, err := conf.DownloadFileFromHash("95bc3d64f49b03749427fcd6601fa8a7")
if err != nil {
fmt.Println(err)
}
fmt.Println(string(file))
}