無障礙(二)檢測與防范

一嵌灰、簡介

無障礙(一)功能實(shí)現(xiàn)我們知道募逞,無障礙服務(wù)可以獲取界面上的控件和控件的文案信息背率。那么就可以通過文案做一些自動(dòng)化操作细层。

比如:自動(dòng)刷新儒鹿,找到列表中符合條件的票務(wù)信息弧岳、訂單信息凳忙,找到搶票按鈕业踏,實(shí)現(xiàn)自動(dòng)搶單操作。

二涧卵、無障礙抓取屏幕數(shù)據(jù)

以一個(gè)簡單的listview為例勤家,寫一個(gè)簡單的布局,嘗試使用無障礙抓取頁面數(shù)據(jù)柳恐。

item布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="15dp">

    <ImageView
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:src="@mipmap/ic_launcher" />

    <TextView
        android:id="@+id/tv_title"
        android:layout_width="wrap_content"
        android:layout_height="48dp"
        android:layout_marginLeft="58dp"
        android:gravity="center_vertical"
        android:text="我是一個(gè)title" />

    <TextView
        android:id="@+id/click_me"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_marginTop="50dp"
        android:background="#ff0000"
        android:padding="10dp"
        android:text="點(diǎn)我"
        android:textColor="@color/white"
        android:textSize="16sp"
        android:textStyle="bold" />
</RelativeLayout>

顯示效果:

listView列表.jpg

抓取結(jié)果:
下方是抓到的數(shù)據(jù)伐脖,可以看到,每個(gè)條目的的title都被抓取到了乐设。

setttleNodeInfo getClassName:android.widget.TextView, getText:Demo
setttleNodeInfo getClassName:android.widget.ListView, getText:null
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:我是title:0
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:我是title:1
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:我是title:2
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:我是title:3
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:我是title:4
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:我是title:5
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:我是title:6
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我

三讼庇、無障礙檢測與防范

上述問題對于一些需要搶單的軟件來說,可能會(huì)有第三方插件開發(fā)近尚,從而導(dǎo)致不公平的搶單操作蠕啄。

為了避免以上問題,可以有以下的方法:
1戈锻、對無障礙功能檢測歼跟,如果開啟無障礙功能,提醒用戶運(yùn)行環(huán)境問題格遭。最好不要禁止用戶使用app哈街,因?yàn)橛行o障礙功能并不是真的用來搶單的。
2拒迅、針對無障礙app的應(yīng)用名稱骚秦、包名進(jìn)行封禁。
3坪它、對于敏感信息骤竹,轉(zhuǎn)換成圖片形式進(jìn)行展示,防止信息被輕易抓取往毡。

1蒙揣、無障礙功能開啟檢測
// 判斷無障礙功能是否開啟
private boolean isAccessibilityOpen() {
    AccessibilityManager accessibilityManager = (AccessibilityManager) getSystemService(Context.ACCESSIBILITY_SERVICE);
    return accessibilityManager.isEnabled();
}
// 直接查詢已經(jīng)啟用的service
public boolean isAccessibilityOpen2() {
    AccessibilityManager accessibilityManager = (AccessibilityManager) getSystemService(Context.ACCESSIBILITY_SERVICE);
    List<AccessibilityServiceInfo> accessibilityservices = accessibilityManager.getEnabledAccessibilityServiceList(AccessibilityServiceInfo.FEEDBACK_GENERIC);
    return accessibilityservices != null && !accessibilityservices.isEmpty();
}
2、listView的item中包含title的數(shù)據(jù)轉(zhuǎn)換成圖片展示

item布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="15dp">

    <ImageView
        android:id="@+id/img_layout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:id="@+id/click_me"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_marginTop="50dp"
        android:background="#ff0000"
        android:padding="10dp"
        android:text="點(diǎn)我"
        android:textColor="@color/white"
        android:textSize="16sp"
        android:textStyle="bold" />
</RelativeLayout>

Adapter代碼:

public class MyImgAdapter extends BaseAdapter {
    private final Context mContext;
    private RelativeLayout mRealLayout;

    public MyImgAdapter(Context context) {
        this.mContext = context;
    }

    @Override
    public int getCount() {
        return 10;
    }

    @Override
    public Object getItem(int position) {
        return null;
    }

    @Override
    public long getItemId(int position) {
        return 0;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        ViewHolder viewHolder;
        if (convertView == null) {
            convertView = LayoutInflater.from(mContext).inflate(R.layout.item_test_img, null);
            viewHolder = new ViewHolder(convertView);
            convertView.setTag(viewHolder);
        } else {
            viewHolder = (ViewHolder) convertView.getTag();
        }
        viewHolder.mImgLayout.setImageBitmap(genRealLayout(position));
        viewHolder.mClickMe.setOnClickListener(v -> Toast.makeText(mContext, "點(diǎn)了我了:" + position, Toast.LENGTH_SHORT).show());
        return convertView;
    }

    // 通過數(shù)據(jù)獲取bitmap
    private synchronized Bitmap genRealLayout(int position) {
        if (mRealLayout == null) {
            mRealLayout = (RelativeLayout) LayoutInflater.from(mContext).inflate(R.layout.item_real_layout, null);
        }
        ((TextView) mRealLayout.findViewById(R.id.tv_title)).setText("我是Img的title:" + position);

        // 主動(dòng)測量一次
        mRealLayout.measure(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);
        int w = mRealLayout.getMeasuredWidth();
        int h = mRealLayout.getMeasuredHeight();
        mRealLayout.layout(0, 0, w, h); // 擺放布局
        Bitmap bmp = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
        Canvas c = new Canvas(bmp);
        mRealLayout.draw(c);
        return bmp;
    }

    static class ViewHolder {
        private TextView mClickMe;
        private ImageView mImgLayout;

        public ViewHolder(View view) {
            mClickMe = view.findViewById(R.id.click_me);
            mImgLayout = view.findViewById(R.id.img_layout);
        }
    }
}

顯示效果:

listView列表圖片形式顯示效果.jpg

抓取結(jié)果:

setttleNodeInfo getClassName:android.widget.TextView, getText:Demo
setttleNodeInfo getClassName:android.widget.ListView, getText:null
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我
setttleNodeInfo getClassName:android.widget.RelativeLayout, getText:null
setttleNodeInfo getClassName:android.widget.TextView, getText:點(diǎn)我

上述方法會(huì)產(chǎn)生很多bitmap對象开瞭,從而增加內(nèi)存開銷懒震,可以考慮list中的前幾個(gè)item使用圖片形式展示,其他的item繼續(xù)使用控件方式嗤详,從而減少內(nèi)存開銷个扰,并可以影響抓取結(jié)果。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末葱色,一起剝皮案震驚了整個(gè)濱河市递宅,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖办龄,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件烘绽,死亡現(xiàn)場離奇詭異,居然都是意外死亡俐填,警方通過查閱死者的電腦和手機(jī)安接,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來英融,“玉大人盏檐,你說我怎么就攤上這事∈晃颍” “怎么了胡野?”我有些...
    開封第一講書人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長撩银。 經(jīng)常有香客問我给涕,道長,這世上最難降的妖魔是什么额获? 我笑而不...
    開封第一講書人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任够庙,我火速辦了婚禮,結(jié)果婚禮上抄邀,老公的妹妹穿的比我還像新娘耘眨。我一直安慰自己,他們只是感情好境肾,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開白布剔难。 她就那樣靜靜地躺著,像睡著了一般奥喻。 火紅的嫁衣襯著肌膚如雪偶宫。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,144評(píng)論 1 285
  • 那天环鲤,我揣著相機(jī)與錄音纯趋,去河邊找鬼。 笑死冷离,一個(gè)胖子當(dāng)著我的面吹牛吵冒,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播西剥,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼痹栖,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了瞭空?” 一聲冷哼從身側(cè)響起揪阿,我...
    開封第一講書人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬榮一對情侶失蹤疗我,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后南捂,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體碍粥,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年黑毅,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片钦讳。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡矿瘦,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出愿卒,到底是詐尸還是另有隱情缚去,我是刑警寧澤,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布琼开,位于F島的核電站易结,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏柜候。R本人自食惡果不足惜搞动,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望渣刷。 院中可真熱鬧鹦肿,春花似錦、人聲如沸辅柴。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽碌嘀。三九已至涣旨,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間股冗,已是汗流浹背霹陡。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留魁瞪,地道東北人穆律。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像导俘,于是被迫代替她去往敵國和親峦耘。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容