অ্যান্ড্রয়েড: রপ্তানি করা হয়েছে
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
OWASP বিভাগ: MASVS-প্ল্যাটফর্ম: প্ল্যাটফর্ম ইন্টারঅ্যাকশন
ওভারভিউ
android:exported
অ্যাট্রিবিউট সেট করে যে একটি উপাদান (ক্রিয়াকলাপ, পরিষেবা, সম্প্রচার রিসিভার, ইত্যাদি) অন্যান্য অ্যাপ্লিকেশনের উপাদানগুলির দ্বারা চালু করা যেতে পারে কিনা:
-
true
হলে, যেকোন অ্যাপ অ্যাক্টিভিটি অ্যাক্সেস করতে পারে এবং তার সঠিক ক্লাসের নাম দিয়ে এটি চালু করতে পারে। -
false
হলে, একই অ্যাপ্লিকেশনের শুধুমাত্র উপাদান, একই ব্যবহারকারী আইডি সহ অ্যাপ্লিকেশন, বা সুবিধাপ্রাপ্ত সিস্টেম উপাদানগুলি কার্যকলাপ চালু করতে পারে।
এই অ্যাট্রিবিউটের ডিফল্ট মানের পিছনে যুক্তি সময়ের সাথে পরিবর্তিত হয় এবং উপাদানের প্রকার এবং Android সংস্করণের উপর নির্ভর করে ভিন্ন ছিল। উদাহরণ স্বরূপ, API লেভেল 16 (Android 4.1.1) বা <provider>
উপাদানের মান কম করা ডিফল্টরূপে true
হিসেবে সেট করা আছে। এই বৈশিষ্ট্যটি সেট না করা স্পষ্টভাবে কিছু ডিভাইসের মধ্যে বিভিন্ন ডিফল্ট মান থাকার ঝুঁকি বহন করে।
প্রভাব
বিভিন্ন ডিফল্ট মান সহ পরিস্থিতি মানে আপনি ঘটনাক্রমে অভ্যন্তরীণ অ্যাপ্লিকেশন উপাদানগুলি প্রকাশ করতে পারেন। ফলাফলের কয়েকটি উদাহরণ নিম্নলিখিত হতে পারে:
পরিষেবা আক্রমণ অস্বীকার. আপনার অ্যাপের অভ্যন্তরীণ কার্যকারিতা পরিবর্তন করতে অন্য অ্যাপগুলি অভ্যন্তরীণ উপাদানগুলিকে অনুপযুক্তভাবে অ্যাক্সেস করছে। সংবেদনশীল তথ্য ফাঁস. দুর্বল আবেদনের প্রেক্ষাপটে কোড নির্বাহ।
প্রশমন
সর্বদা স্পষ্টভাবে android:exported
বৈশিষ্ট্য সেট করুন। এটি ব্যাখ্যার জন্য কোন জায়গা ছেড়ে দেবে না এবং একটি উপাদানের দৃশ্যমানতার বিষয়ে আপনার উদ্দেশ্যকে স্পষ্টভাবে সংকেত দেবে।
{% শব্দার্থে %}
{% endverbatim %} আপনার জন্য প্রস্তাবিত
{% শব্দার্থে %} {% endverbatim %}
এই পৃষ্ঠার কন্টেন্ট ও কোডের নমুনাগুলি Content License-এ বর্ণিত লাইসেন্সের অধীনস্থ। Java এবং OpenJDK হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-29 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-29 UTC-তে শেষবার আপডেট করা হয়েছে।"],[],[],null,["# android:exported\n\n\u003cbr /\u003e\n\n**OWASP category:** [MASVS-PLATFORM: Platform Interaction](https://mas.owasp.org/MASVS/09-MASVS-PLATFORM)\n\nOverview\n--------\n\nThe `android:exported` [attribute](/guide/topics/manifest/activity-element#exported) sets whether a component (activity, service, broadcast receiver, etc.) can be launched by components of other applications:\n\n- If `true`, any app can access the activity and launch it by its exact class name.\n- If `false`, only components of the same application, applications with the same user ID, or privileged system components can launch the activity.\n\nThe logic behind the default value of this attribute changed over time and was different depending on the component types and Android versions. For example, on API level 16 (Android 4.1.1) or lower the value for `\u003cprovider\u003e` elements is set to `true` by default. Not setting this attribute explicitly carries the risk of having different default values between some devices.\n\nImpact\n------\n\nThe situation with different default values means you could accidentally expose internal application components. A few examples of the consequences could be the following:\n\nDenial of service attacks.\nOther apps inappropriately accessing internal components to modify your app's internal functionality.\nLeaking of sensitive data.\nCode execution in the context of the vulnerable application.\n\nMitigations\n-----------\n\nAlways explicitly set the `android:exported` attribute. This will leave no room for interpretation and clearly signal your intention with regard to a component's visibility.\n\nRecommended for you\n-------------------\n\n- Note: link text is displayed when JavaScript is off\n- [# Key management {:#key-management}](/topic/security/data)\n- [Run embedded DEX code directly from APK](/topic/security/dex)\n- [Tapjacking](/topic/security/risks/tapjacking)"]]