├── VERSION ├── packages ├── clients │ └── android │ │ ├── app │ │ ├── .gitignore │ │ ├── src │ │ │ ├── main │ │ │ │ ├── assets │ │ │ │ │ └── database │ │ │ │ │ │ └── data.sqlite3 │ │ │ │ ├── res │ │ │ │ │ ├── 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 │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── home.xml │ │ │ │ │ │ ├── server_info_menu.xml │ │ │ │ │ │ └── add_note_menu.xml │ │ │ │ │ ├── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── styles.xml │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_add_white_24dp.xml │ │ │ │ │ │ ├── ic_info_black_24dp.xml │ │ │ │ │ │ ├── ic_save_white_24dp.xml │ │ │ │ │ │ ├── ic_notifications_black_24dp.xml │ │ │ │ │ │ ├── ic_sync_black_24dp.xml │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── activity_home_note_item.xml │ │ │ │ │ │ ├── content_home.xml │ │ │ │ │ │ ├── activity_home.xml │ │ │ │ │ │ ├── activity_note_edit.xml │ │ │ │ │ │ ├── activity_server_info.xml │ │ │ │ │ │ ├── activity_login.xml │ │ │ │ │ │ └── activity_signup.xml │ │ │ │ │ ├── xml │ │ │ │ │ │ ├── pref_headers.xml │ │ │ │ │ │ ├── pref_data_sync.xml │ │ │ │ │ │ ├── pref_notification.xml │ │ │ │ │ │ └── pref_general.xml │ │ │ │ │ └── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── cx │ │ │ │ │ │ └── goatlin │ │ │ │ │ │ ├── api │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── Account.kt │ │ │ │ │ │ │ └── Note.kt │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── Client.kt │ │ │ │ │ │ ├── models │ │ │ │ │ │ ├── Note.kt │ │ │ │ │ │ └── Account.kt │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── PreferenceHelper.kt │ │ │ │ │ │ ├── CryptoHelper.kt │ │ │ │ │ │ └── DatabaseHelper.kt │ │ │ │ │ │ ├── ServerInfoActivity.kt │ │ │ │ │ │ ├── AccountProvider.kt │ │ │ │ │ │ ├── NotesProvider.kt │ │ │ │ │ │ ├── SignupActivity.kt │ │ │ │ │ │ ├── EditNoteActivity.kt │ │ │ │ │ │ ├── HomeActivity.kt │ │ │ │ │ │ └── LoginActivity.kt │ │ │ │ └── AndroidManifest.xml │ │ │ ├── test │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── cx │ │ │ │ │ └── goatlin │ │ │ │ │ └── ExampleUnitTest.kt │ │ │ └── androidTest │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── cx │ │ │ │ └── goatlin │ │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── proguard-rules.pro │ │ ├── build.gradle │ │ ├── app-app.iml │ │ └── app.iml │ │ ├── settings.gradle │ │ ├── README.md │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradlew.bat │ │ └── gradlew └── services │ └── api │ ├── .dockerignore │ ├── config.json │ ├── Dockerfile │ ├── src │ ├── routes │ │ ├── index.js │ │ └── accounts.js │ ├── lib │ │ └── database.js │ ├── models │ │ ├── account.js │ │ └── note.js │ ├── middleware │ │ └── auth.js │ └── app.js │ ├── package.json │ ├── bin │ └── www │ └── package-lock.json ├── .gitignore ├── docker-compose.yml ├── CONTRIBUTING.md ├── README.md └── LICENSE.md /VERSION: -------------------------------------------------------------------------------- 1 | 0.3.0 -------------------------------------------------------------------------------- /packages/clients/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /packages/services/api/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/clients/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /packages/clients/android/README.md: -------------------------------------------------------------------------------- 1 | Vulnerable Kotlin application 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | local.properties 2 | .gradle 3 | .idea 4 | *.iml 5 | build 6 | node_modules 7 | -------------------------------------------------------------------------------- /packages/services/api/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "database": "mongodb://db:27017/api" 3 | } 4 | -------------------------------------------------------------------------------- /packages/services/api/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:10.14.1-alpine 2 | 3 | WORKDIR /app 4 | COPY . . 5 | RUN npm install --production 6 | 7 | CMD npm start 8 | -------------------------------------------------------------------------------- /packages/clients/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkmarx/Goatlin/HEAD/packages/clients/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/assets/database/data.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkmarx/Goatlin/HEAD/packages/clients/android/app/src/main/assets/database/data.sqlite3 -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkmarx/Goatlin/HEAD/packages/clients/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkmarx/Goatlin/HEAD/packages/clients/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkmarx/Goatlin/HEAD/packages/clients/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/java/com/cx/goatlin/api/model/Account.kt: -------------------------------------------------------------------------------- 1 | package com.cx.goatlin.api.model 2 | 3 | data class Account (var name: String, var email: String, var password: String) -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/java/com/cx/goatlin/api/model/Note.kt: -------------------------------------------------------------------------------- 1 | package com.cx.goatlin.api.model 2 | 3 | data class Note (var title: String, var content: String, var createAt: String) -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkmarx/Goatlin/HEAD/packages/clients/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkmarx/Goatlin/HEAD/packages/clients/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkmarx/Goatlin/HEAD/packages/clients/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkmarx/Goatlin/HEAD/packages/clients/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkmarx/Goatlin/HEAD/packages/clients/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkmarx/Goatlin/HEAD/packages/clients/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkmarx/Goatlin/HEAD/packages/clients/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/java/com/cx/goatlin/models/Note.kt: -------------------------------------------------------------------------------- 1 | package com.cx.goatlin.models 2 | 3 | data class Note(var title: String, var content: String) { 4 | var id: Int = -1 5 | var owner: Int = -1 6 | } -------------------------------------------------------------------------------- /packages/services/api/src/routes/index.js: -------------------------------------------------------------------------------- 1 | const express = require('express'); 2 | const router = express.Router(); 3 | 4 | router.get('/', function(req, res, next) { 5 | res.send('¯\\_(ツ)_/¯'); 6 | }); 7 | 8 | module.exports = router; 9 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/menu/home.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /packages/clients/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Jun 24 17:53:57 WEST 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip 7 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/menu/server_info_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/services/api/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "api", 3 | "version": "0.0.0", 4 | "private": true, 5 | "scripts": { 6 | "start": "node ./bin/www" 7 | }, 8 | "dependencies": { 9 | "debug": "~2.6.9", 10 | "express": "~4.16.0", 11 | "http-errors": "~1.6.2", 12 | "mongoose": "^5.7.5", 13 | "morgan": "~1.9.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/drawable/ic_add_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/menu/add_note_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | -------------------------------------------------------------------------------- /packages/services/api/src/lib/database.js: -------------------------------------------------------------------------------- 1 | const mongoose = require('mongoose'); 2 | 3 | function connect(connectionString) { 4 | mongoose.connect(connectionString, { useNewUrlParser: true }); 5 | 6 | mongoose.connection.on('error', console.error.bind(console, 'connection error:')); 7 | mongoose.connection.once('open', () => { 8 | console.log('Database connection established!'); 9 | }); 10 | } 11 | 12 | module.exports = { connect }; 13 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/drawable/ic_info_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: "3" 2 | services: 3 | db: 4 | image: mongo:latest 5 | container_name: goatlin_db 6 | restart: always 7 | volumes: 8 | - db:/data/db 9 | expose: 10 | - "27017" 11 | api: 12 | build: ./packages/services/api 13 | image: kotlin-scp-api:latest 14 | container_name: goatlin_api 15 | depends_on: 16 | - db 17 | links: 18 | - db 19 | ports: 20 | - "8080:8080" 21 | volumes: 22 | db: 23 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/test/java/com/cx/goatlin/ExampleUnitTest.kt: -------------------------------------------------------------------------------- 1 | package com.cx.goatlin 2 | 3 | import org.junit.Test 4 | 5 | import org.junit.Assert.* 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * See [testing documentation](http://d.android.com/tools/testing). 11 | */ 12 | class ExampleUnitTest { 13 | @Test 14 | fun addition_isCorrect() { 15 | assertEquals(4, 2 + 2) 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/java/com/cx/goatlin/models/Account.kt: -------------------------------------------------------------------------------- 1 | package com.cx.goatlin.models 2 | 3 | import android.database.Cursor 4 | 5 | data class Account(var username: String, var password: String) { 6 | var id: Int = -1 7 | 8 | constructor(cursor: Cursor) : this( 9 | cursor.getString(cursor.getColumnIndex("username")), 10 | cursor.getString(cursor.getColumnIndex("password")) 11 | ){ 12 | id = cursor.getInt(cursor.getColumnIndex("id")) 13 | } 14 | } -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/drawable/ic_save_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/drawable/ic_notifications_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /packages/services/api/src/models/account.js: -------------------------------------------------------------------------------- 1 | const mongoose = require('mongoose'); 2 | 3 | const accountSchema = new mongoose.Schema({ 4 | name: { 5 | type: String, 6 | required: true 7 | }, 8 | email: { 9 | type: String, 10 | required: true, 11 | unique: true 12 | }, 13 | password: { 14 | type: String, 15 | required: true 16 | }, 17 | createdAt: { 18 | type: Date, 19 | default: Date.now() 20 | } 21 | }); 22 | 23 | module.exports = new mongoose.model('Account', accountSchema); 24 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/drawable/ic_sync_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /packages/services/api/src/models/note.js: -------------------------------------------------------------------------------- 1 | const mongoose = require('mongoose'); 2 | 3 | const noteSchema = new mongoose.Schema({ 4 | id: { 5 | type: String, 6 | required: true 7 | }, 8 | owner: { 9 | type: String, 10 | required: true 11 | }, 12 | title: { 13 | type: String, 14 | required: true, 15 | }, 16 | content: { 17 | type: String, 18 | required: true 19 | }, 20 | createdAt: { 21 | type: Date, 22 | default: Date.now() 23 | } 24 | }); 25 | 26 | module.exports = new mongoose.model('Note', noteSchema); 27 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/layout/activity_home_note_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 16 | 17 | -------------------------------------------------------------------------------- /packages/clients/android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext.kotlin_version = '1.3.10' 5 | repositories { 6 | google() 7 | jcenter() 8 | } 9 | dependencies { 10 | classpath 'com.android.tools.build:gradle:3.4.1' 11 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 12 | 13 | // NOTE: Do not place your application dependencies here; they belong 14 | // in the individual module build.gradle files 15 | } 16 | } 17 | 18 | allprojects { 19 | repositories { 20 | google() 21 | jcenter() 22 | } 23 | } 24 | 25 | task clean(type: Delete) { 26 | delete rootProject.buildDir 27 | } 28 | -------------------------------------------------------------------------------- /packages/clients/android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx1536m 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. More details, visit 12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 13 | # org.gradle.parallel=true 14 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/java/com/cx/goatlin/helpers/PreferenceHelper.kt: -------------------------------------------------------------------------------- 1 | package com.cx.goatlin.helpers 2 | 3 | import android.content.Context 4 | import android.content.SharedPreferences 5 | 6 | object PreferenceHelper { 7 | private lateinit var sharedPreferences: SharedPreferences 8 | 9 | public fun init(context: Context) { 10 | if (!this::sharedPreferences.isInitialized) { 11 | sharedPreferences = context.getSharedPreferences(context.packageName, Context.MODE_PRIVATE) 12 | } 13 | } 14 | 15 | public fun getString(key: String, default: String?): String { 16 | return sharedPreferences.getString(key, default) 17 | } 18 | 19 | public fun getInt(key: String, default: Int = -1): Int { 20 | return sharedPreferences.getInt(key, default) 21 | } 22 | } -------------------------------------------------------------------------------- /packages/clients/android/app/src/androidTest/java/com/cx/goatlin/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- 1 | package com.cx.goatlin 2 | 3 | import android.support.test.InstrumentationRegistry 4 | import android.support.test.runner.AndroidJUnit4 5 | 6 | import org.junit.Test 7 | import org.junit.runner.RunWith 8 | 9 | import org.junit.Assert.* 10 | 11 | /** 12 | * Instrumented test, which will execute on an Android device. 13 | * 14 | * See [testing documentation](http://d.android.com/tools/testing). 15 | */ 16 | @RunWith(AndroidJUnit4::class) 17 | class ExampleInstrumentedTest { 18 | @Test 19 | fun useAppContext() { 20 | // Context of the app under test. 21 | val appContext = InstrumentationRegistry.getTargetContext() 22 | assertEquals("com.cx.vulnerablekotlinapp", appContext.packageName) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /packages/clients/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /packages/services/api/src/middleware/auth.js: -------------------------------------------------------------------------------- 1 | const Account = require('../models/account'); 2 | 3 | module.exports = async function (req, res, next) { 4 | const header = req.get('Authorization') || ''; 5 | 6 | if (header === '') { 7 | return res.status(401).end() 8 | } 9 | 10 | try { 11 | const [scheme, data] = header.split(' '); 12 | const [email, password] = Buffer.from(data, 'base64') 13 | .toString() 14 | .split(':') 15 | 16 | const account = await Account.findOne({email,password}).exec(); 17 | if (account === null) { 18 | return res.status(401).end() 19 | } 20 | 21 | return next(); 22 | } catch (e) { 23 | let status = 500; 24 | let error = 'Authentication failed' 25 | 26 | console.error(e); 27 | 28 | res.status(status).json({error}).end(); 29 | } 30 | }; 31 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/xml/pref_headers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
9 | 10 |
14 | 15 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /packages/clients/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 | 20 | 21 |