
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
@lob/vue-address-autocomplete
Advanced tools
[](https://badge.fury.io/js/@lob%2Fvue-address-autocomplete)
This is a very lightweight component that uses the Lob Autocomplete API in order to simplify the process of adding in a search autocomplete bar. Check out the Autocomplete API for more configuration options on Postman or Lob Documentation.
As always if this front end component doesn't suit your bootstrapped needs, feel free to check out the aformentioned links above to have more control over the look and feel of your address autocomplete and verification needs :)
npm install --save @lob/vue-address-autocomplete
Make sure to include our component styles in your js entry point or at the component level:
# inside main.js or component file
import '@lob/vue-address-autocomplete/dist/styles.css';
<template>
<div>
<AddressAutocomplete apiKey="YOUR_API_KEY_HERE" :addresses="addresses" @selectItem="selectItem" @newSuggestions="addNewSuggestions" />
<div class="column column-40">
<pre><code>{{selection}}</code></pre>
</div>
</div>
</template>
<script>
import AddressAutocomplete from '@lob/vue-address-autocomplete'
export default {
components: {
AddressAutocomplete
},
data() {
return {
addresses: [],
selection: ''
}
},
methods: {
selectItem(item) {
this.selection = item;
},
addNewSuggestions(suggestedAddresses) {
this.addresses = suggestedAddresses;
}
}
};
</script>
Run
npm run build
npm publish
FAQs
[](https://badge.fury.io/js/@lob%2Fvue-address-autocomplete)
The npm package @lob/vue-address-autocomplete receives a total of 227 weekly downloads. As such, @lob/vue-address-autocomplete popularity was classified as not popular.
We found that @lob/vue-address-autocomplete demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.