farhan879 Posted December 11, 2008 Posted December 11, 2008 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 1Sample Freezer 2Sample Freezer 3Any 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
torels Posted December 11, 2008 Posted December 11, 2008 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
farhan879 Posted December 11, 2008 Author Posted December 11, 2008 (edited) Thanks for your reply, could anyone provide a simpler example? (Thanks for your help torels) Edited December 11, 2008 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
farhan879 Posted December 12, 2008 Author Posted December 12, 2008 (edited) 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 December 12, 2008 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
FireFox Posted December 13, 2008 Posted December 13, 2008 use vb decompiler Hi, Messenger Freezer ? You can use process freezer for that : expandcollapse popupAdlibEnable("_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
Dinosaurr Posted December 13, 2008 Posted December 13, 2008 The freezer freezes someone ELSES msn from being able to logon with that email address. Not your own
Developers Jos Posted December 13, 2008 Developers Posted December 13, 2008 click SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Recommended Posts