Skip to content

!!!THIS PROJECT COLLECTS DATA!!! #1

@Sergey842248

Description

@Sergey842248

If the app is installed on a phone according to the source code, there is data collected and you are not able to turn this off unless you know the password hidden in the source code!!! At the moment the password is: "JuIGZxo0Na" (without "). You can find it in
/lib/pages/dashboard/settings/DeveloperOptions.dart in line 121.

Here is the code block:

        'title': 'analysis code',
        'actionText': 'enter',
        'action': () async {
          TextEditingController _controller = new TextEditingController();
          showDialog(
            context: context,
            builder: (context) => AlertDialog(
              backgroundColor: Theme.of(context).scaffoldBackgroundColor,
              title: Text('enter analisis code'),
              content: Container(
                alignment: Alignment.center,
                height: 100,
                child: InputField(
                  controller: _controller,
                  labelText: 'analisis code',
                ),
              ),
              actions: [
                Button(
                  text: 'enter',
                  onPressed: () async {
                    SharedPreferences prefs =
                        await SharedPreferences.getInstance();
                    if (_controller.text == 'JuIGZxo0Na') {
                      prefs.setBool('analisis', false);
                      Fluttertoast.showToast(msg: 'no analisis anymore');
                    } else {
                      Fluttertoast.showToast(msg: 'incorrect code');
                    }
                    Navigator.pop(context);
                  },

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions