上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页
摘要: goto label: // 在label里面的语句,只要被扫描到,都会执行,并不会因为是label里面的语句就跳过(如,当我们语句从上扫描到这里,先执行XXX在到goto等接下来的语句) XXX goto label 阅读全文
posted @ 2023-02-28 22:19 klyn003 阅读(96) 评论(0) 推荐(0)
摘要: for (only no while statement) for{ } for ; ;{ } for true{ } // for range 用来遍历字符串或者数组 for index, value := range XXX{} 阅读全文
posted @ 2023-02-28 22:13 klyn003 阅读(43) 评论(0) 推荐(0)
摘要: Go 语言的字符串是基本数据类型之一,实际上面通过字节数组实现,遍历中文的时候需要转化为rune(int32)类型,之后%c输出 基本类型-> string fmt.Sprintf();// strconv.XXX(); string -> 基本类型 strconv.XXX();// 转换的时候如果 阅读全文
posted @ 2023-02-28 16:14 klyn003 阅读(41) 评论(0) 推荐(0)
摘要: 设置代理 @echo off echo 开始设置IE代理上网 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f reg add 阅读全文
posted @ 2023-02-10 10:53 klyn003 阅读(231) 评论(0) 推荐(0)
摘要: 鼠标穿透 https://juejin.cn/post/7008470158528217124 阅读全文
posted @ 2023-01-29 23:32 klyn003 阅读(67) 评论(0) 推荐(0)
摘要: SetFocus SetActiveWindow 被设置的对象需要为设置的孩子等 SetFocus SetFocus([in] HWND hWnd) // If the function succeeds, the return value is the handle to the window t 阅读全文
posted @ 2023-01-29 22:31 klyn003 阅读(189) 评论(0) 推荐(0)
摘要: SendInput 代替了 mouse_event 以及 keybd_event prototype UINT WINAPI SendInput( _In_ UINT nInputs, _In_ LPINPUT pInputs, _In_ int cbSize // 表示的是input的size,可 阅读全文
posted @ 2023-01-29 22:25 klyn003 阅读(280) 评论(0) 推荐(0)
摘要: // MOUSE 借助 GetMessage和PeekMessage实现 #define _WIN32_WINNT 0x0400 // #pragma comment( lib, "user32.lib" ) #include <windows.h> #include <stdio.h> HHOOK 阅读全文
posted @ 2023-01-29 11:23 klyn003 阅读(130) 评论(0) 推荐(0)
摘要: NET API hooking is a technique by which we can instrument and modify the behavior and flow of APIcalls. https://www.ired.team/offensive-security/code- 阅读全文
posted @ 2023-01-28 21:25 klyn003 阅读(30) 评论(0) 推荐(0)
摘要: left top 在javascript里面,不要定义变量为left、top,不然出错 阅读全文
posted @ 2023-01-27 20:32 klyn003 阅读(43) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页