
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@actbase/react-native-naver-login
Advanced tools
 [](https://www.npmjs.com/package/react-native-c
$ npm install react-native-ccs-naver-login --save
$ react-native link react-native-ccs-naver-login
Libraries ➜ Add Files to [your project's name]node_modules ➜ react-native-ccs-naver-login and add RNCNaverLogin.xcodeprojlibRNCNaverLogin.a to your project's Build Phases ➜ Link Binary With LibrariesCmd+R)<android/app/src/main/java/[...]/MainActivity.javaimport cc.creamcookie.rn.naver.login.RNCNaverLoginPackage; to the imports at the top of the filenew RNCNaverLoginPackage() to the list returned by the getPackages() methodandroid/settings.gradle:
include ':react-native-ccs-naver-login'
project(':react-native-ccs-naver-login').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-ccs-naver-login/android')
android/app/build.gradle:
compile project(':react-native-ccs-naver-login')
Libraries ➜ Add Files to [your project's name]***** When not working Add these pods in your Podfile and then install.
pod 'React', :path => '../node_modules/react-native', :subspecs => [ 'Core', 'CxxBridge', 'DevSupport', 'RCTText', 'RCTNetwork', 'RCTWebSocket', 'RCTAnimation', 'RCTImage', 'RCTLinkingIOS', ]
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
pod 'react-native-ccs-naver-login', :path => '../node_modules/react-native-ccs-naver-login'
<key>NAVER_CLIENT_ID</key>
<string>YOUR_ID</string>
<key>NAVER_CLIENT_SECRET</key>
<string>YOUR_SECRET</string>
<key>NAVER_USE_SCHEMES</key>
<string>YOUR_SCHEME</string>
<application
...
<meta-data android:name="com.naver.sdk.ClientId" android:value="YOUR_KEY"/>
<meta-data android:name="com.naver.sdk.ClientSecret" android:value="YOUR_KEY" />
</application>
사용방법은 https://github.com/creamcookie/react-native-naver-login 안에 example프로젝트를 참고하시면됩니다.
import NaverLogin from 'react-native-ccs-naver-login';
// TODO: 로그인처리 (이미 로그인되어있어도 창 강제로 띠웁니다)
NaverLogin.login()
.then(res => {
alert("Signed Successful\n" + res.accessToken);
}).catch(e => {
alert("Signed Failure");
});
// TODO: 로그아웃처리
NaverLogin.logout();
// TODO: 토큰가져오기 (로그인안되어있음 안가져옴)
NaverLogin.getAccessToken()
.then(res => {
alert("Signed Successful\n" + res.accessToken);
}).catch(e => {
alert("Signed Failure");
});
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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.