cmd란게 명령 프롬프트라는거 아시죠? ㅎㅎ


도스명령어가 먹히는곳이에요 윈도우 - 실행 - cmd - 엔터 하시면 나오는거요


cmd창에서 명령을


reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /t REG_SZ /d "www.seryu.woobi.co.kr" /f


ㄴ 이런식으로 cmd창에서 입력하면 직접 레지스트리값 수정 가능합니다


bat파일로 만들어서 레지스트리 몇십개 적용시킬때 유용하게 쓸수있습니다.


예시로든건 IE의 시작페이지를 수정한건데요


reg add "키값" /v "이름" /t 종류 /d "데이터"


입니다


키값은 수정하고자하는 데이터가있는 주소고요..


이름은 데이터의 이름


종류는 데이터의 종류.. 즉 REG_SZ 이나 REG_DWORD 같은거요


데이터는 말그대로 데이터고요 ㅎㅎ


reg add /?


하면 도움말도 나오니까 편합니다


상대방에게 텔넷으로 들어가서 상대방컴 수정해줄수도 잇으니 


유용합니다



배치파일로 만든다 하면


메모장을 열어서


@echo off

reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /t REG_SZ /d "www.seryu.woobi.co.kr" /f


ㄴ 이걸 입력하고


다른이름으로 저장


파일명을 startpage.bat


으로 저장하고


저장한걸 실행하면


바로 적용 됩니다..



이상입니다 ^^*


@echo off

reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "FullScreen" /t REG_SZ /d "yes" /f


Posted by wakira
,

31337157


[ENABLE]

//code from here to '[DISABLE]' will be used to enable the cheat

alloc(newmem,2048)

label(returnhere)

label(originalcode)

label(exit)


newmem: //this is allocated memory, you have read,write,execute access

//place your code here

cmp [ebx+10],1

jne originalcode

fadd dword ptr [ebx+04]

fstp dword ptr [ebp-30]

jmp exit


originalcode:

fsubr dword ptr [ebx+04]

fstp dword ptr [ebp-30]


exit:

jmp returnhere


"Tutorial-i386.exe"+2650C:

jmp newmem

nop

returnhere:



 

 

[DISABLE]

//code from here till the end of the code will be used to disable the cheat

dealloc(newmem)

"Tutorial-i386.exe"+2650C:

fsubr dword ptr [ebx+04]

fstp dword ptr [ebp-30]

//Alt: db D8 6B 04 D9 5D D0












[ENABLE]

//code from here to '[DISABLE]' will be used to enable the cheat

alloc(newmem,2048,"Tutorial-x86_64.exe"+2E0A1) 

label(returnhere)

label(originalcode)

label(exit)


newmem: //this is allocated memory, you have read,write,execute access

//place your code here

cmp [rbx+14],2

je originalcode

addss xmm1,xmm0

movss xmm0,[Tutorial-x86_64.exe+202F70]

jmp exit


originalcode:

subss xmm1,xmm0

movss xmm0,[Tutorial-x86_64.exe+202F70]


exit:

jmp returnhere


"Tutorial-x86_64.exe"+2E0A1:

jmp newmem

nop

nop

nop

nop

nop

nop

nop

returnhere:



 

 

[DISABLE]

//code from here till the end of the code will be used to disable the cheat

dealloc(newmem)

"Tutorial-x86_64.exe"+2E0A1:

subss xmm1,xmm0

movss xmm0,[Tutorial-x86_64.exe+202F70]

//Alt: db F3 0F 5C C8 F3 0F 10 05 C3 4E 1D 00

'Cheat Engine' 카테고리의 다른 글

치트엔진 만들기 (6.2 기반) -4-  (2) 2013.05.26
치트엔진 만들기 (6.2 기반) -3-  (0) 2013.05.26
치트엔진 만들기 (6.2 기반) -2-  (0) 2013.05.26
치트엔진 만들기 (6.2 기반) -1-  (1) 2013.05.26
우회 치트엔진!  (2) 2013.05.26
Posted by wakira
,

W:\Desktop\sub>copy /B image.jpeg + r57shell135.php good.jpeg

image.jpeg

r57shell135.php

        1개 파일이 복사되었습니다.


W:\Desktop\sub>copy /B 3.gif + r57shell135.php 4.gif

3.gif

r57shell135.php

        1개 파일이 복사되었습니다.


W:\Desktop\sub>

Posted by wakira
,