NTLM PPROXY client的实现(C source code)

时间:2012-04-05 12:53:38
【文件属性】:
文件名称:NTLM PPROXY client的实现(C source code)
文件大小:25KB
文件格式:ZIP
更新时间:2012-04-05 12:53:38
NTLM client source code HTTP PROXY中NTLM的客户端的C源代码。包含相关的DES等算法在内。Base64的算法,是通过网上共产主义获取,MD4,MD5,HMAC MD5的算法是RFC中提供的,其余的可以根据下面链接的步骤进行编写。我提供一个源代码的例子。其中arith_开头的相关算法,httppc_ntlm是 NTLM的type1、type2、type3消息的应答构成,test_httppc_connect是一个测试的例子,里面没有main函数,但是另外构造一个main函数,在wei_set_proxy_info之后,调用wei_httppc_connect就可以了。详细见http://blog.csdn.net/flowingflying/archive/2009/03/03/3952796.aspx 有朋友说少了头文件,我查了一下,不好意思,少了md.h。请参考下面。 /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All rights reserved. License to copy and use this software is granted provided that it is identified as the "RSA Data Security, Inc. MD4 Message-Digest Algorithm" in all material mentioning or referencing this software or this function. License is also granted to make and use derivative works provided that such works are identified as "derived from the RSA Data Security, Inc. MD4 Message-Digest Algorithm" in all material mentioning or referencing the derived work. RSA Data Security, Inc. makes no representations concerning either the merchantability of this software or the suitability of this software for any particular purpose. It is provided "as is" without express or implied warranty of any kind. These notices must be retained in any copies of any part of this documentation and/or software. */ #ifdef __cplusplus extern "C" { #endif #ifndef WEI_MD_H #define WEI_MD_H #ifndef IN #define IN #endif #ifndef OUT #define OUT #endif /************************************ 算法:MD4和MD5 *********************************/ //从RFC1320 The MD4 Message-Digest Algorithm的附录 //从RFC1321 The MD5 Message-Digest Algorithm的附录 /* PROTOTYPES should be set to one if and only if the compiler supports function * argument prototyping.The following makes PROTOTYPES default to 0 if it has not * already been defined with C compiler flags. */ #ifndef PROTOTYPES #define PROTOTYPES 0 #endif /* POINTER defines a generic pointer type */ typedef unsigned char * POINTER; /* UINT2 defines a two byte word */ typedef unsigned short int UINT2; /* UINT4 defines a four byte word */ typedef unsigned long int UINT4; /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.If using PROTOTYPES, * then PROTO_LIST returns the list, otherwise it returns an empty list. */ #if PROTOTYPES #define PROTO_LIST(list) list #else #define PROTO_LIST(list) () #endif /* MD4 context. */ typedef struct { UINT4 state[4]; /* state (ABCD) */ UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ unsigned char buffer[64]; /* input buffer */ } MD4_CTX; void MD4Init PROTO_LIST ((MD4_CTX *)); void MD4Update PROTO_LIST ((MD4_CTX *, unsigned char *, unsigned int)); void MD4Final PROTO_LIST ((unsigned char [16], MD4_CTX *)); /* MD5 context. */ typedef struct { UINT4 state[4]; /* state (ABCD) */ UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ unsigned char buffer[64]; /* input buffer */ } MD5_CTX; void MD5Init PROTO_LIST ((MD5_CTX *)); void MD5Update PROTO_LIST ((MD5_CTX *, unsigned char *, unsigned int)); void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *)); #endif #ifdef __cplusplus } #endif 因为我没有认真地打包封装,而是从我的一个project中抽出了,有些遗漏,请大家原谅。今天又有网友来问PRIVATE在哪里定义。因为代码不在手头的机器上,没法仔细看,PRIVATE的定义如下 #define PRIVATE 定义为空,这是模仿C++的private,说明这个函数不会被其他文件引用,只用于本文件。 最近又收到网友的来信,说少了几个util文件。这个是不在ntlm的算法中,而是在验证例子test_httppc_connect.cpp中使用。查了一下,我确实没有放到网上。汗啊,因为验证例子是从某个程序中抽取出来,里面包含一个很简单的http的解析。我本来想update资源,没有找到 update的方法。需要说明的是这部分和真正的算法没有直接关系。放在这里,太长了,如果需要的网友,请到http://blog.csdn.net/flowingflying/archive/2009/03/03/3952796.aspx 那里下载。
【文件预览】:
ntlm_src
----arith_ntlm_session_v2.c(2KB)
----arithmetic.h(2KB)
----test_httppc_connect.cpp(12KB)
----test_httppc_connect.h(646B)
----httppc_ntlm.cpp(12KB)
----arith_ntlm_v1.c(2KB)
----arith_nt_hash.c(991B)
----arith_lm_hash.c(2KB)
----httppc_ntlm.h(4KB)
----md4.c(9KB)
----hmac_md5.c(3KB)
----md5.c(11KB)
----arith_base64.c(4KB)
----arith_des.c(9KB)
----arith_util.c(855B)
----arith_ntlm_v2.c(3KB)

网友评论

  • 非常好,感谢
  • 可以使用,感谢
  • 跟官网上的一样,不知道为什么还要积分分享
  • 没有用到,但是感谢分享。
  • 真是很好的东西,非常感谢分享。
  • 经过修改,可以穿透NTLM验证
  • 经过修改,可以穿透NTLM验证,多谢分享
  • 太好了,刚好需要
  • 代码相当不错,很全面很详实,如果能更加明确接口和使用方法,就更好了
  • 很不错,已通过认证
  • 可以使用,省了好多劲,感谢
  • 非常好的程序,作者写的文章也很详细
  • 非常好的程序,比较实用.
  • 经过修改,可以穿透NTLM验证,多谢分享
  • 好东西,现在需要这个功能。正没头绪了!
  • 非常好的程序,比较实用.
  • 非常好的程序,比较实用,修改后可以使用
  • 很实用的代码,可以稍加修改以便通过server 的NTLM 验证
  • 呵呵,非常好的代码,很实用,稍微修改一下就能在很多方面应用
  • 实用,采用这段代码,成功通过了公司proxy的认证,推荐
  • 非常好的程序,比较实用,网上很少有类似SMB/NTLM的例子。