This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @ClassName MyMail | |
| * @Description 封装好的半成品MyMail | |
| * @Author Palmer | |
| * @Date 2021/11/27 | |
| **/ | |
| public class MyMail { | |
| private String mUserAddr; | |
| private String mPassword; | |
| private IMAPStore mStore = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef _MYCRTPTO_ | |
| #define _MYCRTPTO_ | |
| #include <stdio.h> | |
| #include <stdint.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <math.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 被hook的app的包名 | |
| String hookedPackageName = "com.xekvhaDYe.androie"; | |
| // app里面的Activity | |
| String hookedActivityName = "com.xekvhaDYu.android.a.MainActivity"; | |
| if (hookedPackageName.equals(lpparam.packageName)) { | |
| XposedBridge.log("has hooked..."); | |
| XposedBridge.log("inner => " + lpparam.processName); | |
| Class ActivityThread = XposedHelpers.findClass("android.app.ActivityThread", lpparam.classLoader); | |
| XposedBridge.hookAllMethods(ActivityThread, "performLaunchActivity", new XC_MethodHook() { | |
| @Override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DIM objShell | |
| DIM command | |
| set objShell=wscript.createObject("wscript.shell") | |
| ' 相关运行的cmd命令 | |
| command="java -javaagent:BurpLoaderKeygen.jar -noverify -jar burpsuite_pro_v2021.7.jar" | |
| iReturn=objShell.Run(command, 0, TRUE) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <TriggerCollection xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <Triggers> | |
| <Trigger> | |
| <Guid>gBH/MZ7ynUCRjBBVAZxEbw==</Guid> | |
| <Name>On KeePass start: Auto Save buttons, initialize</Name> | |
| <Events> | |
| <Event> | |
| <TypeGuid>1M7NtUuYT/KmqeJVJh7I6A==</TypeGuid> | |
| <Parameters /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "outboundTag": "proxy", | |
| "domain": [ | |
| "#以下三行是GitHub网站,为了不影响下载速度走代理", | |
| "github.com", | |
| "githubassets.com", | |
| "githubusercontent.com" | |
| ] | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.*; | |
| import java.security.MessageDigest; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.util.zip.Adler32; | |
| public class FirstShellTool { | |
| private static final String originApk = "C:\\Users\\Palmer\\Desktop\\classes3.dex"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;================================================== | |
| ;** 快捷键 Win+` 使当前窗口置顶 | |
| ;================================================== | |
| #`:: | |
| WinSet, AlwaysOnTop, toggle,A | |
| WinGetTitle, getTitle, A | |
| Winget, getTop,ExStyle,A | |
| if (getTop & 0x8) | |
| TrayTip 已置顶, 窗口标题: `n%getTitle%,10,1 | |
| else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding=utf-8 | |
| # @File : register010Editor.py | |
| # @Desc : 010Editor编辑器注册机,适用版本Version: 12.0.1 | |
| # @Author : Forgo7ten | |
| # @Time : 2021/11/21 | |
| import random | |
| import sys | |
| import time |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding=utf-8 | |
| # @File : dex_checksum.py | |
| # @Desc : 计算dex的checksum | |
| # @Author : https://www.52pojie.cn/thread-1070218-1-1.html | |
| # @Time : 2021/11/8 | |
| # Adler-32算法如下步骤实现: | |
| # 1. 定义两个变量varA、varB,其中varA初始化为1,varB初始化为0。 | |
| # 2. 读取字节数组的一个字节(假设该字节变量名为byte),计算varA = (varA + byte) mod 65521,然后可以计算出varB = (varA + varB) mod 65521。 | |
| # 3. 重复步骤2,直到字节数组全部读取完毕,得到最终varA、varB两个变量的结果。 |