
Research
6 Malicious Packagist Themes Ship Trojanized jQuery and FUNNULL Redirect Payloads
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.
@candlefinance/app-icon
Advanced tools
Update your apps icon on iOS using Apples alternate icons API.
yarn add @candlefinance/app-icon
To add icons to your iOS app you need to:
Add the icons to your Xcode project, simply create a new folder and add your icons in at 2x (120 x 120) and 3x (180 x 180) sizes. See the example app for reference.
Update your Info.plist to include the names of your icons. See the example for reference or add the following to your Info.plist:
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>Icon-1</string> <!-- Default icon -->
</array>
<key>UIPrerenderedIcon</key>
<false/>
</dict>
<key>CFBundleAlternateIcons</key>
<dict>
<key>AppIcon-2</key> <!-- Alternate icon name that you can set when calling the API below -->
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>Icon-2</string> <!-- Alternate icon name must match the icon file name from first step -->
</array>
<key>UIPrerenderedIcon</key>
<false/>
</dict>
</dict>
</dict>
For more info check out the this tutorial by Paul Hudson.
Check out the (example)[./example/src/index.tsx] app for a full working example.
import { getIconName, setIconName } from '@candlefinance/app-icon';
const [icon, setIcon] = React.useState('default');
// Get icon name
getIconName()
.then((name) => {
setIcon(name);
})
.catch(console.error);
// Set icon name or no argument to reset to default
setIconName('AppIcon-2')
.then((name) => {
setIcon(name);
})
.catch(console.error);
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
test
The npm package @candlefinance/app-icon receives a total of 21 weekly downloads. As such, @candlefinance/app-icon popularity was classified as not popular.
We found that @candlefinance/app-icon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.

Security News
The GCVE initiative operated by CIRCL has officially opened its publishing ecosystem, letting organizations issue and share vulnerability identifiers without routing through a central authority.

Security News
The project is retiring its odd/even release model in favor of a simpler annual cadence where every major version becomes LTS.