नेटिव कोड का इस्तेमाल
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
OWASP कैटगरी: MASVS-CODE: कोड क्वालिटी
खास जानकारी
Android ऐप्लिकेशन, कुछ खास सुविधाओं के लिए C और C++ जैसी भाषाओं में लिखे गए नेटिव कोड का फ़ायदा ले सकते हैं. हालांकि, जब कोई ऐप्लिकेशन इस नेटिव कोड के साथ इंटरैक्ट करने के लिए, Java नेटिव इंटरफ़ेस (JNI) का इस्तेमाल करता है, तो वह बफ़र ओवरफ़्लो जैसी कमजोरियों और नेटिव कोड लागू करने से जुड़ी अन्य समस्याओं के संपर्क में आ सकता है.
असर
परफ़ॉर्मेंस को ऑप्टिमाइज़ करने और कोड को छिपाने जैसे बहुत अच्छे असर के बावजूद, Android ऐप्लिकेशन में नेटिव कोड का इस्तेमाल करने से सुरक्षा पर बुरा असर पड़ सकता है. C/C++ जैसी नेटिव कोड लैंग्वेज में, Java/Kotlin की मेमोरी सुरक्षा सुविधाएं मौजूद नहीं हैं. इस वजह से, बफ़र ओवरफ़्लो, इस्तेमाल के बाद होने वाली गड़बड़ियों, और मेमोरी में गड़बड़ी से जुड़ी अन्य समस्याओं का सामना करना पड़ सकता है. इन समस्याओं की वजह से, ये क्रैश या आर्बिट्रेरी कोड एक्ज़ीक्यूट करते हैं. इसके अलावा, अगर नेटिव कोड कॉम्पोनेंट में जोखिम की आशंका मौजूद है, तो इससे पूरे ऐप्लिकेशन के साथ छेड़छाड़ हो सकती है. भले ही, बाकी का हिस्सा Java में सुरक्षित तरीके से क्यों न लिखा गया हो.
जोखिम कम करने के तरीके
डेवलपमेंट और कोडिंग के बारे में दिशा-निर्देश
- सुरक्षित कोडिंग के दिशा-निर्देश: C/C++ प्रोजेक्ट के लिए, लागू किए गए सुरक्षित कोडिंग मानकों का पालन करें (उदाहरण के लिए, CERT, OWASP) का इस्तेमाल करें. इससे बफ़र ओवरफ़्लो, पूर्णांक ओवरफ़्लो, और फ़ॉर्मैट स्ट्रिंग अटैक जैसी जोखिम की आशंकाओं को कम करने में मदद मिलती है. Abseil जैसी लाइब्रेरी को प्राथमिकता दें, जो क्वालिटी और सुरक्षा के लिए जानी जाती हैं. जब भी मुमकिन हो, Rust जैसी मेमोरी-सेफ़ भाषाओं का इस्तेमाल करें. ये भाषाएं C/C++ जैसी परफ़ॉर्मेंस देती हैं.
- इनपुट की पुष्टि करना: बाहरी सोर्स से मिले सभी इनपुट डेटा की पुष्टि करना. इसमें उपयोगकर्ता का इनपुट, नेटवर्क डेटा, और फ़ाइलें शामिल हैं. इससे इंजेक्शन अटैक और अन्य जोखिमों से बचा जा सकता है.
कंपाइल करने के विकल्पों को बेहतर बनाना
ईएलएफ़ फ़ॉर्मैट का इस्तेमाल करने वाली नेटिव लाइब्रेरी को जोखिम की कई आशंकाओं से मज़बूत बनाया जा सकता है.
इसके लिए, स्टैक प्रोटेक्शन (कैनरी), रीलोकेशन रीड-ओनली (आरईएलआरओ), डेटा एक्ज़ीक्यूशन प्रिवेंशन (एनएक्स), और
पोज़ीशन-इंडिपेंडेंट एक्ज़ीक्यूटेबल (पीआईई) जैसे सुरक्षा के तरीके चालू किए जा सकते हैं. आसानी से, Android एनडीके (NDK) के कंपाइलेशन विकल्प में ये सभी सुरक्षा सुविधाएं डिफ़ॉल्ट रूप से चालू होती हैं.
किसी बाइनरी में सुरक्षा के इन तरीकों के लागू होने की पुष्टि करने के लिए, hardening-check
या pwntools
जैसे टूल का इस्तेमाल किया जा सकता है.
बैश
$ pwn checksec --file path/to/libnativecode.so
Arch: aarch64-64-little
RELRO: Full RELRO
Stack: Canary found
NX: NX enabled
PIE: PIE enabled
पुष्टि करना कि तीसरे पक्ष की लाइब्रेरी में कोई जोखिम न हो
तीसरे पक्ष की लाइब्रेरी चुनते समय, उन लाइब्रेरी का इस्तेमाल करें जिनकी डेवलपर कम्यूनिटी में अच्छी ख्याति हो. Google Play SDK इंडेक्स जैसे संसाधन, जानी-मानी और भरोसेमंद लाइब्रेरी की पहचान करने में आपकी मदद कर सकते हैं. पक्का करें कि आपने लाइब्रेरी को नए वर्शन में अपडेट किया हो. साथ ही, Exploit-DB के डेटाबेस जैसे संसाधनों का इस्तेमाल करके, उनसे जुड़ी किसी भी कमज़ोरी को पहले से खोजें. [library_name] vulnerability
या [library_name] CVE
जैसे कीवर्ड का इस्तेमाल करके वेब पर खोज करने पर, सुरक्षा से जुड़ी अहम जानकारी दिख सकती है.
संसाधन
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[],[],null,["# Use of native code\n\n\u003cbr /\u003e\n\n**OWASP category:** [MASVS-CODE: Code Quality](https://mas.owasp.org/MASVS/10-MASVS-CODE)\n\nOverview\n--------\n\nAndroid applications can take advantage of native code written in languages like\nC and C++ for specific functionalities. However, when an application utilizes\nthe Java Native Interface (JNI) to interact with this native code, it\npotentially exposes itself to vulnerabilities like buffer overflows and other\nissues that may be present in the native code implementation.\n\nImpact\n------\n\nDespite very positive impacts such as performance optimization and obfuscation,\nutilizing native code in Android applications can have negative security\nimpacts. Native code languages like C/C++ lack the memory safety features of\nJava/Kotlin, making them susceptible to vulnerabilities like buffer overflows,\nuse-after-free errors, and other memory corruption issues -- leading to crashes\nor arbitrary code execution. Additionally, if a vulnerability exists in the\nnative code component, it can potentially compromise the entire application,\neven if the rest is written securely in Java.\n\nMitigations\n-----------\n\n### Development and coding guidance\n\n- **Secure Coding Guidelines**: For C/C++ projects, adhere to established secure coding standards (e.g., CERT, OWASP) to mitigate vulnerabilities like buffer overflows, integer overflows, and format string attacks. Prioritize libraries like Abseil known for quality and security. Whenever possible, consider adopting memory-safe languages like Rust, which offer performance comparable to C/C++.\n- **Input Validation**: Rigorously validate all input data received from external sources, including user input, network data, and files, to prevent injection attacks and other vulnerabilities.\n\n### Harden the compilation options\n\nNative libraries utilizing the ELF format can be hardened against a range of\nvulnerabilities by activating protective mechanisms like stack protection\n(Canary), relocation read-only (RELRO), data execution prevention (NX), and\nposition-independent executables (PIE). Conveniently, the Android NDK\ncompilation options already enable all these protections by default.\n\nTo verify the implementation of these security mechanisms within a binary, you\ncan employ tools like `hardening-check` or `pwntools`. \n\n### Bash\n\n $ pwn checksec --file path/to/libnativecode.so\n Arch: aarch64-64-little\n RELRO: Full RELRO\n Stack: Canary found\n NX: NX enabled\n PIE: PIE enabled\n\n### Verify third-party libraries are not vulnerable\n\nWhen choosing third-party libraries, prioritize using those with a solid\nreputation in the development community. Resources like the [Google Play SDK\nIndex](https://play.google.com/sdks) can help you identify well-regarded and trustworthy libraries. Ensure\nyou keep the libraries updated to the latest versions and proactively search for\nany known vulnerabilities related to them using resources like the databases\nfrom [Exploit-DB](https://www.exploit-db.com/). A web search using keywords like\n`[library_name] vulnerability` or `[library_name] CVE` can reveal critical\nsecurity information.\n\nResources\n---------\n\n- [CWE-111: Direct Use of Unsafe JNI](https://cwe.mitre.org/data/definitions/111.html)\n- [Exploit database](https://www.exploit-db.com/)\n- [Check binaries for security hardening features](https://www.systutorials.com/docs/linux/man/1-hardening-check/)\n- [Check binary security settings with pwntools](https://docs.pwntools.com/en/stable/commandline.html#pwn-checksec)\n- [Linux binary security hardening](https://medium.com/@n80fr1n60/linux-binary-security-hardening-1434e89a2525)\n- [Hardening ELF binaries using Relocation Read-Only (RELRO)](https://www.redhat.com/fr/blog/hardening-elf-binaries-using-relocation-read-only-relro)\n- [OWASP binary protection mechanisms](https://mas.owasp.org/MASTG/Android/0x05i-Testing-Code-Quality-and-Build-Settings/#binary-protection-mechanisms)\n- [SEI CERT Coding Standards](https://wiki.sei.cmu.edu/confluence/display/seccode/SEI+CERT+Coding+Standards)\n- [OWASP Developer Guide](https://owasp.org/www-project-developer-guide/release/)\n- [Google Play SDK Index](https://play.google.com/sdks)\n- [Android NDK](/ndk)\n- [Android Rust introduction](https://source.android.com/docs/setup/build/rust/building-rust-modules/overview)\n- [Abseil (C++ Common Libraries)](https://github.com/abseil/abseil-cpp)\n- [PIE is enforced by the linker](https://cs.android.com/android/platform/superproject/main/+/main:bionic/linker/linker_main.cpp;l=425?q=linker_main&ss=android%2Fplatform%2Fsuperproject%2Fmain)"]]