摘要: 提取exe文件中的图标并保存为ico文件:ico := TIcon.Create;tryico.handle := ExtractIcon(hInstance, ExeFileName, 0);ico.SaveToFile(''c:\001.ico'');finallyico.free;end;保 存后的001.ico文件严重失真,我们打开Graphics.pas文件,找到writeIcon函数... 阅读全文
posted @ 2010-01-30 22:10 iAdo 阅读(815) 评论(0) 推荐(0) 编辑
摘要: 很多网站使用了session来 记录用户登录状态,idhttp本身是不记录session的, 需要通过一些技术手段来伪造session。以Get为例,idhttp伪造session IdHttp1.Get(mURL1); mStr := IdHttp1.Response.CustomHeaders.Values['Set-Cookie']; if Pos(';',mStr)>0 then... 阅读全文
posted @ 2010-01-30 20:17 iAdo 阅读(1879) 评论(0) 推荐(0) 编辑