├── .gitignore ├── hardware └── basics │ ├── pass.txt │ ├── flag.txt │ ├── provided.zip │ ├── check.sv │ ├── main.cpp │ ├── helper.v │ └── README.md ├── reversing ├── beginner │ ├── flag.txt │ ├── a.out │ ├── provided.zip │ └── helper.py └── android │ ├── flag.txt │ ├── reverse.apk │ ├── provided.zip │ ├── replaced.apk │ ├── reverse │ ├── build │ │ └── apk │ │ │ ├── classes.dex │ │ │ ├── resources.arsc │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ ├── 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 │ │ │ └── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ └── $ic_launcher_foreground__0.xml │ ├── original │ │ ├── AndroidManifest.xml │ │ └── META-INF │ │ │ ├── ANDROIDD.RSA │ │ │ ├── MANIFEST.MF │ │ │ └── ANDROIDD.SF │ ├── res │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ ├── ids.xml │ │ │ ├── colors.xml │ │ │ ├── attrs.xml │ │ │ └── public.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 │ │ ├── mipmap-anydpi │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── drawable │ │ │ ├── $ic_launcher_foreground__0.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ └── ic_launcher_background.xml │ │ └── layout │ │ │ └── activity_main.xml │ ├── smali │ │ ├── android │ │ │ └── support │ │ │ │ └── constraint │ │ │ │ ├── ConstraintSet$1.smali │ │ │ │ ├── R.smali │ │ │ │ ├── solver │ │ │ │ ├── Pools.smali │ │ │ │ ├── LinearSystem$Row.smali │ │ │ │ ├── GoalRow.smali │ │ │ │ ├── Pools$Pool.smali │ │ │ │ ├── widgets │ │ │ │ │ ├── ConstraintTableLayout$HorizontalSlice.smali │ │ │ │ │ ├── ConstraintTableLayout$VerticalSlice.smali │ │ │ │ │ ├── ResolutionDimension.smali │ │ │ │ │ ├── Helper.smali │ │ │ │ │ ├── ConstraintAnchor$ConnectionType.smali │ │ │ │ │ ├── ConstraintAnchor$Strength.smali │ │ │ │ │ ├── Rectangle.smali │ │ │ │ │ ├── ConstraintWidget$DimensionBehaviour.smali │ │ │ │ │ ├── ResolutionNode.smali │ │ │ │ │ ├── Guideline$1.smali │ │ │ │ │ ├── ConstraintAnchor$1.smali │ │ │ │ │ ├── Snapshot$Connection.smali │ │ │ │ │ └── Snapshot.smali │ │ │ │ ├── Cache.smali │ │ │ │ ├── SolverVariable$1.smali │ │ │ │ ├── SolverVariable$Type.smali │ │ │ │ └── Pools$SimplePool.smali │ │ │ │ ├── R$id.smali │ │ │ │ ├── R$attr.smali │ │ │ │ ├── Group.smali │ │ │ │ ├── Guideline.smali │ │ │ │ └── Constraints.smali │ │ └── com │ │ │ └── google │ │ │ └── ctf │ │ │ └── sandbox │ │ │ ├── R$style.smali │ │ │ ├── R$string.smali │ │ │ ├── R$layout.smali │ │ │ ├── R$mipmap.smali │ │ │ ├── R$drawable.smali │ │ │ ├── R$color.smali │ │ │ ├── BuildConfig.smali │ │ │ ├── R.smali │ │ │ ├── R$id.smali │ │ │ ├── o.smali │ │ │ └── R$attr.smali │ ├── apktool.yml │ └── AndroidManifest.xml │ ├── replaced-aligned-debugSigned.apk │ └── brute_force.py ├── web └── pasteurize │ ├── flag.txt │ ├── payload.txt │ ├── source.txt │ └── README.md ├── media ├── FlagWave.gif ├── scoreboard.png ├── reversing │ ├── android │ │ ├── var.png │ │ ├── fail.png │ │ ├── home.png │ │ ├── solved.png │ │ ├── studio.png │ │ ├── onclick.png │ │ ├── breakpoint.png │ │ └── exception.png │ └── beginner │ │ └── main.png ├── web │ └── pasteurize │ │ ├── comment.png │ │ ├── escaped.png │ │ ├── malformed.png │ │ ├── pre_paste.png │ │ ├── post_paste.png │ │ └── console_test.png ├── flag_submitted_compressed.gif ├── cat_web_icon.svg ├── cat_hardware_icon.svg └── cat_reversing_icon.svg └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /hardware/basics/pass.txt: -------------------------------------------------------------------------------- 1 | 7LoX%*_x 2 | -------------------------------------------------------------------------------- /reversing/beginner/flag.txt: -------------------------------------------------------------------------------- 1 | CTF{S1MDf0rM3!} 2 | -------------------------------------------------------------------------------- /web/pasteurize/flag.txt: -------------------------------------------------------------------------------- 1 | CTF{Express_t0_Tr0ubl3s} 2 | -------------------------------------------------------------------------------- /hardware/basics/flag.txt: -------------------------------------------------------------------------------- 1 | CTF{W4sTh4tASan1tyCh3ck?} 2 | -------------------------------------------------------------------------------- /reversing/android/flag.txt: -------------------------------------------------------------------------------- 1 | CTF{y0u_c4n_k3ep_y0u?_m4gic_1_h4Ue_laser_b3ams!} 2 | -------------------------------------------------------------------------------- /media/FlagWave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/FlagWave.gif -------------------------------------------------------------------------------- /media/scoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/scoreboard.png -------------------------------------------------------------------------------- /reversing/beginner/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/beginner/a.out -------------------------------------------------------------------------------- /hardware/basics/provided.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/hardware/basics/provided.zip -------------------------------------------------------------------------------- /reversing/android/reverse.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse.apk -------------------------------------------------------------------------------- /media/reversing/android/var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/reversing/android/var.png -------------------------------------------------------------------------------- /reversing/android/provided.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/provided.zip -------------------------------------------------------------------------------- /reversing/android/replaced.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/replaced.apk -------------------------------------------------------------------------------- /reversing/beginner/provided.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/beginner/provided.zip -------------------------------------------------------------------------------- /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/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/beginner/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/reversing/beginner/main.png -------------------------------------------------------------------------------- /media/web/pasteurize/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/web/pasteurize/comment.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/pre_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/web/pasteurize/pre_paste.png -------------------------------------------------------------------------------- /media/flag_submitted_compressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/flag_submitted_compressed.gif -------------------------------------------------------------------------------- /media/reversing/android/onclick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/reversing/android/onclick.png -------------------------------------------------------------------------------- /media/web/pasteurize/post_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/web/pasteurize/post_paste.png -------------------------------------------------------------------------------- /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/web/pasteurize/console_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/media/web/pasteurize/console_test.png -------------------------------------------------------------------------------- /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/replaced-aligned-debugSigned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/replaced-aligned-debugSigned.apk -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /web/pasteurize/payload.txt: -------------------------------------------------------------------------------- 1 | content[;document.getElementById('note-content').innerHTML='';exit();//]=pwnd 2 | -------------------------------------------------------------------------------- /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/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/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Sandbox 4 | 5 | -------------------------------------------------------------------------------- /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-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-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-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-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/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/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_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_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_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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luker983/google-ctf-2020/HEAD/reversing/android/reverse/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /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-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-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-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-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-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-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_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_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/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/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-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_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/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/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |