├── .gitignore ├── README.md ├── hardware └── basics │ ├── README.md │ ├── check.sv │ ├── flag.txt │ ├── helper.v │ ├── main.cpp │ ├── pass.txt │ └── provided.zip ├── media ├── FlagWave.gif ├── cat_hardware_icon.svg ├── cat_reversing_icon.svg ├── cat_web_icon.svg ├── flag_submitted_compressed.gif ├── reversing │ ├── android │ │ ├── breakpoint.png │ │ ├── exception.png │ │ ├── fail.png │ │ ├── home.png │ │ ├── onclick.png │ │ ├── solved.png │ │ ├── studio.png │ │ └── var.png │ └── beginner │ │ └── main.png ├── scoreboard.png └── web │ └── pasteurize │ ├── comment.png │ ├── console_test.png │ ├── escaped.png │ ├── malformed.png │ ├── post_paste.png │ └── pre_paste.png ├── reversing ├── android │ ├── README.md │ ├── brute_force.py │ ├── flag.txt │ ├── provided.zip │ ├── replaced-aligned-debugSigned.apk │ ├── replaced.apk │ ├── reverse.apk │ └── reverse │ │ ├── AndroidManifest.xml │ │ ├── apktool.yml │ │ ├── build │ │ └── apk │ │ │ ├── AndroidManifest.xml │ │ │ ├── classes.dex │ │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── $ic_launcher_foreground__0.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ └── resources.arsc │ │ ├── original │ │ ├── AndroidManifest.xml │ │ └── META-INF │ │ │ ├── ANDROIDD.RSA │ │ │ ├── ANDROIDD.SF │ │ │ └── MANIFEST.MF │ │ ├── res │ │ ├── drawable │ │ │ ├── $ic_launcher_foreground__0.xml │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── mipmap-anydpi │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── ids.xml │ │ │ ├── public.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── smali │ │ ├── android │ │ └── support │ │ │ └── constraint │ │ │ ├── Barrier.smali │ │ │ ├── ConstraintHelper.smali │ │ │ ├── ConstraintLayout$LayoutParams$Table.smali │ │ │ ├── ConstraintLayout$LayoutParams.smali │ │ │ ├── ConstraintLayout.smali │ │ │ ├── ConstraintSet$1.smali │ │ │ ├── ConstraintSet$Constraint.smali │ │ │ ├── ConstraintSet.smali │ │ │ ├── Constraints$LayoutParams.smali │ │ │ ├── Constraints.smali │ │ │ ├── Group.smali │ │ │ ├── Guideline.smali │ │ │ ├── Placeholder.smali │ │ │ ├── R$attr.smali │ │ │ ├── R$id.smali │ │ │ ├── R$styleable.smali │ │ │ ├── R.smali │ │ │ └── solver │ │ │ ├── ArrayLinkedVariables.smali │ │ │ ├── ArrayRow.smali │ │ │ ├── Cache.smali │ │ │ ├── GoalRow.smali │ │ │ ├── LinearSystem$Row.smali │ │ │ ├── LinearSystem.smali │ │ │ ├── Metrics.smali │ │ │ ├── Pools$Pool.smali │ │ │ ├── Pools$SimplePool.smali │ │ │ ├── Pools.smali │ │ │ ├── SolverVariable$1.smali │ │ │ ├── SolverVariable$Type.smali │ │ │ ├── SolverVariable.smali │ │ │ └── widgets │ │ │ ├── Analyzer.smali │ │ │ ├── Barrier.smali │ │ │ ├── Chain.smali │ │ │ ├── ChainHead.smali │ │ │ ├── ConstraintAnchor$1.smali │ │ │ ├── ConstraintAnchor$ConnectionType.smali │ │ │ ├── ConstraintAnchor$Strength.smali │ │ │ ├── ConstraintAnchor$Type.smali │ │ │ ├── ConstraintAnchor.smali │ │ │ ├── ConstraintHorizontalLayout$ContentAlignment.smali │ │ │ ├── ConstraintHorizontalLayout.smali │ │ │ ├── ConstraintTableLayout$HorizontalSlice.smali │ │ │ ├── ConstraintTableLayout$VerticalSlice.smali │ │ │ ├── ConstraintTableLayout.smali │ │ │ ├── ConstraintWidget$1.smali │ │ │ ├── ConstraintWidget$ContentAlignment.smali │ │ │ ├── ConstraintWidget$DimensionBehaviour.smali │ │ │ ├── ConstraintWidget.smali │ │ │ ├── ConstraintWidgetContainer.smali │ │ │ ├── ConstraintWidgetGroup.smali │ │ │ ├── Guideline$1.smali │ │ │ ├── Guideline.smali │ │ │ ├── Helper.smali │ │ │ ├── Optimizer.smali │ │ │ ├── Rectangle.smali │ │ │ ├── ResolutionAnchor.smali │ │ │ ├── ResolutionDimension.smali │ │ │ ├── ResolutionNode.smali │ │ │ ├── Snapshot$Connection.smali │ │ │ ├── Snapshot.smali │ │ │ └── WidgetContainer.smali │ │ └── com │ │ └── google │ │ └── ctf │ │ └── sandbox │ │ ├── BuildConfig.smali │ │ ├── R$attr.smali │ │ ├── R$color.smali │ │ ├── R$drawable.smali │ │ ├── R$id.smali │ │ ├── R$layout.smali │ │ ├── R$mipmap.smali │ │ ├── R$string.smali │ │ ├── R$style.smali │ │ ├── R$styleable.smali │ │ ├── R.smali │ │ ├── o$1.smali │ │ └── o.smali └── beginner │ ├── README.md │ ├── a.out │ ├── flag.txt │ ├── helper.py │ └── provided.zip └── web └── pasteurize ├── README.md ├── flag.txt ├── payload.txt └── source.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/README.md -------------------------------------------------------------------------------- /hardware/basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/hardware/basics/README.md -------------------------------------------------------------------------------- /hardware/basics/check.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/hardware/basics/check.sv -------------------------------------------------------------------------------- /hardware/basics/flag.txt: -------------------------------------------------------------------------------- 1 | CTF{W4sTh4tASan1tyCh3ck?} 2 | -------------------------------------------------------------------------------- /hardware/basics/helper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/hardware/basics/helper.v -------------------------------------------------------------------------------- /hardware/basics/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/hardware/basics/main.cpp -------------------------------------------------------------------------------- /hardware/basics/pass.txt: -------------------------------------------------------------------------------- 1 | 7LoX%*_x 2 | -------------------------------------------------------------------------------- /hardware/basics/provided.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/hardware/basics/provided.zip -------------------------------------------------------------------------------- /media/FlagWave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/FlagWave.gif -------------------------------------------------------------------------------- /media/cat_hardware_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/cat_hardware_icon.svg -------------------------------------------------------------------------------- /media/cat_reversing_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/cat_reversing_icon.svg -------------------------------------------------------------------------------- /media/cat_web_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/cat_web_icon.svg -------------------------------------------------------------------------------- /media/flag_submitted_compressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/flag_submitted_compressed.gif -------------------------------------------------------------------------------- /media/reversing/android/breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/reversing/android/breakpoint.png -------------------------------------------------------------------------------- /media/reversing/android/exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/reversing/android/exception.png -------------------------------------------------------------------------------- /media/reversing/android/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/reversing/android/fail.png -------------------------------------------------------------------------------- /media/reversing/android/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/reversing/android/home.png -------------------------------------------------------------------------------- /media/reversing/android/onclick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/reversing/android/onclick.png -------------------------------------------------------------------------------- /media/reversing/android/solved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/reversing/android/solved.png -------------------------------------------------------------------------------- /media/reversing/android/studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/reversing/android/studio.png -------------------------------------------------------------------------------- /media/reversing/android/var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/reversing/android/var.png -------------------------------------------------------------------------------- /media/reversing/beginner/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/reversing/beginner/main.png -------------------------------------------------------------------------------- /media/scoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/scoreboard.png -------------------------------------------------------------------------------- /media/web/pasteurize/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/web/pasteurize/comment.png -------------------------------------------------------------------------------- /media/web/pasteurize/console_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/web/pasteurize/console_test.png -------------------------------------------------------------------------------- /media/web/pasteurize/escaped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/web/pasteurize/escaped.png -------------------------------------------------------------------------------- /media/web/pasteurize/malformed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/web/pasteurize/malformed.png -------------------------------------------------------------------------------- /media/web/pasteurize/post_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/web/pasteurize/post_paste.png -------------------------------------------------------------------------------- /media/web/pasteurize/pre_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/web/pasteurize/pre_paste.png -------------------------------------------------------------------------------- /reversing/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/README.md -------------------------------------------------------------------------------- /reversing/android/brute_force.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/brute_force.py -------------------------------------------------------------------------------- /reversing/android/flag.txt: -------------------------------------------------------------------------------- 1 | CTF{y0u_c4n_k3ep_y0u?_m4gic_1_h4Ue_laser_b3ams!} 2 | -------------------------------------------------------------------------------- /reversing/android/provided.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/provided.zip -------------------------------------------------------------------------------- /reversing/android/replaced-aligned-debugSigned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/replaced-aligned-debugSigned.apk -------------------------------------------------------------------------------- /reversing/android/replaced.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/replaced.apk -------------------------------------------------------------------------------- /reversing/android/reverse.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse.apk -------------------------------------------------------------------------------- /reversing/android/reverse/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/AndroidManifest.xml -------------------------------------------------------------------------------- /reversing/android/reverse/apktool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/apktool.yml -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/AndroidManifest.xml -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/classes.dex -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/drawable/$ic_launcher_foreground__0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/drawable/$ic_launcher_foreground__0.xml -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/layout/activity_main.xml -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/mipmap-anydpi/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/mipmap-anydpi/ic_launcher_round.xml -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /reversing/android/reverse/build/apk/resources.arsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/build/apk/resources.arsc -------------------------------------------------------------------------------- /reversing/android/reverse/original/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/original/AndroidManifest.xml -------------------------------------------------------------------------------- /reversing/android/reverse/original/META-INF/ANDROIDD.RSA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/original/META-INF/ANDROIDD.RSA -------------------------------------------------------------------------------- /reversing/android/reverse/original/META-INF/ANDROIDD.SF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/original/META-INF/ANDROIDD.SF -------------------------------------------------------------------------------- /reversing/android/reverse/original/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/original/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /reversing/android/reverse/res/drawable/$ic_launcher_foreground__0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/drawable/$ic_launcher_foreground__0.xml -------------------------------------------------------------------------------- /reversing/android/reverse/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /reversing/android/reverse/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /reversing/android/reverse/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/layout/activity_main.xml -------------------------------------------------------------------------------- /reversing/android/reverse/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /reversing/android/reverse/res/mipmap-anydpi/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-anydpi/ic_launcher_round.xml -------------------------------------------------------------------------------- /reversing/android/reverse/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /reversing/android/reverse/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /reversing/android/reverse/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /reversing/android/reverse/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /reversing/android/reverse/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /reversing/android/reverse/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /reversing/android/reverse/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /reversing/android/reverse/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /reversing/android/reverse/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /reversing/android/reverse/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /reversing/android/reverse/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/values/attrs.xml -------------------------------------------------------------------------------- /reversing/android/reverse/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/values/colors.xml -------------------------------------------------------------------------------- /reversing/android/reverse/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/values/ids.xml -------------------------------------------------------------------------------- /reversing/android/reverse/res/values/public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/values/public.xml -------------------------------------------------------------------------------- /reversing/android/reverse/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/values/strings.xml -------------------------------------------------------------------------------- /reversing/android/reverse/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/values/styles.xml -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/Barrier.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/Barrier.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/ConstraintHelper.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/ConstraintHelper.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/ConstraintLayout$LayoutParams$Table.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/ConstraintLayout$LayoutParams$Table.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/ConstraintLayout$LayoutParams.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/ConstraintLayout$LayoutParams.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/ConstraintLayout.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/ConstraintLayout.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/ConstraintSet$1.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/ConstraintSet$1.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/ConstraintSet$Constraint.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/ConstraintSet$Constraint.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/ConstraintSet.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/ConstraintSet.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/Constraints$LayoutParams.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/Constraints$LayoutParams.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/Constraints.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/Constraints.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/Group.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/Group.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/Guideline.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/Guideline.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/Placeholder.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/Placeholder.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/R$attr.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/R$attr.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/R$id.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/R$id.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/R$styleable.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/R$styleable.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/R.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/R.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/ArrayLinkedVariables.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/ArrayLinkedVariables.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/ArrayRow.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/ArrayRow.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/Cache.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/Cache.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/GoalRow.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/GoalRow.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/LinearSystem$Row.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/LinearSystem$Row.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/LinearSystem.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/LinearSystem.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/Metrics.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/Metrics.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/Pools$Pool.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/Pools$Pool.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/Pools$SimplePool.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/Pools$SimplePool.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/Pools.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/Pools.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/SolverVariable$1.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/SolverVariable$1.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/SolverVariable$Type.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/SolverVariable$Type.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/SolverVariable.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/SolverVariable.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/Analyzer.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/Analyzer.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/Barrier.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/Barrier.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/Chain.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/Chain.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ChainHead.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ChainHead.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintAnchor$1.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintAnchor$1.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintAnchor$ConnectionType.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintAnchor$ConnectionType.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintAnchor$Strength.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintAnchor$Strength.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintAnchor$Type.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintAnchor$Type.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintAnchor.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintAnchor.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintHorizontalLayout$ContentAlignment.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintHorizontalLayout$ContentAlignment.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintHorizontalLayout.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintHorizontalLayout.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintTableLayout$HorizontalSlice.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintTableLayout$HorizontalSlice.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintTableLayout$VerticalSlice.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintTableLayout$VerticalSlice.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintTableLayout.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintTableLayout.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintWidget$1.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintWidget$1.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintWidget$ContentAlignment.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintWidget$ContentAlignment.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintWidget$DimensionBehaviour.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintWidget$DimensionBehaviour.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintWidget.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintWidget.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintWidgetContainer.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintWidgetContainer.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintWidgetGroup.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ConstraintWidgetGroup.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/Guideline$1.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/Guideline$1.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/Guideline.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/Guideline.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/Helper.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/Helper.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/Optimizer.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/Optimizer.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/Rectangle.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/Rectangle.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ResolutionAnchor.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ResolutionAnchor.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ResolutionDimension.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ResolutionDimension.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/ResolutionNode.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/ResolutionNode.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/Snapshot$Connection.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/Snapshot$Connection.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/Snapshot.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/Snapshot.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/android/support/constraint/solver/widgets/WidgetContainer.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/android/support/constraint/solver/widgets/WidgetContainer.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/BuildConfig.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/BuildConfig.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/R$attr.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/R$attr.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/R$color.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/R$color.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/R$drawable.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/R$drawable.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/R$id.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/R$id.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/R$layout.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/R$layout.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/R$mipmap.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/R$mipmap.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/R$string.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/R$string.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/R$style.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/R$style.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/R$styleable.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/R$styleable.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/R.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/R.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/o$1.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/o$1.smali -------------------------------------------------------------------------------- /reversing/android/reverse/smali/com/google/ctf/sandbox/o.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/smali/com/google/ctf/sandbox/o.smali -------------------------------------------------------------------------------- /reversing/beginner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/beginner/README.md -------------------------------------------------------------------------------- /reversing/beginner/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/beginner/a.out -------------------------------------------------------------------------------- /reversing/beginner/flag.txt: -------------------------------------------------------------------------------- 1 | CTF{S1MDf0rM3!} 2 | -------------------------------------------------------------------------------- /reversing/beginner/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/beginner/helper.py -------------------------------------------------------------------------------- /reversing/beginner/provided.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/beginner/provided.zip -------------------------------------------------------------------------------- /web/pasteurize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/web/pasteurize/README.md -------------------------------------------------------------------------------- /web/pasteurize/flag.txt: -------------------------------------------------------------------------------- 1 | CTF{Express_t0_Tr0ubl3s} 2 | -------------------------------------------------------------------------------- /web/pasteurize/payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/web/pasteurize/payload.txt -------------------------------------------------------------------------------- /web/pasteurize/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/web/pasteurize/source.txt --------------------------------------------------------------------------------