
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.
react-avatar-generator
Advanced tools
React component which allows your users to generate random kaleidoscope avatars.
This was inspired by an old website called LayerVault. You can see an example of how that used to look like here.
yarn add react-avatar-generator
or npm i react-avatar-generator
import AvatarGenerator from 'react-avatar-generator';
<AvatarGenerator
colors={['#333', '#222', '#ccc']}
backgroundColor="#000"
/>
This creates something like this:
With a little playing around with this component I found it quite easy to make something similar to what LayerVault originally had.
prop | type | default | options |
---|---|---|---|
width | number | 200 | |
height | number | 200 | |
mirrors | number | 3 | |
zoom | number | 0.2 | |
rotation | number | 0.3 | |
fade | number | 1 | |
opaicty | number | 0.3 | |
amount | number | 16 | |
spacing | number | 20 | |
wavelength | number | 2 | |
sizing | number | 4 | |
shape | string | 'circle' | can be circle , triangle or square |
backgroundColor | string | '#fff' | |
backgroundOpacity | number | 0.3 | |
colors | array | [] |
prop | type | description |
---|---|---|
randomize | function | Randomizes the kaleidoscope to have a new random pattern |
isValidHex | function | Passing in a string will return true of false if that string is a valid hex, a helpful function to have when working with colors |
getImageData | function | Calling this function returns the raw image/png data you can then use to save into a .png file. |
class CustomAvatarGenerator extends React.Component {
constructor(props) {
super(props);
this.avatarGenerator = null;
}
randomize() {
this.avatarGenerator.randomize();
}
render() {
return (
<div>
<button onClick={this.randomize}>Randomize</buttom>
<AvatarGenerator
ref={(el) => {
this.avatarGenerator = el;
}
colors={['#333', '#222', '#ccc']}
backgroundColor="#000"
/>
</div>
);
}
}
FAQs
React component which allows your users to generate random kaleidoscope avatars.
We found that react-avatar-generator 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.