Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-native-carrier-info
Advanced tools
React Native module bridge to obtain information about the user’s home cellular service provider.
React Native module bridge to obtain information about the user’s home cellular service provider.
Makes use of the following native iOS classes: CTTelephonyNetworkInfo & CTCarrier
boolean allowsVOIP(callback) ` - Indicates if the carrier allows VoIP calls to be made on its network.
If you configure a device for a carrier and then remove the SIM card, this property retains the Boolean value indicating the carrier’s policy regarding VoIP.
string carrierName(callback)` - The name of the user’s home cellular service provider.
This string is provided by the carrier and formatted for presentation to the user. The value does not change if the user is roaming; it always represents the provider with whom the user has an account.
If you configure a device for a carrier and then remove the SIM card, this property retains the name of the carrier.
The value for this property is 'nil' if the device was never configured for a carrier.
string isoCountryCode(callback)` - The ISO country code for the user’s cellular service provider.
This property uses the ISO 3166-1 country code representation.
The value for this property is 'nil' if any of the following apply:
string mobileCountryCode(callback)` - The mobile country code (MCC) for the user’s cellular service provider.
MCCs are defined by ITU-T Recommendation E.212, “List of Mobile Country or Geographical Area Codes.”
The value for this property is 'nil' if any of the following apply:
The value may be 'nil' on hardware prior to iPhone 4S when in Airplane mode.
string mobileNetworkCode(callback)` - The mobile network code (MNC) for the user’s cellular service provider.
The value for this property is 'nil' if any of the following apply:
The value may be 'nil' on hardware prior to iPhone 4S when in Airplane mode.
npm install react-native-carrier-info --save
Libraries
➜ Add Files to [your project's name]
node_modules
➜ react-native-carrier-info
and add RNCarrierInfo.xcodeproj
libRNCarrierInfo.a
to your project's Build Phases
➜ Link Binary With Libraries
RNCarrierInfo.xcodeproj
in the project navigator and go the Build Settings
tab. Make sure 'All' is toggled on (instead of 'Basic'). Look for Header Search Paths
and make sure it contains both $(SRCROOT)/../react-native/React
and $(SRCROOT)/../../React
- mark both as recursive
.Cmd+R
)var React = require('react-native');
var CarrierInfo = require('NativeModules').RNCarrierInfo;
// inside your code where you would like to retrieve carrier info
CarrierInfo.allowsVOIP(
(result) => AlertIOS.alert('Allows VoIP', JSON.stringify(result))
);
CarrierInfo.carrierName(
(result) => AlertIOS.alert('Carrier Name', result)
);
CarrierInfo.isoCountryCode(
(result) => AlertIOS.alert('ISO', result)
);
CarrierInfo.mobileCountryCode(
(result) => AlertIOS.alert('MCC', result)
);
CarrierInfo.mobileNetworkCode(
(result) => AlertIOS.alert('MNC', result)
);
There is an example project supplied with the repo in the RNCarrierInfoDemo folder. The sample app needs to be run on a device as the simulator does not report cellular provider info.
FAQs
React Native module bridge to obtain information about the user’s home cellular service provider.
The npm package react-native-carrier-info receives a total of 2,078 weekly downloads. As such, react-native-carrier-info popularity was classified as popular.
We found that react-native-carrier-info demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.