破解Foxit PDF SDK(DLL) 3.1, PDF转换到图片, 去除水印
admin | 破解工具 | 2013-04-07
将PDF转换到图片, 使用Foxit PDF
Foxit PDF SDK(DLL) 3.1最新版本发布了, 使用它的免费版本Render PDF页面到图像的话,会有一个水印。
摸了几个小时,终于将这个水印Crack掉了。
它采用这样一种保护方法:
关键方法实现了正式版和试用版2个版本。
关键方法使用函数指针的方式调用,默认函数地址是试用版函数地址。
fpdfsdk.dll有导出函数FPDF_UnlockDl... [阅读全文]
QT 显示 pdf
admin | 开发问题 | 2013-04-07
Handling PDF
This page discusses various available options for working with Portable Document Format (PDF)[en.wikipedia.org] documents in your Qt application. Please also read the general considerations outlined on the Handling Document Formats page.
Note that this information is collaboratively collected by the community, wi... [阅读全文]
支持64位的ARK工具——PCHunter 1.0(原XueTr)
admin | 开发工具 | 2013-04-07
免费版下载地址: 百度云盘分流下载(速度快) : 本地下载1 本地下载2
专业版(专业版用户请下载后把pchunter.ek这个Key文件放入Exe目录,否则运行白版)下载地址: 百度云盘分流下载(速度快) : 本地下载1 本地下载2
PCHunter官方交流QQ群:168505299
PC Hunter是一款功能强大的Windows系统信息查看软件,同时也是一款强大的手工杀毒软... [阅读全文]
VC6.0 MFC下截取窗口特定部分并保存为bmp图片的类
admin | C++ | 2013-04-04
C++
/*类名称:bmpScreen.h。
; 类功能:提供了一个MFC下截取窗口特定部分并保存为bmp图片的类。
; 类参数:Crect rect, int left, int top, int top, char* name。
; 类参数说明:
; (1)Crect rect 定义截图框的大小。
; (2)int left 定义截图框距截图窗口左边的距离。
; (3)int top 定义截... [阅读全文]
Qt不规则窗体的实现
admin | Qt Gui | 2013-04-04
C++
//shapewidget.h
/*
*@date 2012-11-17
*/
#ifndef __SHAPE_WIDGET_H
#define __SHAPE_WIDGET_H
#include <QWidget>
#include <QMouseEvent>
#include <QPaintEvent>
#include <QPoint>
class ShapeWidget:public QWidget
{
Q_OBJECT
public:
ShapeWidget(QWidget *... [阅读全文]
Get IP by Hostname
admin | net work | 2013-04-04
C++
#include<stdio.h>
#include<stdlib.h>
#include<netdb.h>
#include<arpa/inet.h>
int main(int argc, char **argv) {
struct hostent *host;
char str[100];
char addr[INET_ADDRSTRLEN];
char **p;
int c;
while (1){
c=0;
gets(str);
printf("%s\n",str);
if ... [阅读全文]
ip地址正则表达式测试是否正确
admin | net work | 2013-04-04
C++
#include <sys/types.h>
#include <regex.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
char *test;
/*
int regcomp(regex_t *preg, const char *regex, int cflags);
int regexec(const regex_t *preg, const char *string, size_t nmatch,
... [阅读全文]
raw socket 发送阻断包
admin | net work | 2013-04-04
C++
来源:http://bugkill.01safe.com/thread-207-1-1.html
*int sndpkt_tcp_rst(u32 seq,u32 src_ip, u32 dst_ip, u16 src_prt, u16 dst_prt)
{
static int i=0;
int one=1; /* R.Stevens says we need this variable for the setsockopt call */
int tcphdrlen = sizeof(struct tcphdr);
int iphdrlen = sizeof(str... [阅读全文]
监听发往本机和从本机发出的数据包
admin | 未分类 | 2013-04-04
C++
//head.h
#ifndef _TCP_HEAD_
#define _TCP_HEAD_
typedef struct _tcphdr
{
unsigned short tcp_sport;
unsigned short tcp_dport;
unsigned int tcp_seq;
unsigned int tcp_ack;
unsigned char tcp_lenres;
unsigned char tcp_flag;
u... [阅读全文]
raw socket 发送阻断包
admin | net work | 2013-04-04
C++
来源:http://bugkill.01safe.com/thread-207-1-1.html
*int sndpkt_tcp_rst(u32 seq,u32 src_ip, u32 dst_ip, u16 src_prt, u16 dst_prt)
{
static int i=0;
int one=1; /* R.Stevens says we need this variable for the setsockopt call */
int tcphdrlen = sizeof(struct tcphdr);
int iphdrlen = sizeof(str... [阅读全文]