会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
一起来学python
android逆向
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
14
15
16
17
18
19
20
21
22
···
125
下一页
2021年5月31日
python ast
摘要: import ast import astor # 初始代码 source = """ index=0 def some_function(param): if param == 0: return case_0(param) elif param < 0: return negative_case
阅读全文
posted @ 2021-05-31 18:02 公众号python学习开发
阅读(260)
评论(0)
推荐(0)
2021年5月28日
最小的js编译器
摘要: 'use strict'; // 词法分析器 参数:代码字符串input function tokenizer(input) { // 当前正在处理的字符索引 let current = 0; // 词法单元数组 let tokens = []; // 遍历字符串,获得词法单元数组 while (c
阅读全文
posted @ 2021-05-28 15:37 公众号python学习开发
阅读(115)
评论(0)
推荐(0)
2021年5月26日
excel加双引号和逗号
摘要: 表格制作过程如下: A2表格暂时为空,模板建立完成以后,用来放置原始数据; 在B2表格内输入公式: ="'"&A2&"'"&"," 敲击回车; 解释: B2表格的公式"'"&A2&"'"&","中,"'"表示数据左上角的单引号,在Excel表格中需要用双引号将特殊字符引上; &字符为连接字符,用来连
阅读全文
posted @ 2021-05-26 11:01 公众号python学习开发
阅读(1507)
评论(0)
推荐(0)
2021年5月20日
servicebestpractice项目的更新
摘要: package com.example.servicebestpractice; import android.app.Notification; import android.app.NotificationChannel; import android.app.NotificationManag
阅读全文
posted @ 2021-05-20 00:53 公众号python学习开发
阅读(83)
评论(0)
推荐(0)
2021年5月12日
公主连结过root检测-frida
摘要: function main() { Java.perform(function x() { var MainActivity = Java.use("jp.co.cygames.androidroot.CheckApp"); //包名+类 // 重载找到指定的函数fun MainActivity.i
阅读全文
posted @ 2021-05-12 20:26 公众号python学习开发
阅读(421)
评论(0)
推荐(0)
2021年5月11日
android使用AsyncHttpClient发送请求
摘要: package com.example.xxxx; import android.util.Log; import com.loopj.android.http.AsyncHttpClient; import com.loopj.android.http.AsyncHttpResponseHandl
阅读全文
posted @ 2021-05-11 18:19 公众号python学习开发
阅读(171)
评论(0)
推荐(0)
2021年4月25日
js检测dom元素的变化
摘要: new MutationObserver((mutations, observer) => { const el = document.querySelector("span.Title-followNum"); if (el) { observer.disconnect() new Mutatio
阅读全文
posted @ 2021-04-25 14:46 公众号python学习开发
阅读(242)
评论(0)
推荐(0)
2021年4月16日
安卓手机关闭防火墙命令
摘要: 需要root,测试手机google pixels 1代,系统版本安卓8 adb shell之后进入手机之后 执行 iptables -P INPUT ACCEPT iptables -P OUTPUT ACCEPT iptables -P FORWARD ACCEPT ip6tables -P IN
阅读全文
posted @ 2021-04-16 10:35 公众号python学习开发
阅读(1972)
评论(0)
推荐(0)
2021年4月14日
github进行fetch更新代码
摘要: fetch 现在代码不同步了,我们要先把Alvin仓库的代码fetch到自己电脑的仓库下。注意,这是在自己电脑上操作,不是在github上操作。 git fetch https://github.com/xxxx/hooker.git master:latest 上面这条命令,git fetch 之
阅读全文
posted @ 2021-04-14 17:41 公众号python学习开发
阅读(378)
评论(0)
推荐(0)
python的unitest简单使用说明
摘要: # coding=utf-8 import unittest # 4.定义测试类,父类为unittest.TestCase。 # 可继承unittest.TestCase的方法,如setUp和tearDown方法,不过此方法可以在子类重写,覆盖父类方法。 # 可继承unittest.TestCase
阅读全文
posted @ 2021-04-14 15:26 公众号python学习开发
阅读(126)
评论(0)
推荐(0)
上一页
1
···
14
15
16
17
18
19
20
21
22
···
125
下一页
公告