पाथ ट्रैवर्सल
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
OWASP कैटगरी: MASVS-STORAGE: स्टोरेज
खास जानकारी
पाथ ट्रेवर्सल से जुड़ी समस्याएं तब होती हैं, जब हमलावर पाथ के उस हिस्से को कंट्रोल कर सकता है जिसकी पुष्टि किए बिना उसे फ़ाइल सिस्टम एपीआई को पास किया जाता है. इससे, फ़ाइल सिस्टम में बिना अनुमति के कार्रवाइयां की जा सकती हैं. उदाहरण के लिए, कोई हमलावर ../
जैसे खास वर्णों का इस्तेमाल करके, टारगेट की गई डायरेक्ट्री से बाहर निकलकर, संसाधन के टारगेट को अचानक बदल सकता है.
असर
फ़ाइल के कॉन्टेंट और उस पर किए गए काम के आधार पर, इसकी वजह से होने वाले असर में फ़र्क़ होता है. आम तौर पर, फ़ाइलें लिखते समय फ़ाइल ओवरराइट हो जाती है, फ़ाइलें पढ़ते समय डेटा लीक हो जाता है या फ़ाइल या डायरेक्ट्री की अनुमतियों में बदलाव हो जाता है.
जोखिम कम करने के तरीके
File.getCanonicalPath()
का इस्तेमाल करके पाथ को कैननिकल बनाएं और प्रीफ़िक्स की तुलना, उम्मीद की गई डायरेक्ट्री से करें:
Kotlin
@Throws(IllegalArgumentException::class)
fun saferOpenFile(path: String, expectedDir: String?): File {
val f = File(path)
val canonicalPath = f.canonicalPath
require(canonicalPath.startsWith(expectedDir!!))
return f
}
Java
public File saferOpenFile (String path, String expectedDir) throws IllegalArgumentException {
File f = new File(path);
String canonicalPath = f.getCanonicalPath();
if (!canonicalPath.startsWith(expectedDir)) {
throw new IllegalArgumentException();
}
return f;
}
पुष्टि करने का तरीका इस्तेमाल करना भी सबसे सही तरीकों में से एक है. इससे यह पक्का किया जा सकता है कि सिर्फ़ उम्मीद के मुताबिक नतीजे मिलें. उदाहरणों में नीचे दी गई चीज़ें शामिल हैं:
- यह देखना कि फ़ाइल पहले से मौजूद है या नहीं, ताकि गलती से किसी फ़ाइल को ओवरराइट न किया जाए.
- यह जांचना कि टारगेट की गई फ़ाइल, सही टारगेट है या नहीं. इससे डेटा लीक होने या अनुमतियों में गलत तरीके से बदलाव होने से बचा जा सकता है.
- यह जांचना कि ऑपरेशन की मौजूदा डायरेक्ट्री, कैननिकल पाथ से मिली रिटर्न वैल्यू के मुताबिक है या नहीं.
- यह पक्का करना कि अनुमति सिस्टम साफ़ तौर पर कार्रवाई तक सीमित है. उदाहरण के लिए, यह देखना कि वह सेवाओं को रूट के तौर पर तो नहीं चला रहा है. साथ ही, यह पक्का करना कि डायरेक्ट्री की अनुमतियां, बताई गई सेवा या कमांड के दायरे में आती हैं.
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. 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,["# Path traversal\n\n\u003cbr /\u003e\n\n**OWASP category:** [MASVS-STORAGE: Storage](https://mas.owasp.org/MASVS/05-MASVS-STORAGE)\n\nOverview\n--------\n\nPath traversal vulnerabilities occur when an attacker can control part of the\npath that is then passed to the file system APIs without validation. This can\nlead to unauthorized file system operations. For example, an attacker might use\nspecial characters such as `../` to unexpectedly change the resource target, by\ntraversing outside of the targeted directory.\n\nImpact\n------\n\nThe impact varies depending on the operation and file content, but generally\nleads to a file overwrite (when writing files), data leak (when reading files),\nor permission changes (when changing file or directory permissions).\n\nMitigations\n-----------\n\nCanonicalize the path using [`File.getCanonicalPath()`](/reference/java/io/File#getCanonicalPath()) and compare the\nprefix with the expected directory: \n\n### Kotlin\n\n @Throws(IllegalArgumentException::class)\n fun saferOpenFile(path: String, expectedDir: String?): File {\n val f = File(path)\n val canonicalPath = f.canonicalPath\n require(canonicalPath.startsWith(expectedDir!!))\n return f\n }\n\n### Java\n\n public File saferOpenFile (String path, String expectedDir) throws IllegalArgumentException {\n File f = new File(path);\n String canonicalPath = f.getCanonicalPath();\n if (!canonicalPath.startsWith(expectedDir)) {\n throw new IllegalArgumentException();\n }\n return f;\n }\n\nAn additional best practice is to use validation to ensure only expected\noutcomes occur. Examples include the following:\n\n- Checking if the file already exists to prevent an accidental overwrite.\n- Checking if the targeted file is an expected target to prevent leaking data or incorrectly changing permissions.\n- Checking if the current directory of the operation is exactly as expected in the return value from the canonical path.\n- Ensuring a permissions system is explicitly scoped to the operation, such as checking that it isn't running services as root, and ensuring that the directory permissions are scoped to the service or command specified."]]