Jump to content

Msn/Windows live messenger Freezer


 Share

Recommended Posts

Hi all, i have a question to ask. Is it possible to code a Msn freezer in AutoIt? I have looked in the help file on TCP,UDP functions etc but i am unsure on how should i code it. Also, i am not making this Msn freezer for hacking purposes, i want to learn on TCP,UDP functions deeper. I have seen some example of freezers but they were made in VB.

Here is some of them:

Sample Freezer 1

Sample Freezer 2

Sample Freezer 3

Any guide, or some rough examples would be greatly appreciated.

Note: I intend to complete this project not for the purposes of hacking but i want to learn TCP etc funtions. Please do not misunderstand.

System task ---> My first GUICalculator v1.0 ---> My version of the calculatorNetZilla 1.0 --> Web browserEmail Sender --> You can Send emails with this without opening a web browser
Link to comment
Share on other sites

Messenger ports (8.0+)

80, 443, 1863 TCP   (For logging in)
7001 TCP e UDP; 9 UDP   (Rete di rilevamento <-- don't know how to translate this... shud be "controlling net" or something similar)
5004, 65535 TCP e UDP; 80, 443, 1863 TCP    (audio & video)
80 TCP; 5004, 65535     (webcam audio)
1025-65535 TCP e UDP    (file transfer)
1503 TCP    (app condivision)
3389 TCP    (remote assistance)
49152, 65535 TCP e UDP  (remote assistance *)
80, 443, 1863 TCP; 1025-65535 TCP e UDP (Games)
* Only in Windows Vista

Cheers

Some Projects:[list][*]ZIP UDF using no external files[*]iPod Music Transfer [*]iTunes UDF - fully integrate iTunes with au3[*]iTunes info (taskbar player hover)[*]Instant Run - run scripts without saving them before :)[*]Get Tube - YouTube Downloader[*]Lyric Finder 2 - Find Lyrics to any of your song[*]DeskBox - A Desktop Extension Tool[/list]indifference will ruin the world, but in the end... WHO CARES :P---------------http://torels.altervista.org

Link to comment
Share on other sites

No one knows? There must be someone out there who knows very well of a funtions on a freezer. Someone please help?

There is a quite number of downloads of the sample freezer. Please do not download just for fun, its only for educational puposes. I will remove the link if its taken advantage.

Edited by farhan879
System task ---> My first GUICalculator v1.0 ---> My version of the calculatorNetZilla 1.0 --> Web browserEmail Sender --> You can Send emails with this without opening a web browser
Link to comment
Share on other sites

use vb decompiler

Hi,

Messenger Freezer ? You can use process freezer for that :

AdlibEnable("_Exit",10000);Exit if problem exists

_ProcessSuspend("msnmsgr.exe")
MsgBox(64,"Freezer","msnmsgr frozen !")
Sleep(8000)
_ProcessResume("msnmsgr.exe")
MsgBox(64,"Freezer","msnmsgr unfrozen !")


Func _Exit()
_ProcessResume("msnmsgr.exe")
Exit
EndFunc

;===============================================================================
; Function Name: _ProcessSuspend / _ProcessResume
; Author(s): The Kandie Man
;===============================================================================
Func _ProcessSuspend($ID)
    $processid = ProcessExists($ID)
    If $processid Then
        $ai_Handle = DllCall("kernel32.dll", 'int', 'OpenProcess', 'int', 0x1f0fff, 'int', False, 'int', $processid)
        $i_sucess = DllCall("ntdll.dll", "int", "NtSuspendProcess", "int", $ai_Handle[0])
        DllCall('kernel32.dll', 'ptr', 'CloseHandle', 'ptr', $ai_Handle)
        If IsArray($i_sucess) Then
            Return 1
        Else
            SetError(1)
            Return 0
        EndIf
    Else
        SetError(2)
        Return 0
    EndIf
EndFunc  ;==>_ProcessSuspend

Func _ProcessResume($ID)
    $processid = ProcessExists($ID)
    If $processid Then
        $ai_Handle = DllCall("kernel32.dll", 'int', 'OpenProcess', 'int', 0x1f0fff, 'int', False, 'int', $processid)
        $i_sucess = DllCall("ntdll.dll", "int", "NtResumeProcess", "int", $ai_Handle[0])
        DllCall('kernel32.dll', 'ptr', 'CloseHandle', 'ptr', $ai_Handle)
        If IsArray($i_sucess) Then
            Return 1
        Else
            SetError(1)
            Return 0
        EndIf
    Else
        SetError(2)
        Return 0
    EndIf
EndFunc  ;==>_ProcessResume
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...