Results 1 to 3 of 3

Thread: บายพาส Fire Wall

  1. #1
    apegios
    Guest


    บายพาส Fire Wall

    program inject_IE;

    uses Windows, madCodeHook;

    var si : TStartupInfo;
    pi : TProcessInformation;
    begin
    ZeroMemory(@si, sizeOf(si));
    CreateProcessEx(nil, 'C:Program FilesInternet ExplorerIEXPLORE.EXE', nil, nil, false, 0, nil, nil, si, pi, 'dll_IE.dll');
    end.


    //============================================================================================


    DLL...............


    library dll_IE;

    uses Windows, Messages;

    var
    wclass : TWndclass;
    msg : TMsg;
    hinst,khdl : HWnd;



    function WindowProc(hWnd,Msg,wParam,lParam:Longint):Longint; stdcall;

    begin
    Result:=DefWindowProc(hWnd,Msg,wParam,lParam);
    case Msg of
    WM_CREATE: windows.Beep(900,400);
    WM_DESTROY: ExitProcess(hinst);
    end;
    end;



    procedure CreateWND;
    begin

    hInst:=GetModuleHandle(nil);
    with wClass do begin
    Style:=CS_PARENTDC;
    hIcon:=LoadIcon(hInst,'MAINICON');
    lpfnWndProc:=@WindowProc;
    hInstance:= hInst;
    hbrBackground:=COLOR_BTNFACE+1;
    lpszClassName:='klass';
    hCursor:=LoadCursor(0,IDC_ARROW);
    end;
    RegisterClass(wClass);
    khdl:=CreateWindow('klass','Neoclassic',WS_SYSMENU,
    10,10,300,200,0,0,hInst,nil);
    ShowWindow(khdl,SW_SHOWNORMAL);

    while (GetMessage(Msg,khdl,0,0)) do begin
    TranslateMessage(Msg);
    DispatchMessage(Msg);
    end;
    end;



    begin
    CreateWND;
    end.

  2. #2
    Anonymous
    Guest


    Re: บายพาส Fire Wall

    โปรแกรมใช้ทำอะไรเหรอครับ

  3. #3
    apegios
    Guest


    Re: บายพาส Fire Wall

    Delphi เขียนใน Console Application

    ลงตัวนี้ก่อน คอมไพล์
    http://madshi.bei.t-online.de/madCollection.exe


    ลองเปลี่ยนจาก inject ไปที่ IE
    เป็นพวกนี้ก้อได้
    winlogon.exe, services.exe or explorer.exe.


    >

Similar Threads

  1. Replies: 0
    Last Post: 11-03-2010, 03:06 AM
  2. เทคนิค แก้ เปิด - ปิด FIRE WALL ไม่ได้
    By rakcom in forum ทิปหรือเคล็ดลับการคอมพิวเตอร์ต่างๆ
    Replies: 0
    Last Post: 27-09-2009, 09:10 PM
  3. Programmer charged with stealing Wall Street-ware
    By newsbot in forum World Hacking/Security News
    Replies: 0
    Last Post: 07-07-2009, 03:13 AM
  4. คอมพิวเตอร์ Wall-E มาแล้ว!!!
    By Yookung in forum ข่าวสารด้าน IT ใหม่ๆ
    Replies: 0
    Last Post: 16-02-2009, 10:08 PM
  5. Wall Fire Resistant Safes
    By newsbot in forum World Hacking/Security News
    Replies: 0
    Last Post: 15-11-2007, 04:10 PM

Members who have read this thread : 0

Actions : (View-Readers)

There are no names to display.

Members who have read this thread: 0

There are no members to list at the moment.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •