Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
github.com/Finnhub-Stock-API/finnhub-go
Install package:
$ go get -u github.com/Finnhub-Stock-API/finnhub-go
Example (check out other methods documentation here):
package main
import (
"context"
"fmt"
finnhub "github.com/Finnhub-Stock-API/finnhub-go"
"github.com/antihax/optional"
)
func main() {
finnhubClient := finnhub.NewAPIClient(finnhub.NewConfiguration()).DefaultApi
auth := context.WithValue(context.Background(), finnhub.ContextAPIKey, finnhub.APIKey{
Key: "<API_KEY>", // Replace this
})
//Stock candles
stockCandles, _, err := finnhubClient.StockCandles(auth, "AAPL", "D", 1590988249, 1591852249, nil)
fmt.Printf("%+v\n", stockCandles)
// Example with required parameters
news, _, err := finnhubClient.CompanyNews(auth, "AAPL", "2020-05-01", "2020-05-01")
if err != nil {
panic(err)
}
fmt.Printf("%+v\n", news)
// Example with required and optional parameters
investorsOwnershipOpts := &finnhub.InvestorsOwnershipOpts{Limit: optional.NewInt64(10)}
ownerships, _, err := finnhubClient.InvestorsOwnership(auth, "AAPL", investorsOwnershipOpts)
fmt.Printf("%+v\n", ownerships)
//Aggregate Indicator
aggregateIndicator, _, err := finnhubClient.AggregateIndicator(auth, "AAPL", "D")
fmt.Printf("%+v\n", aggregateIndicator)
// Basic financials
basicFinancials, _, err := finnhubClient.CompanyBasicFinancials(auth, "MSFT", "margin")
fmt.Printf("%+v\n", basicFinancials)
// Company earnings
earningsSurprises, _, err := finnhubClient.CompanyEarnings(auth, "AAPL", nil)
fmt.Printf("%+v\n", earningsSurprises)
// Company EPS estimates
epsEstimate, _, err := finnhubClient.CompanyEpsEstimates(auth, "AAPL", nil)
fmt.Printf("%+v\n", epsEstimate)
// Company executive
executive, _, err := finnhubClient.CompanyExecutive(auth, "AAPL")
fmt.Printf("%+v\n", executive)
// Company peers
peers, _, err := finnhubClient.CompanyPeers(auth, "AAPL")
fmt.Printf("%+v\n", peers)
// Company profile
profile, _, err := finnhubClient.CompanyProfile(auth, &finnhub.CompanyProfileOpts{Symbol: optional.NewString("AAPL")})
fmt.Printf("%+v\n", profile)
profileISIN, _, err := finnhubClient.CompanyProfile(auth, &finnhub.CompanyProfileOpts{Isin: optional.NewString("US0378331005")})
fmt.Printf("%+v\n", profileISIN)
profileCusip, _, err := finnhubClient.CompanyProfile(auth, &finnhub.CompanyProfileOpts{Cusip: optional.NewString("037833100")})
fmt.Printf("%+v\n", profileCusip)
//Company profile2
profile2, _, err := finnhubClient.CompanyProfile2(auth, &finnhub.CompanyProfile2Opts{Symbol: optional.NewString("AAPL")})
fmt.Printf("%+v\n", profile2)
// Revenue Estimates
revenueEstimates, _, err := finnhubClient.CompanyRevenueEstimates(auth, "AAPL", nil)
fmt.Printf("%+v\n", revenueEstimates)
// List country
countries, _, err := finnhubClient.Country(auth)
fmt.Printf("%+v\n", countries)
// Covid-19
covid19, _, err := finnhubClient.Covid19(auth)
fmt.Printf("%+v\n", covid19)
// Crypto candles
cryptoCandles, _, err := finnhubClient.CryptoCandles(auth, "BINANCE:BTCUSDT", "D", 1590988249, 1591852249)
fmt.Printf("%+v\n", cryptoCandles)
// Crypto exchanges
cryptoExchange, _, err := finnhubClient.CryptoExchanges(auth)
fmt.Printf("%+v\n", cryptoExchange)
//Crypto symbols
cryptoSymbol, _, err := finnhubClient.CryptoSymbols(auth, "BINANCE")
fmt.Printf("%+v\n", cryptoSymbol[0:5])
// Earnings calendar
earningsCalendar, _, err := finnhubClient.EarningsCalendar(auth, &finnhub.EarningsCalendarOpts{
From: optional.NewString("2020-06-12"), To: optional.NewString("2020-06-20")})
fmt.Printf("%+v\n", earningsCalendar)
// Economic code
economicCode, _, err := finnhubClient.EconomicCode(auth)
fmt.Printf("%+v\n", economicCode)
// Economic data
economicData, _, err := finnhubClient.EconomicData(auth, "MA-USA-656880")
fmt.Printf("%+v\n", economicData)
// Filings
filings, _, err := finnhubClient.Filings(auth, &finnhub.FilingsOpts{Symbol: optional.NewString("AAPL")})
fmt.Printf("%+v\n", filings)
//Financials
financials, _, err := finnhubClient.Financials(auth, "AAPL", "bs", "annual")
fmt.Printf("%+v\n", financials)
// Financials Reported
financialsReported, _, err := finnhubClient.FinancialsReported(auth, &finnhub.FinancialsReportedOpts{Symbol: optional.NewString("AAPL")})
fmt.Printf("%+v\n", financialsReported)
// Forex candles
forexCandles, _, err := finnhubClient.ForexCandles(auth, "OANDA:EUR_USD", "D", 1590988249, 1591852249)
fmt.Printf("%+v\n", forexCandles)
// Forex exchanges
forexExchanges, _, err := finnhubClient.ForexExchanges(auth)
fmt.Printf("%+v\n", forexExchanges)
// Forex rates
forexRates, _, err := finnhubClient.ForexRates(auth, nil)
fmt.Printf("%+v\n", forexRates)
// Forex symbols
forexSymbols, _, err := finnhubClient.ForexSymbols(auth, "OANDA")
fmt.Printf("%+v\n", forexSymbols)
//Fund ownership
fundOwnership, _, err := finnhubClient.FundOwnership(auth, "AAPL", nil)
fmt.Printf("%+v\n", fundOwnership)
// General news
generalNews, _, err := finnhubClient.GeneralNews(auth, "general", nil)
fmt.Printf("%+v\n", generalNews)
// Ipo calendar
ipoCalendar, _, err := finnhubClient.IpoCalendar(auth, "2020-01-01", "2020-06-15")
fmt.Printf("%+v\n", ipoCalendar)
//Major development
majorDevelopment, _, err := finnhubClient.MajorDevelopments(auth, "AAPL", nil)
fmt.Printf("%+v\n", majorDevelopment)
// News sentiment
newsSentiment, _, err := finnhubClient.NewsSentiment(auth, "AAPL")
fmt.Printf("%+v\n", newsSentiment)
// Pattern recognition
patterns, _, err := finnhubClient.PatternRecognition(auth, "AAPL", "D")
fmt.Printf("%+v\n", patterns)
// Price target
priceTarget, _, err := finnhubClient.PriceTarget(auth, "AAPL")
fmt.Printf("%+v\n", priceTarget)
//Quote
quote, _, err := finnhubClient.Quote(auth, "AAPL")
fmt.Printf("%+v\n", quote)
// Recommendation trends
recommendationTrend, _, err := finnhubClient.RecommendationTrends(auth, "AAPL")
fmt.Printf("%+v\n", recommendationTrend)
// Stock dividens
dividends, _, err := finnhubClient.StockDividends(auth, "KO", "2019-01-01", "2020-06-30")
fmt.Printf("%+v\n", dividends)
// Splits
splits, _, err := finnhubClient.StockSplits(auth, "AAPL", "2000-01-01", "2020-06-15")
fmt.Printf("%+v\n", splits)
// Stock symbols
stockSymbols, _, err := finnhubClient.StockSymbols(auth, "US")
fmt.Printf("%+v\n", stockSymbols[0:5])
// Support resistance
supportResitance, _, err := finnhubClient.SupportResistance(auth, "AAPL", "D")
fmt.Printf("%+v\n", supportResitance)
// Technical indicator
technicalIndicator, _, err := finnhubClient.TechnicalIndicator(auth, "AAPL", "D", 1583098857, 1584308457, "sma", &finnhub.TechnicalIndicatorOpts{
IndicatorFields: map[string]interface{}{
"timeperiod": 3,
},
})
fmt.Printf("%+v\n", technicalIndicator)
// Transcripts
transcripts, _, err := finnhubClient.Transcripts(auth, "AAPL_162777")
fmt.Printf("%+v\n", transcripts)
// Transcripts list
transcriptsList, _, err := finnhubClient.TranscriptsList(auth, "AAPL")
fmt.Printf("%+v\n", transcriptsList)
// Upgrade/downgrade
upgradeDowngrade, _, err := finnhubClient.UpgradeDowngrade(auth, &finnhub.UpgradeDowngradeOpts{Symbol: optional.NewString("BYND")})
fmt.Printf("%+v\n", upgradeDowngrade)
// Tick Data
tickData, _, err := client.StockTick(auth, "AAPL", "2020-03-25", 500, 0)
fmt.Printf("%+v\n", tickData)
// Indices Constituents
indicesConstData, _, err := client.IndicesConstituents(auth, "^GSPC")
fmt.Printf("%+v\n", indicesConstData)
// Indices Historical Constituents
indicesHistoricalConstData, _, err := client.IndicesHistoricalConstituents(auth, "^GSPC")
fmt.Printf("%+v\n", indicesHistoricalConstData)
// ETFs Profile
etfsProfileData, _, err := client.EtfsProfile(auth, "^GSPC")
fmt.Printf("%+v\n", etfsProfileData)
// ETFs Holdings
etfsHoldingsData, _, err := client.EtfsHoldings(auth, "^GSPC")
fmt.Printf("%+v\n", etfsHoldingsData)
// ETFs Industry Exposure
etfsIndustryExposureData, _, err := client.EtfsIndustryExposure(auth, "^GSPC")
fmt.Printf("%+v\n", etfsIndustryExposureData)
// ETFs Country Exposure
etfsCountryExposureData, _, err := client.EtfsCountryExposure(auth, "^GSPC")
fmt.Printf("%+v\n", etfsCountryExposureData)
}
Apache License
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.