nasdaqhe's blog

被生活强jian着
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2021年12月14日

摘要: 1.安装 frida-server adb push frida-server-15.1.12-android-arm64 /data/local/tmp adb shell chmod 755 /data/local/tmp/frida-server-15.1.12-android-arm64 2 阅读全文

posted @ 2021-12-14 11:18 nasdaqhe 阅读(184) 评论(0) 推荐(0) 编辑

2021年9月11日

摘要: 背景安卓新版(android 7.0 以上)应用里面,https 的抓包,需要突破 ssl 限制。要突破 ssl 限制又需要 hook ,hook 常用 xposed , xposed 插件有 justtrustme 。(在 低版本 android 7.0 以下的安卓系统上 抓 https 包的话, 阅读全文

posted @ 2021-09-11 11:07 nasdaqhe 阅读(958) 评论(0) 推荐(0) 编辑

2021年8月24日

摘要: 普通项目: 微服务: declare -A service_name_map=( ["hoho-cloud-gateway"]="https://cs.console.aliyun.com/hook/trigger?token=w" ["hoho-common-message"]="https:// 阅读全文

posted @ 2021-08-24 15:11 nasdaqhe 阅读(107) 评论(0) 推荐(0) 编辑

2021年8月18日

摘要: ./apktool d -f --only-main-classes feishu.apk./apktool b feishu -o nfeishu.apkjarsigner -verbose -keystore sign.keystore -signedjar sfeishu.apk nfeish 阅读全文

posted @ 2021-08-18 16:45 nasdaqhe 阅读(55) 评论(0) 推荐(0) 编辑

2020年5月22日

摘要: 安装最新版 docker curl -fsSL "https://get.docker.com/" | sh 安装后设置非 root 账号使用 docker sudo usermod -aG docker nemo 启动 docker 服务 systemctl enable docker && sy 阅读全文

posted @ 2020-05-22 17:40 nasdaqhe 阅读(149) 评论(0) 推荐(0) 编辑

2018年7月2日

摘要: zabbix 发邮件报 Support for SMTP authentication was not compiled in 其实出现这种问题的原因是我们机器上的 libcurl 版本太低所致。在zabbix的官方说明文档上我们可以知道:zabbix3.x要想使用SMTP,那么需要7.20.0及以 阅读全文

posted @ 2018-07-02 12:17 nasdaqhe 阅读(1370) 评论(0) 推荐(0) 编辑

2018年4月25日

摘要: 1.安装 PHP 1.1 下载源码包 http://php.net/get/php-5.6.35.tar.bz2/from/a/mirror 1.2 编译&安装 1.3 出现的错误处理 提示错误:crun: error: invalid active developer path (/Library 阅读全文

posted @ 2018-04-25 13:29 nasdaqhe 阅读(238) 评论(0) 推荐(0) 编辑

2011年5月15日

摘要: 1.获取编译工具下面要用来编译源代码,如果已经安装可跳过这步 [bash] sudo apt-get install build-essential [/bash]2.安装PEAR and memcached [bash] sudo apt-get install php-pear memcached [/bash]3.编译libmemcached 到 https://launchpad.net/libmemcached/+download 下载最新的libmemcached源代码,解压编译安装步骤如下: Extract the files with your preferred method 阅读全文

posted @ 2011-05-15 23:44 nasdaqhe 阅读(342) 评论(0) 推荐(0) 编辑

摘要: //telnet IP Port 连接到memcached服务器输入 telnet 192.168.12.14 11211//查看服务器状态输入 stats返回一堆状态//SetValue 格式 set keyName 0 过期时间 数据长度,注意数据长度必须是Value的字节长度,如果两者不一致会报错输入 set key1 0 10 5输入 abcde返回 STORED 表示设置成功//GetValue输入 get key1 阅读全文

posted @ 2011-05-15 23:25 nasdaqhe 阅读(490) 评论(0) 推荐(0) 编辑

2011年5月10日

摘要: 关键步骤如下:1.将 DateTime 转换成 long 型。2.索引时要使用 NumericField 进行索引3.搜索时使用 NumericRangeQuery 进行查询事例代码如下:[TestMethod()]publicvoidRangTest(){RAMDirectorymDirInfo=newRAMDirectory();IndexWritermIndexWriter=newIndexWriter(mDirInfo,CAnalyzerLoader.GetAnalyzer(),true,IndexWriter.MaxFieldLength.LIMITED);mIndexWriter. 阅读全文

posted @ 2011-05-10 17:38 nasdaqhe 阅读(448) 评论(0) 推荐(0) 编辑