10 2018 档案

摘要:UID卡(国外称GEN1) 所有区块可被重复读写 卡片ID可改且使用后门指令更改ID ID可被重复修改 响应后门指令(意味着可被使用后门指令检测是否为克隆卡的机器发现) CUID卡(国外称GEN2) 所有区块可被重复读写 卡片ID可改且使用普通写指令更改ID ID可被重复修改 不响应后门指令(意味着 阅读全文
posted @ 2018-10-20 09:13 TMD睡觉
摘要:修改PHP上传文件大小限制的方法1. 一般的文件上传,除非文件很小.就像一个5M的文件,很可能要超过一分钟才能上传完.但在php中,默认的该页最久执行时间为 30 秒.就是说超过30秒,该脚本就停止执行.这就导致出现 无法打开网页的情况.这时我们可以修改 max_execution_time在php 阅读全文
posted @ 2018-10-12 16:31 TMD睡觉
摘要:[DllImport("user32.dll")] [return: MarshalAs(UnmanagedType.Bool)] static extern bool GetWindowRect(IntPtr hWnd, ref RECT lpRect); [StructLayout(LayoutKind.Sequential)] public struct RECT { ... 阅读全文
posted @ 2018-10-01 16:01 TMD睡觉
摘要:[DllImport("user32.dll")] private static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndlnsertAfter, int X, int Y, int cx, int cy, uint Flags); SetWindowPos( hWnd: HWND; {窗口句柄} hWn... 阅读全文
posted @ 2018-10-01 15:51 TMD睡觉 阅读(13813) 评论(0) 推荐(2)