
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
com.github.gabrielruiu:spring-social-yahoo
Advanced tools
Spring Social Yahoo is an extension based on Spring Social that provides functionality to communicate with the Yahoo Social Rest API
Spring Social Yahoo is an extension based on Spring Social that provides functionality to communicate with the Yahoo Social Rest API. You can find the full documentation at Yahoo's developer website. Before proceeding with using this library, please consult the Notes section. The best way to learn how use the library is to consult the Spring Social documentation and apply those principles for the classes specific to Yahoo.
Do not hesitate to point out any issues and I am very open to suggestions, both in terms of implementation and documentation
ContactsFilter filter = new ContactsFilter()
.withAndFilter(FieldType.EMAIL, SearchFilter.SearchFilterKey.PRESENT, "1")
.sortBy(FieldType.EMAIL)
.sortOrder(SortOrder.Order.DESC);
Contacts contacts = yahoo.contactsOperations().getContacts(filter);
These enums can take up some space on a single line, so to reduce the clutter, use static imports for each enum:
import static org.springframework.social.yahoo.filter.SearchFilter.SearchFilterConstraint.PRESENT;
import static org.springframework.social.yahoo.filter.SortOrder.Order.DESC;
import static org.springframework.social.yahoo.module.FieldType.EMAIL;
///other code
ContactsFilter filter = new ContactsFilter()
.withAndFilter(EMAIL, PRESENT, "1")
.sortBy(EMAIL)
.sortOrder(DESC);
Contacts contacts = yahoo.contactsOperations().getContacts(filter);
Resource | Methods | Notes |
---|---|---|
Contacts | GET | |
Contacts by category name | GET | |
Contacts filtering | GET | |
Contact | GET | |
Categories | GET | |
Categories by contact cid | GET | API returns a 404 response |
FAQs
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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.