Skip to content

Commit 0ac1d50

Browse files
jcesarmobileshipley-dcc
andauthoredFeb 19, 2025
fix(android): sanitize portable file name (#7894) (#7895)
Co-authored-by: Dave Crombie <dcrombie29@googlemail.com>
1 parent f34a008 commit 0ac1d50

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed
 

‎android/capacitor/src/main/java/com/getcapacitor/FileUtils.java

+12-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@ private static String getCopyFilePath(Uri uri, Context context) {
219219
int nameIndex = cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME);
220220
cursor.moveToFirst();
221221
String name = (cursor.getString(nameIndex));
222-
File file = new File(context.getFilesDir(), name);
222+
String fileName = sanitizeFilename(name);
223+
File file = new File(context.getFilesDir(), fileName);
223224
try {
224225
InputStream inputStream = context.getContentResolver().openInputStream(uri);
225226
FileOutputStream outputStream = new FileOutputStream(file);
@@ -289,4 +290,14 @@ private static String getPathToNonPrimaryVolume(Context context, String tag) {
289290
}
290291
return null;
291292
}
293+
294+
private static String sanitizeFilename(String displayName) {
295+
String[] badCharacters = new String[] { "..", "/" };
296+
String[] segments = displayName.split("/");
297+
String fileName = segments[segments.length - 1];
298+
for (String suspString : badCharacters) {
299+
fileName = fileName.replace(suspString, "_");
300+
}
301+
return fileName;
302+
}
292303
}

0 commit comments

Comments
 (0)
Please sign in to comment.