上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: if判断: if [$? -eq 0];then echo "xxxxxxxxxxx" else echo "xxxxxxxxxxxxx" fi case判断: case $name in xxx) echo "xxxxxxx" xxx) echo "xxxxxx" esac for循环: for 阅读全文
posted @ 2019-03-23 17:31 千年妖狐 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 定义变量: name='qwer' 不解析任何字符 name="qwer" 会解析$和\特殊字符 name1=123;name2=456 定义多个变量 now_date=`date` 执行系统命令(现在系统的时间) 引用变量: echo $name echo {$name} {}用于区分边界 预定义 阅读全文
posted @ 2019-03-23 15:35 千年妖狐 阅读(192) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-03-22 15:54 千年妖狐 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 性能测试之后,需要分析性能问题瓶颈所在,最常见的情况,就是服务器cpu或者内存指标过高。但是仅仅是这样,还不够,我们最好可以进一步给研发提供更多的信息,并且最好还能给出自己的一些建议,才会显得测试报告专业。分析问题简单思路是用分层思想,分析最大可能是哪一层出现瓶颈,然后再具体分析。这里如果cpu过高 阅读全文
posted @ 2019-03-22 15:53 千年妖狐 阅读(105) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-03-08 09:37 千年妖狐 阅读(2) 评论(0) 推荐(0) 编辑
摘要: MobSF工具 python2.7 web页面 2.1 反编译保护 2.1.1 问题描述 APP源代码对于一个公司是非常重要的信息资源,对APP的保护也尤为重要,APP的反编译会造成源代码被恶意者读取,以及APP的逻辑设计, 反编译方法 我们一般想要反编译一个apk,无非就是想获得三样东西:图片资源 阅读全文
posted @ 2019-03-07 17:30 千年妖狐 阅读(1255) 评论(0) 推荐(0) 编辑
摘要: 推荐使用该命令: adb shell dumpsys activity top | findstr ACTIVITY aapt dump badging F:\app\Tchat.apk adb shell dumpsys activity加上-h可以获取帮助信息 获取当前界面的UI信息,可以用:a 阅读全文
posted @ 2019-03-07 15:54 千年妖狐 阅读(351) 评论(0) 推荐(0) 编辑
摘要: https://t0data.gitbooks.io/burpsuite/content/chapter18.html https://www.cnblogs.com/botoo/category/1112111.html https://www.testclass.cn/katalon_studi 阅读全文
posted @ 2019-02-27 19:32 千年妖狐 阅读(2024) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-02-13 09:58 千年妖狐 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-02-13 09:42 千年妖狐 阅读(132) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页