好友
阅读权限10
听众
最后登录1970-1-1
|
jim19
发表于 2023-7-17 11:39
因为工作相对自由, 写个软件严格要求自己执行, 不过并没有甚么卵用, 能打败我的只有明天的我, 发给大家玩吧.
点击go, 会自动执行脚本内的程序, 下面的文字意思是这样的.
120,OllyDbg_cracker,"F:\DevTool\OllyDBG\OllyICE_1.10\OllyICE.exe"
120, 代表120分钟, 代表我准备今天这个时间段我要研究2小时的od, 并且附带一个类似迅雷那样的悬浮框显示倒计时时间, 如果离开5分钟鼠标或者键盘不动, 自动停止倒计时.
ollydbg_cracker, 代表任务名字,
"F:\DevTool\OllyDBG\OllyICE_1.10\OllyICE.exe", 代表要打开的文件或者要执行的程序.
运行起来就是这个死样子了.
taskDown.rar
(258.93 KB, 下载次数: 6)
[Asm] 纯文本查看 复制代码 procedure Tfrmmn.pmbtnGo1Click(Sender: TObject);
var
i, j: integer;
ts: TStringList;
timerInter: dword;
preFile: string;
showBallTime: dword;
taskID: dword;
begin
try
stat1.Panels.Items[0].Text := 'Task count: ' + inttostr(mmoList.Lines.Count);
ts := TStringList.Create;
FPause := false;
FStop := false;
pmbtnGo1.Enabled := false;
showBallTime := 0;
taskID := StrToInt(edtstarttaskid.Text);
for i := taskID to mmoList.Lines.Count - 1 do
begin
if chkindeed.Checked then
showmessage('Please confirm to start next task!');
if FStop then break;
if mmoList.Lines.Strings[i] <> '' then
begin
ts.DelimitedText := mmoList.Lines.Strings[i];
ts.Delimiter := ',';
timerInter := strtoint(ts.Strings[0]) * 60;
j := 0;
msnPop.Text := ts.Strings[1];
if ts.Count > 3 then
begin
preFile := ts.Strings[2];
ShellExecute(self.Handle, 'open', PChar(preFile), nil, nil, SW_SHOWNORMAL);
msnPop.URL := ts.Strings[3];
end else begin
msnPop.URL := ts.Strings[2];
end;
msnPop.Width := 320;
msnPop.ShowPopUp;
while j < timerInter do
begin
htDelay(1000);
if FStop then break;
if not FPause then
begin
dsptimer.Caption := 'TSK' + inttostr(i) + '| ' + SecondToTime(timerInter - j);
flyTime.Text := SecondToTime(timerInter - j);
if showBallTime > 600 then
begin
rztrycn1.Hint := dsptimer.Caption;
rztrycn1.ShowBalloonHint(rztrycn1.Hint, rztrycn1.Hint);
showBallTime := 0;
end;
Inc(showBallTime);
inc(j);
end;
end;
end;
end;
finally
ts.Free;
pmbtnGo1.Enabled := true;
end;
end;
|
免费评分
-
参与人数 1 | 吾爱币 +7 |
热心值 +1 |
收起
理由
|
苏紫方璇
| + 7 |
+ 1 |
欢迎分析讨论交流,吾爱破解论坛有你更精彩! |
查看全部评分
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|