Skip to content

Commit

Permalink
fix passw string (#2831)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpholguera committed Jul 17, 2024
1 parent 95e6f1b commit ce26baa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demos/android/MASVS-STORAGE/MASTG-DEMO-0001/MastgTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class MastgTest (private val context: Context){
fun mastgTestApi() {
val externalStorageDir = context.getExternalFilesDir(null)
val fileName = File(externalStorageDir, "secret.txt")
val fileContent = "secr3tPa$$W0rd\n"
val fileContent = "secr3tPa\$\$W0rd\n"

try {
FileOutputStream(fileName).use { output ->
Expand Down
2 changes: 1 addition & 1 deletion demos/android/MASVS-STORAGE/MASTG-DEMO-0002/MastgTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class MastgTest (private val context: Context){
fun mastgTestApi() {
val externalStorageDir = context.getExternalFilesDir(null)
val fileName = File(externalStorageDir, "secret.txt")
val fileContent = "secr3tPa$$W0rd\n"
val fileContent = "secr3tPa\$\$W0rd\n"

try {
FileOutputStream(fileName).use { output ->
Expand Down
2 changes: 1 addition & 1 deletion demos/android/MASVS-STORAGE/MASTG-DEMO-0004/MastgTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MastgTest (private val context: Context){
val externalStorageDir = context.getExternalFilesDir(null)

val fileName = File(externalStorageDir, "secret.txt")
val fileContent = "secr3tPa$$W0rd\n"
val fileContent = "secr3tPa\$\$W0rd\n"

try {
FileOutputStream(fileName).use { output ->
Expand Down

0 comments on commit ce26baa

Please sign in to comment.