自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 some functions in assembly

show_str:              show_str:;show a string dh=row number,dl=colum number,cl=color,ds:si point to the string              PUSH      AX              PUSH      BX              PUSH      ES           

2006-02-15 18:35:00 1083

原创 write shell code myself

write shell code is a intresting thing, so that let me do it myself!the first vision of it, not a real shell code, but just like it !section .datafilepath db "/bin/shXAAAABBBB"    ; the stringsection

2006-02-12 23:59:00 1247

原创 a hexedit (scoure code)

to write shell code in linux, we always want to see the execute code, so i write a hex edit myself.the flowing is scoure. (it can only view execute code, cant edit it, but i will add it after, if i h

2006-02-12 23:25:00 1244 1

转载 8086/8088汇编语言指令集

数据传送指令集MOV功能: 把源操作数送给目的操作数语法: MOV 目的操作数,源操作数格式: MOV r1,r2MOV r,mMOV m,rMOV r,dataXCHG功能: 交换两个操作数的数据语法: XCHG格式: XCHG r1,r2 XCHG m,r XCHG r,mPUSH,POP功能: 把操作数压入或取出堆栈语法: PUSH 操作数 POP 操作数格式: PUSH r PUSH M

2006-02-12 14:36:00 2156

原创 be carefull in c

#include int arr[]={0,1,2,3,4};#define TOTAL_ELEMENTS (sizeof(arr)/sizeof(arr[0]))int main(int argc,char *argv[]){    int d=-1,x;    if(d     //这里如果是if(d     //because  TOTAL_ELEMENT is unsigned int  

2006-02-12 13:37:00 1038

原创 what is #pragma in c

#pragma 预处理指令详解[转载]在所有的预处理指令中,#Pragma 指令可能是最复杂的了,它的作用是设定编译器的状态或者是指示编译器完成一些特定的动作。#pragma指令对每个编译器给出了一个方法,在保持与C和C ++语言完全兼容的情况下,给出主机或操作系统专有的特征。依据定义,编译指示是机器或操作系统专有的,且对于每个编译器都是不同的。 其格式一般为: #Pragma Para 其中

2006-02-12 13:36:00 953

空空如也

空空如也

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

TA关注的人

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