Google Analytics中的奇怪屏幕名称

时间:2015-07-21 08:35:30

标签: android google-analytics

在Google Analytics中,我看到一些奇怪的屏幕名称:

//uploading images
    public function upload_image() {
        $this->load->helper('form');

        $config = array(
            'upload_path' => "./image_uploads/",
            'allowed_types' => "jpg|png|jpeg",
            'overwrite' => TRUE,
            'max_size' => "2048000", // Can be set to particular file size , here it is 2 MB(2048 Kb)
            'max_height' => "768",
            'max_width' => "1024"
        );
        $this->load->library('upload', $config);

        var_dump($_FILES); die();

        foreach ($_FILES as $key => $userfileObject) {
            if (!empty($userfileObject['name'])) {
                $this->upload->initialize($config);  
                  var_dump($_FILES['userfile']);
                if (!$this->upload->do_upload($_FILES[$key])) {
                    $errors = $this->upload->display_errors();
                    flashMsg($errors);
                } else {
                    // Code After Files Upload Success GOES HERE
                    $data['content'] = 'success';
                    $this->load->view('templates/template', $data);
                }`enter code here`
            }
        }

    }

这些名称不在原始Android应用程序中,也不在Proguard映射文件中。此外,统计数据显示我从未发布过的应用版本 这是否意味着有人盗用了应用程序?

1 个答案:

答案 0 :(得分:0)

这可能是由Ghost垃圾邮件引起的。这种类型的垃圾邮件几乎可以伪造任何维度。检查你的推荐并寻找任何可疑的东西。

以下是一个例子:

enter image description here

您可以查看此相关问题,了解有关垃圾邮件的更多信息以及解决方法。

https://stackoverflow.com/a/28354319/3197362