- 博客(277)
- 资源 (1)
- 收藏
- 关注
原创 注册机偷懒写法4、之调试模式下获取
注册机偷懒写法1、之直接扣代码注册机偷懒写法2、之直接调用源程序的函数注册机偷懒写法3、内联Hook让程序自己弹出注册码注册机偷懒写法4、调试模式下获取这个方法可能会比较通用,编写个简单调试器,调试源程序,从内存或者寄存器中获取注册码。#include<Windows.h>#include<iostream>#include <DbgHelp...
2019-04-17 09:22:59
706
1
原创 注册机偷懒写法3、之内联Hook让程序自己弹出注册码
注册机偷懒写法1、之直接扣代码注册机偷懒写法2、之直接调用源程序的函数注册机偷懒写法3、内联Hook让程序自己弹出注册码注册机偷懒写法4、调试模式下获取找到存储注册码的存储到内存或者寄存器的代码,通过通过修改内存中程序的代码,如弹出messagebox之类#include<Windows.h>#include<iostream>/*找到存储注册码...
2019-04-17 09:18:44
1278
原创 注册机偷懒写法2、之直接调用源程序的函数
注册机偷懒写法1、之直接扣代码注册机偷懒写法2、之直接调用源程序的函数注册机偷懒写法3、内联Hook让程序自己弹出注册码注册机偷懒写法4、调试模式下获取如果程序的算法太复杂,我们搞不定,或者分析时间太长,我们可以尝试将程序加载到注册机程序的内存空间直接通过地址直接调用管算法call,前提call中没有一些需要提前初始的变量,把需要加载的exe的重定位去掉这样就不需要修...
2019-04-17 09:12:34
732
原创 注册机偷懒写法1、之直接扣代码
最近学习破解,暴力破解固然很爽,但有时候不得不写出注册机才行,但是算法的分析有多时候会比整体程序的分析更麻烦更耗时间,所以我就想了一些方法可以避免对汇编算法的细致分析,和大家分享下。注册机偷懒写法1、之直接扣代码注册机偷懒写法2、之直接调用源程序的函数注册机偷懒写法3、内联Hook让程序自己弹出注册码注册机偷懒写法4、调试模式下获取如果不涉及到函数的调用,以及一些前置的动态变量...
2019-04-17 09:06:39
1442
原创 Nasm调用C语言中的printf
helloworld.asm extern printfextern exitsection .data format db "%d"section .textglobal _start_start: push 2 push format call printf ; printf(format, 2) push 0 call...
2018-10-11 13:51:28
1711
原创 贪吃蛇(windows C语言)
#include <stdio.h>#include <malloc.h>#include <time.h>#include <stdlib.h>#include <windows.h>#include <unistd.h>#include <pthread.h>#include <c
2018-09-27 21:19:59
531
原创 C# https双向认证,"请求被中止: 未能创建 SSL/TLS 安全通道"解决办法
最近的项目中用到了调用https的接口的功能,编写出程序后在我自己的电脑上运行没有问题,但是在同事的电脑上和服务上都没有办法正常运行,提示“请求被中止: 未能创建 SSL/TLS 安全通道”,最后在项目经理的帮助下和网上查找了大量的资料,以及做了大量的测试下终于解决了问题,所以想和大家分享下,避免大家像我一样耗费太多时间在这个问题上。首先感谢广大网友的分享的解决方法和项目经理的帮助,否则我可能...
2018-07-09 17:33:33
19277
2
原创 C#实现会员内容的转发
using System;using System.Diagnostics;using System.IO;using System.Net;using System.Text;using System.Threading;namespace Simulation{ class NewWebResponse { private HttpWebResp...
2018-05-26 11:10:13
387
原创 输入一个整数置换相邻位置的数载k步内获取最大值
#include <iostream>using namespace std;int main(){ int num; int k; cin>>num; cin>>k; int len=0; //int类型最长为5,long类型要设为10 int a[5]; //检测输入整数的长度,并将整...
2018-04-05 20:21:07
982
1
原创 C#使用SendMessage获取其他程序的输入框中的值
using System;using System.Collections.Generic;using System.Linq;using System.Runtime.InteropServices;using System.Text;using System.Threading.Tasks;namespace ConsoleApp1{ class Program ...
2018-02-19 13:27:33
10074
原创 sql创建图示
CREATE VIEW SCCAS SELECT sname,cname,score=score+5FROM STUDENTS,COURSES,CHOICESWHERE STUDENTS.SID=CHOICES.SID AND dbo.COURSES.cid=dbo.CHOICES.cid
2015-04-23 16:42:14
834
原创 sql 创建表
USE SchoolCREATE TABLE CHIOCESRESULT(CID CHAR(10),STUDENTS SMALLINT,AVGSCOSE SMALLINT )DROP TABLE CHIOCESRESULT
2015-04-22 09:27:48
628
原创 创建数据库
CREATE DATABASE bbsDB ON PRIMARY(NAME='bbsDB_data',FILENAME='D:\bbsDB_data.mdf' ,SIZE=10MB,MAXSIZE=UNLIMITED,FILEGROWTH=15%) LOG ON(NAME='bbsDB_log',FILENAME='D:\bbsDB_log.ldf' ,SIZE=3MB,M
2015-04-20 18:03:03
598
原创 JAVA登录界面
mywindows.javaimport java.awt.*;import java.io.File;import java.io.FileInputStream;public class mywindows { public static void main(String[] args) { Registerwindows newwindow=new Registerwind
2014-12-17 20:08:35
1246
原创 C++统计英语句子中各个单词出现的次数
#include #include #include using namespace std;int main(){ char str[1000]; int i=0; while((str[i]=getchar())!='\n') { i++; } str[i]='\0'; int num=0,n1[100],n2[
2014-12-13 13:44:36
14386
1
原创 小学生计算机辅助教学系统
随机产生1-10之间的随机正整数,进行四则运算,共十道题,在屏幕上产生算式:6*7=?若正确打印“Good!”如果错误打印“Wrong,Try Again!”但每个题只有三次重做机会,做对一题得十分,根据答题情况输出分数。[输出]学生得分 1 随机数10个,加减乘除,做运算; 2 比较计算结果是否正确; 3 错误 有三次 重做机会;
2014-12-13 13:42:02
5251
1
原创 JAVA门禁系统
Door.javapackage com.handson.sys;public class Door { public final static String OPEN = "门已开启"; public final static String CLOSE = "门已关闭"; private String state = CLOSE; // 电子门状态 private b
2014-12-03 17:14:24
13345
原创 C++二叉树的先序遍历
#include using namespace std;struct BTNode{ char date; BTNode *lchild; BTNode *rchild;};void CreateBTNode(BTNode* &b,char* str){ BTNode* St[sizeof(str)],*p; int to
2014-11-25 09:23:28
1628
原创 C#绘图 正弦曲线
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using Sy
2014-11-20 21:02:29
5325
1
原创 C#DrawString
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namesp
2014-11-20 18:12:01
6596
原创 C#绘图
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namesp
2014-11-20 17:57:45
673
原创 JAVA 窗口应用
package myproject;import java.awt.Dimension;import java.awt.Toolkit;import java.util.Random;import javax.swing.JButton;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.
2014-11-20 13:38:39
841
原创 C#登录窗体与主窗体
using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;namespace WindowsFormsApplication1{ static class Program { /// /// 应
2014-11-14 13:41:47
2263
原创 C++稀疏矩阵的十字链表
#include using namespace std;struct MatNode;struct uni{ int value; MatNode *link;};struct MatNode{ int row; int col; MatNode *right,*down; uni tag;};
2014-11-11 17:21:02
1449
原创 C#字体对话框
namespace WindowsFormsApplication2{ partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; ///
2014-11-09 16:55:04
1003
原创 C#通用对话框(打开,保存)
namespace WindowsFormsApplication1{ partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; ///
2014-11-09 16:43:09
1062
原创 JAVA 异常类
MyExemption.javapublic class MyExemption extends Exception { String message; public MyExemption(){ this.message="你的余额不足!"; }}
2014-11-05 19:23:28
636
原创 C#toolTip应用
namespace WindowsFormsApplication1{ partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; ///
2014-11-01 21:03:09
743
原创 JAVA接口 ,抽象类的应用
Bank.javapublic class NongBank extends Bank implements Commision{ public NongBank(){} public NongBank(double savedMoney,double year,double inRate,double current){ this.savedMoney=savedMoney; t
2014-11-01 17:34:09
561
原创 C#动态图片
namespace WindowsFormsApplication6{ partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; ///
2014-10-30 20:44:08
1134
原创 C#计算器(组合框控件)
namespace WindowsFormsApplication5{ partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; ///
2014-10-30 19:48:17
1738
原创 C#电子时钟(Timper控件)
namespace WindowsFormsApplication3{ partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; ///
2014-10-30 18:52:21
2308
原创 C#控件列表框
namespace WindowsFormsApplication2{ partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; ///
2014-10-30 18:00:04
1185
原创 C#窗体应用(复选框,单选按钮,拖动水平滚动条)
namespace WindowsFormsApplication1{ partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; ///
2014-10-30 16:52:59
3607
原创 C++稀疏矩阵的压缩
#include using namespace std;const int MaxSize=20;struct TupNode{ int r;//行号 int c;//列号 int d;//元素定义};//三元组定义struct TSMatrix{ int rows;//行数 int cols;//列数 int nums;//非零元素
2014-10-29 22:58:17
838
原创 C#文字的复制,剪切,撤销
namespace WindowsFormsApplication1{ partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; ///
2014-10-28 22:47:05
2666
原创 C#按钮应用
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.W
2014-10-25 12:39:37
624
原创 C#文本框实例2
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.W
2014-10-25 11:53:24
1355
原创 C#我文本框实验
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.W
2014-10-24 21:49:29
618
原创 C#窗体应用1
设计一个窗体:该窗体自动位于屏幕中央;大小不可调;最小化、最大化按钮不可用;窗体标题为“烟台大学”。在该窗体上,放置一个按钮、一个标签。单击按钮时,在标签上显示当前系统时间。
2014-10-23 15:27:01
542
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人