Skip to content

Commit 5c7c116

Browse files
authored
Merge pull request #3456 from OWASP/minor-fixes
Minor fixes in frontmatter
2 parents d581abc + 9a7011d commit 5c7c116

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ Payload/
3636
site/
3737
.cache/
3838
references.json
39+
.obsidian/

techniques/android/MASTG-TECH-0109.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
---
1+
---
22
title: Intercepting Flutter HTTPS Traffic
3-
platform: android
3+
platform: android
44
---
55

66
Flutter is an open-source UI software development kit (SDK) created by Google. It is used to build natively compiled applications for mobile, web, and desktop from a single codebase. Flutter uses Dart, which is not proxy-aware and uses its own certificate store. A Flutter mobile app doesn't use the system's proxy configuration and sends the data directly to the server. Connections are verified against built-in certificates, so any certificates installed on the system are simply ignored. This makes it impossible to intercept HTTPS requests through a standard MiTM setup, as the proxy's certificate is never trusted.

techniques/android/MASTG-TECH-0117.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
---
1+
---
22
title: Obtaining Information from the AndroidManifest
3-
platform: android
3+
platform: android
44
---
55

66
The [AndroidManifest.xml](../../Document/0x05a-Platform-Overview.md) file is a critical component of any Android application, providing essential information about the app's structure, permissions, components, and configurations. During a security assessment, analyzing the manifest can reveal potential vulnerabilities or misconfigurations that could be exploited by attackers.

techniques/android/MASTG-TECH-0126.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
---
1+
---
22
title: Obtaining App Permissions
3-
platform: android
3+
platform: android
44
---
55

66
Android permissions are declared in the `AndroidManifest.xml` file using the `<uses-permission>` tag. You can use multiple tools to view them.

techniques/android/MASTG-TECH-0127.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
---
1+
---
22
title: Inspecting an App's Backup Data
3-
platform: android
3+
platform: android
44
---
55

66
You can inspect an Android app's backup data to verify that sensitive data is not included in the backup. This technique is useful for verifying that the app correctly excludes sensitive data from backups.

0 commit comments

Comments
 (0)