- 博客(13)
- 资源 (5)
- 收藏
- 关注
原创 合天网安ctf练习
网址:http://www.hetianlab.com/CTFrace.html 1 基础 1) 基础50 下载下来一看是一个二进制文件: 运行不了,于是用 ida打开看看,发现ida没有办法正常解析,但是从二进制数据上看到了端倪,于是用010editer打开看一下: 猜测这就是flag,提交后失败,然后观察是16进制编码,于是用python对其解一下码:
2016-04-22 10:54:20 1370
原创 Android 应用开始界面制作
Android 应用开始界面制作 第一步 : 在layout里面添加一个布局文件, 第二部 : 添加一个activity与此布局文件关联起来 第三步 : 在onCreate里添加如下代码: public class Welcome extends Activity{ @Override protected void
2015-09-02 20:16:06 466
转载 修复关于apache-xampp的问题:Port 443 in use by “vmware-hostd.exe”!
在电脑里装了VMware后,再要装xampp,十有八九就会出现这个问题: 11:23:37 [Apache] Problem detected! 11:23:37 [Apache] Port 443 in use by “vmware-hostd.exe”! 11:23:37 [Apache] Apache WILL NOT start without the
2015-04-16 09:25:02 2278
原创 eclipse下配置PHP开发环境
1.打开eclipse 2.点击 Help -> Install New Software 3.work with :http://download.eclipse.org/tools/pdt/updates/3.3 4.next deng
2015-04-16 08:26:23 557
原创 apktool的使用
APKTOOL的使用 APKTool是GOOGLE提供的APK编译工具,需要JAVA运行环境,推荐使用JDK1.6或者JDK1.7。如果你想对APK文件进行修改, 那么就不可避免的要使用到APKTool。 一.APKTOOL使用环境配置 1.安装JAVA并设置环境变量。 下载安装都很简单,关键是安装完后还需要亲自设置环境变量以方便其他程序能够条用JAVA。以WIN
2015-03-28 13:08:20 792
原创 操作系统 序
从今天开始正式开始学习基于ucore的操作系统,然后,也打算系一系列博客,来记录我的学习,这是第一篇,后面会跟进,, 不过,可能也就自己看看,,供以后再看 哈哈,,开工咯
2015-03-18 17:33:30 473
原创 杭电 1042 N! 大数相乘
Problem Description Given an integer N(0 ≤ N ≤ 10000), your task is to calculate N! Input One N in one line, process to the end of file. Output For each N, output N! in one line.
2014-06-29 08:48:24 890
原创 Energy Conversion
#include using namespace std; int main(){ int T; long long N,M,V,K; cin>>T; while(T--){ int k=0; cin>>N>>M>>V>>K; if(M>=N) k=0 ; else{ if((M
2014-05-17 15:27:49 475
原创 Diff lcs
In computing, diffis a file comparison utility that outputs the differences between twofiles. It is typically used to show the changes between a file and a formerversion of the same file. Diff displ
2014-04-10 00:31:39 1409 1
原创 BBS Party
题目: In every summer there are students graduating from school. Alot of graduating studentswould like to hosttheir parties to say good-bye to their classmates and friends. This kind of activity isca
2014-04-10 00:24:51 675
原创 杭电acm之1106-排序
Problem Description 输入一行数字,如果我们把这行数字中的‘5’都看成空格,那么就得到一行用空格分割的若干非负整数(可能有些整数以‘0’开头,这些头部的‘0’应该被忽略掉,除非这个整数就是由若干个‘0’组成的,这时这个整数就是0)。 你的任务是:对这些分割得到的整数,依从小到大的顺序排序输出。 Input 输入包含多组测试用例,每组输入数据只有一
2014-04-06 23:42:01 959
原创 杭电acm之1516--String Distance and Transform Process
Problem Description String Distance is a non-negative integer that measures the distance between two strings. Here we give the definition. A transform list is a list of string, where each string, exc
2014-04-06 12:14:38 847
原创 蓝桥杯之错误票据
#include #include using namespace std; const int SIZE=100001; int ToInteger(string x){ int num=0; for(int i=0;i<x.size();++i) num=num*10+(int)(x[i]-'0'); return num; } int main(){ int id[SIZE];
2014-04-06 11:15:01 621
java贪吃蛇源码
2014-08-22
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人