自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

FISH的专栏

FISH的专栏

  • 博客(33)
  • 资源 (26)
  • 收藏
  • 关注

原创 V2 多IP模板

V2的多IP模板,仅供参考

2022-10-08 11:23:44 163 1

原创 python 连接mysql数据库, django源代码演示

本代码演示了在django环境中,操作mysql 进行数据库查询

2022-03-11 15:08:36 1078

原创 windows新增功能,右键cmd运行

右键,cmd

2022-03-02 16:32:36 137

原创 sc指令创建服务

sc create mysql binPath=“C:\phpStudy\PHPTutorial\MySQL\bin\mysqld.exe” Type=share Start=autonet start mysqlsc create quntool binPath=“C:\wwwroot\www.quntool.com\quntool\quntool.exe” Type=share Start=auto

2021-08-07 15:18:47 301

原创 centos rc.local设置开机启动

centos rc.local设置开机启动rc.local添加一句:sh /root/time.shtime.sh#!/bin/shdate>>/root/a.txtnohup /root/http9566 80 2>&1 &不调用systemctl stop|start|restart|status *** 这个指令的情况下,上面几句就可以完成开机启动了...

2021-05-25 17:20:15 1426

原创 刷某网站新贴,呵呵哒

刷某网站新贴,呵呵哒import os,sys,typesimport time,requests,jsonfrom selenium import webdriverfrom bs4 import BeautifulSoupdef gettime(): return time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))HOSTURLS = []def HostLoc(): try: url = "https:/

2021-05-11 11:06:56 64

原创 刷某网站新贴,呵呵哒

刷某网站新贴,呵呵哒import os,sys,typesimport time,requests,jsonfrom selenium import webdriverfrom bs4 import BeautifulSoupdef gettime(): return time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))HOSTURLS = []def HostLoc(): try: url = "https:/

2021-05-11 11:06:13 365

原创 C# httpget

usingSystem.Net;usingSystem.Web;publicstaticstringHttpGet(stringUrl){try{System.Net.WebRequestwReq=System.Net.WebRequest.Create(Url);//Gettheresponseinstance....

2021-02-12 15:08:13 448

原创 mongo指令第二弹

db.phone.find().skip(0).limit(5).sort({"natural":1}).pretty();db.collection.update(<query>,update的查询条件,类似sqlupdate查询内where后面的。<update>,update:update的对象和一些更新的操作符(如$,$inc...)等,也可以理解为sqlupdate查询内set后面的{...

2021-02-12 15:06:14 137

原创 正则表达式用法c#

publicstaticstringReplaceHtmlTag(stringhtml,intlength){stringstrText=System.Text.RegularExpressions.Regex.Replace(html,"<[^>]+>","");strText=System.Text.RegularExpressions.Regex.Replace(strText,"&[^...

2021-02-12 15:04:27 96

原创 JS常用遍历指令,有了它,整个网络都是你的

//遍历所有A元素javascript:varv=document.getElementsByTagName('a');varr;for(vari=0;i<v.length;i++){r=r+v[i].href+'\r\n';}alert(r);//遍历a标签javascript:varv=document.getElementsByTagName("a");varr="";for(vari=0;i<v.length;i++){if(v[i].classNa...

2021-02-12 15:02:53 247

原创 mongoDB常用指令3

菜鸟留下的菜建立索引:db.baidu.ensureIndex({"phone":1});db.baidu.indexes.find();db.c1.find({x:{'$exists':true},b:{'$exists':true},attr:2});db.phone.find({"139xy.reg":{'$exists':false}});db.phone.find({"139xy.reg":"1"});db.baidu.find({"baidu.s...

2021-02-12 14:58:05 140 2

原创 MongoDB安装步骤

1.添加环境变量D:\mongodb\bin2.启动mongod--pathd:\mongodb\db--port=270003.设置配置文件D:\mongodb\bin\mongodb.conf(这个名字不能改,否则呵呵)#数据库目录dbpathdd:\mongodb\db#日志目录logpath=D:\mongodb\log\mongo.log#日志写出logappend=true#是否授权noauth=true#默认端口port...

2021-02-12 14:55:47 93

原创 lua环境下post上传图片~

local sz = require("sz")local http = require("szocket.http")function create(im) local file = io.open(im,"rb") local files="" if file then files = file:read("*a") file:close() end local response_body = {} loc

2021-02-11 15:03:46 1809

原创 Fiddler拦截数据包

import System;import System.Windows.Forms;import Fiddler;// INTRODUCTION//// Well, hello there!//// Don't be scared! :-)//// This is the FiddlerScript Rules file, which creates some of the menu commands and// other features of Fiddler. You can e

2021-01-19 09:45:20 1381

原创 golang开发的http服务器,这个是终极版了!

package mainimport ( "crypto/md5" "fmt" "io" "log" "net/http" "os" "path/filepath" "strconv" "strings" "time" "path" "bufio")const ( TYPE_json = 1 TYPE_text = 2)const tpl = `<html><head> <title>上传文件</title&gt

2020-11-12 12:01:05 251

原创 GO语言开发的http简单服务器,可上传,下载

package mainimport ( "crypto/md5" "fmt" "io" "log" "net/http" "os" "path/filepath" "strconv" "strings" "time")const ( TYPE_json = 1 TYPE_text = 2)const tpl = `<html><head> <title>上传文件</title></head>.

2020-08-14 14:57:20 472

原创 一个IP实现开多个小机VPS的连接,Windows下端口转发,以实现远程端口3389

我是做服务器租用的,今天遇到一个客户,他说要租用我的机器开小机,我说可以啊,然后他说默认只有3个IP,我想开5个虚拟机,IP不够怎么办?我于是就给他出了一下方法,方法1:使用win的自带工具实现:在服务器A执行如下CMD命令,建立端口转发规则192.168.1.200:13389 ==> 192.168.137.2:3389netsh interface portproxy add v4tov4 listenaddress=192.168.1.200 listenport=13389 con

2020-07-31 15:13:01 5640

原创 go语言给图片加上水印

package mainimport ( "fmt" "image" "image/draw" "image/jpeg" "image/png" "os" "strings")func PathExists(path string) (bool, error) { _, err := os.Stat(path) if err == nil { return true,...

2019-11-27 18:00:55 913

原创 java火星文

import java.util.regex.*;import java.util.Random;public class Test { public static void main(String args[]) { String txt = convert("这是我的第一个Java Application 程序!", 2); System.out.print(txt);...

2019-03-30 20:05:16 7073

原创 java正则表达式

import java.util.regex.*;import java.util.Random;public class Test { public static void main(String args[]) { String txt = "[a5x.net]{1}学{1}习{1}网{1}大{1}家{1}赶{1}快{2}来{2}学{8}!{a}"; //System....

2019-03-29 19:10:08 90

转载 go交叉编译arm上的程序

Golang 支持交叉编译,在一个平台上生成另一个平台的可执行程序,最近使用了一下,非常好用,这里备忘一下。Mac 下编译 Linux 和 Windows 64位可执行程序 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build main.go CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build ...

2018-08-18 05:31:48 13260 5

原创 福利:go语言开发的sock5代理服务器

package mainimport ( &quot;io&quot; &quot;log&quot; &quot;net&quot; &quot;strconv&quot;)func main() { log.SetFlags(log.LstdFlags | log.Lshortfile) l, err := net.Listen(&quot;tcp&quot;, &a

2018-08-15 09:25:05 2365 2

原创 福利:go语言开发的HTTP代理服务器

package mainimport ( "fmt" "io" "io/ioutil" "log" "net/http" "os")func handler(w http.ResponseWriter, r *http.Request) { var ( resp *http.Response

2018-08-15 09:22:57 1936 1

原创 python 百度获取关键字图片

import requestsimport osfrom myinfo import *def getPages(keyword, pages): params = [] for i in range(30, 30 * pages + 30, 30): params.append({ 'tn': 'resultjson_com', ...

2018-08-01 16:50:42 319

转载 并发下常见的加锁及锁的PHP具体实现代码

&lt;?php/** * CacheLock 进程锁,主要用来进行cache失效时的单进程cache获取,防止过多的SQL请求穿透到数据库 * 用于解决PHP在并发时候的锁控制,通过文件/eaccelerator进行进程间锁定 * 如果没有使用eaccelerator则进行进行文件锁处理,会做对应目录下产生对应粒度的锁 * 使用了eaccelerator则在内存中处理,性能相...

2018-08-01 14:45:44 1142

原创 python 多线程

 import os,sys,time,json,timeimport socket,random,hashlibimport requests,configparserimport json,refrom datetime import datetimefrom multiprocessing.dummy import Pool as ThreadPooldef scan_p...

2018-07-31 13:06:51 243

原创 python 快速文件对比

import os,sys,time,json,timeimport socket,random,hashlibimport requests,configparserimport jsonfrom datetime import datetimefrom multiprocessing.dummy import Pool as ThreadPoolarr={};def rea...

2018-07-25 14:26:30 804

原创 python 下载图片完整版本

import os,sys,time,json,timeimport socket,random,hashlibimport requests,configparserimport json,refrom datetime import datetimefrom multiprocessing.dummy import Pool as ThreadPooldef getpicur...

2018-07-25 14:23:59 1013

原创 python 从url中提取文件名

import osurl = 'http://www.**.net/images/logo.gif'filename = os.path.basename(url)print(filename) 

2018-07-25 14:07:13 13505 4

原创 python 正则表达式-提取图片地址

别问我为什么要导入那么多头文件,我不会告诉你是为了满足我所有欲求! import os,sys,time,json,timeimport socket,random,hashlibimport requests,configparserimport json,refrom datetime import datetimefrom multiprocessing.dummy imp...

2018-07-25 14:03:50 13747 4

原创 VC++显示图片:

VC++显示图片:  2天的学习,48小时终于搞定了, 简单说一下,最初本来是要用vc显示图片的, dc.draw(...); 就解决了, 随着项目的进展,图片需要保存, dc.selectobject(&bmp); savebmp(bmp, "c:\a.bmp"); 本想这样就完成了呗,后来发现转PDF需要用JPG 那么好了

2014-10-14 16:16:02 4366

转载 DLL注入 之线程劫持

  大家好,我是FISH ,以下代码只是属于思路,都是我自己KEY进去的,有错误很抱歉,我尽量注意,  内容来自Greg hoglund 的> .    给应用程序注入新的代码,最常用的技巧是DLL注入,使用这个方法,可以让远线程加载到你自己设计的DLL. DLL本身的功能可以是挂钩函数,修改目标程序的内存空间,DLL注入是很隐藏,很方便的注入手段,(实际上,该方法很容易被发现,有

2009-04-03 10:51:00 2788 1

sockscap代理软件

windows环境下的代理软件,支持SOCKS4 , HTTP 等代理 代理服务器第三方支持软件,功能强大的SOCKS调度,使用它就可以让8100、169用户达到使用163的效果,是8100、169用户的理想工具! 由美国 NEC USA, Inc. 公司出品的代理服务器第三方支持软件。拥有功能强大的 SOCKS 调度,使用它就可以让 169 用户达到使用 163 代理的要求,通过它几乎可以让所有基于 TCP/IP 协议的软件象 ICQ、MUD、FTP、IE、NEWS……都能通过 Socks 代理服务器连接到 Ineternet,甚至是代理猎手还可以通过它去搜索 163 的代理服务器,是 169 用户的理想工具!169必备!

2018-08-15

HOOK小监督

缘起: 此工具源于自己做事情走神,用于来提醒自己的,在设定的时间内如果没有动键盘表示在偷懒,系统就提示; 使用到的技术: HOOK :SetWindowsHookEx 读写配置:WritePrivateProfileStringA 多线程技术:CreateThread 使用方法: 将EXe.exe和Hook.dll复制到没有空格的目录,点击exe.exe设定时间间隔,点击定时提醒即可,时间到了就用主板喇叭报警

2018-07-12

WIN764位驱动加载免签名

WIN764位驱动加载免签名

2015-02-17

VC++自动绘制表格和输出文字

VC++自动绘制表格和输出文字, //函数功能:给定指定原点输出文字 //参数start_x,start_y,text分别为原点坐标x,y和文本的内容 void CDrawDlg::MyDrawText(int start_x,int start_y,CString text,int txtStyle) { CDC* pdc = GetDC(); CFont mfont; pdc->SetBkMode(TRANSPARENT); CRect mrect; GetClientRect(mrect); //pdc->FillRect(mrect,NULL); //pdc->GetViewportOrg(mrect.Width()/2,mrect.Height()/2); mfont.CreateFont(-14,-7,0,0,100,0,0,0,DEFAULT_CHARSET,OUT_DEFAULT_PRECIS,CLIP_DEFAULT_PRECIS,DEFAULT_QUALITY,FF_ROMAN,"宋体"); pdc->SelectObject(&mfont); pdc->SetTextColor(RGB(255,0,0)); pdc->TextOut(start_x,start_y,text); 。。。。。。

2014-03-12

delphi簡體转繁体,繁体转简体 支持DELPHI7 DELPHI2009

delphi簡體转繁体,繁体转简体 支持DELPHI7 DELPHI2009 网络上的童鞋有发布,但是我的这个版本支持UNICODE,ansi版本 D7 ,D9通用

2014-03-12

XMLHTTP实现HTTPS+post登录

前几天群里有个朋友问我怎么登录BAIDU,我们一看是HTTPS登录,郁闷了, 因为HTTPS传输是加密的,用抓包软件都看不到任何明文,加密有的是128bit,有的更高, 一直登录HTTPS都是用的模拟填写表单的方式,朋友说要用发包的方式登录,有些傻眼, 然后看到XMLHTTP可以模拟发送HTTPS的数据包,于是便有了以下函数 //构造数据包 strcat(buf,"tpl_ok=&next;_target=&tpl=mn&skip;_ok=&aid;=&need;_pay=&need;_coin=&pay;_method=&u=http://"); strcat(buf,MySpace_URL); //这里是登录成功之后要跳转的空间地址 strcat(buf,"/&return_method=get&more;_param=&return;_type=&psp_tt=0&password;="); strcat(buf,MySpace_Pass); //登录密码 strcat(buf,"&safeflg=0&username;="); strcat(buf,MySpace_User); //登录用户名 strcat(buf,"&verifycode;="); //访问 XmlHttp(MyLogin_URL,"POST",buf);

2012-03-06

dnsmgr.dll

装DNS的时候出现一个dnsmgr.dll 没法找到,好不容易找到,故在此提供给大家!

2011-11-23

dnsmgmt.msc

装DNS的时候出现一个dnsmgmt.msc没法找到,好不容易找到,故在此提供给大家!

2011-11-23

安装DNS的所需要的所有文件包

装DNS的时候出现一个所有文件没法找到,好不容易找到,故在此提供给大家!

2011-11-23

C:\Documents and Settings\Administrator\桌面\临时代码\API拦截教程.rar

对于程序员来讲,API拦截技术是一种重要的基础技术。这项技能为编写某些工具软件提供了可能,并可以大大提高我们对第三方应用程序的控制能力。不过,目前 API 拦截的技术资料往往局限于原理方面的论述,对于如何具体地编译一个 API 拦截程序却守口如瓶。毕竟,对于程序员来讲,当初学习这项技能花费了不少心血,如果让他们无偿地奉献出来,恐怕不太现实;另外的一个因素就是竞争,多一个人学会这项技能,就多一份竞争。我在掌握这项技能的时候,就走了不少弯路,如果当初有一份详细的资料,这些不必要的弯路是完全可以避免。而这正是我编写这份技术资料的目的。 要学习 API 拦截技术,您需要以下知识: C/C++ 相关知识 VC 编译器的使用方法。在本技术资料中,将主要以 VC7 编译器作为范例,对于 VC6 编译器也同样适用。 dll 的相关知识。关于 dll,很多书都有详细的讲解,在此我推荐《Windows 核心编程》一书。这本书关于 dll 的讲解非常详细到位,是一本不可多得的好书。在技术资料中,我会简单地讲述一下与 API 拦截相关的 dll 知识。 API 拦截程序分为 2 个部分,一个是 exe 程序,这是一个外壳程序。另外一个是 dll 程序,dll 中包含有 API 拦截模块,我们通过 Windows 挂钩的方法将 dll 注入到目标程序中去。 在这份技术资料的编写过程中,难免会有这样那样的不足之处。如果您有什么意见与建议,请通过 email 与我联系:[email protected] ,非常期待您的来信。

2011-02-07

文件映射示例-FISH制作

//创建映射 SERVER做的动作 procedure TForm1.Button1Click(Sender: TObject); begin if HMap = 0 then begin HMap := CreateFileMapping(INVALID_HANDLE_VALUE, nil, PAGE_READWRITE, 0, 4 * 1024, 'MemorySharedFile'); if HMap=0 then TS('试图建立成功'); end; {我觉得单个功能的文件映射更能够让使用者快速的掌握,希望看了我的例子对你有帮助!} //================================================= 代码里面有一处提示错误,特此更正一下 if HMap = 0 then begin HMap := CreateFileMapping(INVALID_HANDLE_VALUE, nil, PAGE_READWRITE, 0, 4 * 1024, 'MemorySharedFile'); if HMap=0 then TS('试图建立失败‘); end;

2010-08-13

DELPHI+ASP+ACCESS网络验证

DELPHI+ASP+ACCESS网络验证

2010-03-31

VB+ASP+ACCESS网络验证

VB+ASP+ACCESS网络验证 代码精简一目了然; 懒人可以不用修改直接用

2010-03-31

VS2005驱动编译环境配置[动画]

这个是我花好几个小时做出来的,绝对不是骗人的, 适合VS2003,2005,2008,2010都按照此方法设置,装了WDK不想要任何第三方辅助软件,直接编译

2010-03-31

VC远程屏幕控制源码

這是我無意中在網上找到的一個古董,2000年的東東,當時分塊就能做到這個程度,可以說我們很多人都很慚愧。 這個是用C SDK開發的,雖然不是用Delphi開發,但對大家還是有幫助的,要求各位有點SDK基礎了。

2010-03-31

Debug view 最新完美汉化版

Debug view 最新完美汉化版, SYSINTERNALS SOFTWARE LICENSE TERMS These license terms are an agreement between Sysinternals (a wholly owned subsidiary of Microsoft Corporation) and you. Please read them. They apply to the software you are downloading from Systinternals.com, which includes the media on which you received it, if any. The terms also apply to any Sysinternals * updates, * supplements, * Internet-based services, and * support services for this software, unless other terms accompany those items. If so, those terms apply. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. If you comply with these license terms, you have the rights below. 1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices. 2. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Sysinternals reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not: * work around any technical limitations in the binary versions of the software; * reverse engineer, decompile or disassemble the binary versions of the software, except and only to the extent that applicable law expressly permits, despite this limitation; * make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; * publish the software for others to copy; * rent, lease or lend the software; * transfer the software or this agreement to any third party; or * use the software for commercial software hosting services. 3. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. 4. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. 5. SUPPORT SERVICES. Because this software is 揳s is,?we may not provide support services for it. 6. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. 7. APPLICABLE LAW. a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. 8. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. 9. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED 揂S-IS.? YOU BEAR THE RISK OF USING IT. SYSINTERNALS GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, SYSINTERNALS EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 10. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM SYSINTERNALS AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. This limitation applies to * anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and * claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. It also applies even if Sysinternals knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French. Remarque : Ce logiciel 閠ant distribu?au Qu閎ec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran鏰is. EXON蒖ATION DE GARANTIE. Le logiciel vis?par une licence est offert ?tel quel ? Toute utilisation de ce logiciel est ?votre seule risque et p閞il. Sysinternals n抋ccorde aucune autre garantie expresse. Vous pouvez b閚閒icier de droits additionnels en vertu du droit local sur la protection dues consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit?marchande, d抋d閝uation ?un usage particulier et d抋bsence de contrefa鏾n sont exclues. LIMITATION DES DOMMAGES-INT蒖蔜S ET EXCLUSION DE RESPONSABILIT?POUR LES DOMMAGES. Vous pouvez obtenir de Sysinternals et de ses fournisseurs une indemnisation en cas de dommages directs uniquement ?hauteur de 5,00 $ US. Vous ne pouvez pr閠endre ?aucune indemnisation pour les autres dommages, y compris les dommages sp閏iaux, indirects ou accessoires et pertes de b閚閒ices. Cette limitation concerne : * tout ce qui est reli?au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et * les r閏lamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit?stricte, de n間ligence ou d抲ne autre faute dans la limite autoris閑 par la loi en vigueur. Elle s抋pplique 間alement, m阭e si Sysinternals connaissait ou devrait conna顃re l掗ventualit?d抲n tel dommage. Si votre pays n抋utorise pas l抏xclusion ou la limitation de responsabilit?pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l抏xclusion ci-dessus ne s抋ppliquera pas ?votre 間ard. EFFET JURIDIQUE. Le pr閟ent contrat d閏rit certains droits juridiques. Vous pourriez avoir d抋utres droits pr関us par les lois de votre pays. Le pr閟ent contrat ne modifie pas les droits que vous conf鑢ent les lois de votre pays si celles-ci ne le permettent pas.

2010-02-16

Vs2008+wdk7600开发环境搭建.txt

Vs2008+wdk7600开发环境搭建,让你快速学会驱动编程的环境设置

2010-02-16

Windows驱动编程基础教程

Windows驱动编程基础教程,绝对的入门教程

2009-08-12

易语言最新收集700模块

易语言最新收集700模块,涵盖各个功能,

2009-08-12

e语言利用POSt发包源码,可做扫号软件,速度巨快

e语言利用POSt发包源码,可做扫号软件,速度巨快

2009-08-12

我们来看看怎么获取COOKIES 然后就是怎么修改

我们来看看怎么获取COOKIES 然后就是怎么修改 if not Webbrowser1.Busy then //这句代码的意思是 我简略讲一下好了 如果 浏览器非忙碌时 就做。。。。

2009-08-12

VC++用于获取文件大小的四种方法

VC++用于获取文件大小的四种方法,很齐全哟~

2009-08-12

TrueCrypt加密工具

TrueCrypt可以将真是空间虚拟成磁盘,加密,目前还没有发现有人能逆向或者是破解

2009-08-12

rfc1928:SOCKS V5中文版

本备忘录状态 本文档讲述了一种Internet社区的Internet标准跟踪协议,它需要进一步进行讨论和建议以得到改进。请参考最新版的 “Internet正式协议标准” (STD1)来获得本协议的标准化程度和状态。本备忘录的发布不受任何限制。 知识背景 这个备忘录描述了从同一协议的前一版本(版本4[1])发展而来的一个协议。这个新的协议起源于当前的一些讨论和原 型的实现(active discussions and prototype implementations)。关键的贡献人有:Marcus Leech: Bell-Northern Research, David Koblas: Independent Consultant, Ying-Da Lee: NEC Systems Laboratory, LaMont Jones: Hewlett- Packard Company, Ron Kuris: Unify Corporation, Matt Ganis: International Business Machines。 1. 介绍 利用网络防火墙可以将组织内部的网络结构从外部网络如INTERNET中有效地隔离,这种方法在许多网络系统中正 变得流行起来。这种防火墙系统通常以应用层网关的形式工作在两个网络之间,提供TELNET、FTP、SMTP等的接 入。随着越来越多的使全球信息查找更容易的复杂的应用层协议的出现,有必要提供一个通用框架来使这些协议安 全透明地穿过防火墙。而且在实际应用中还需要一种安全的认证方式用以穿越防火墙。这个要求起源于两个组织的 网络中客户/服务器关系的出现,这个关系需要得到控制并要求有安全的认证。 在这儿所描述的协议框架是为了让使用TCP和UDP的客户/服务器应用程序更方便安全地使用网络防火墙所提供的服 务所设计的。这个协议从概念上来讲是介于应用层和传输层之间的“中介层

2009-04-22

sock5代理服务器 http .ftp等

sock5代理服务器 http .ftp等

2009-04-22

ASCII转16进制工具分享

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="CompanyName.ProductName.YourApp" type="win32"/> <description>Your application description here.</description> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*"/> </dependentAssembly> </dependency> </assembly>

2008-10-29

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除