
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
github.com/hotafrika/ebay-finding-api
Golang library implementation of eBay Finding API
You can check all the Finding API search options and limitations here
package main
import (
"fmt"
"github.com/hotafrika/ebay-finding-api"
)
func main() {
// Create Finding API service
s := finding.NewService("your-sec-app-name").WithPageLimit(50)
// Create findItemsAdvanced call request
r := s.NewAdvancedRequest()
// Set few search parameters
r.WithDescriptionSearch(true)
r.WithKeywords("harry potter")
r.WithItemFilterCondition(finding.ConditionGood, finding.ConditionNew)
r.WithItemFilterMaxPriceWithCurrency(100, finding.CurrencyIDUSD)
r.WithSortOrder(finding.SortOrderCurrentPriceHighest)
r.WithPageLimit(1)
r.WithOutputSelectors(finding.OutputSelectorAspectHistogram,
finding.OutputSelectorSellerInfo,
finding.OutputSelectorStoreInfo,
finding.OutputSelectorUnitPriceInfo,
finding.OutputSelectorGalleryInfo,
finding.OutputSelectorPictureURLSuperSize,
finding.OutputSelectorConditionHistogram,
finding.OutputSelectorCategoryHistogram,
finding.OutputSelectorPictureURLLarge)
// Get first page
res, err := r.Execute()
if err != nil {
panic(err)
}
fmt.Printf("%+v", res)
// Get second page
res2, err := r.GetPage(2)
if err != nil {
panic(err)
}
fmt.Printf("%+v", res2)
}
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
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.