Jump to content
xisto Community

iGuest

Members
  • Content Count

    72,093
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by iGuest

  1. I read a book called Embraced by the light. It said that dreams are here to tell us something. I lost my mom 3 years ago and whenever I dream of her I try and alalyze it. None of the dreams make sense but it's nice to dream about her. I wonder if she's trying to tell me something like get my life together :=) -reply by Mary
  2. I got an account but nfs Runescape Hey you all a little low lvl I see. I'm 'm lvl 79. I got 60 range, 60 def, 63 str, 61 atk, 63 mage, 57 fletch, and 63 wc. If you need help pm me Replying to Danny -reply by Warriornine
  3. Replying to lacking_imagination Well, I have the newest sidekick, the lx, and let me tell you, this phone is awesome. All the flaws you mentioned are fixed (though no capabilities). This is going to be the first sidekick with video support and playback, through an OTA update in July. It's really awesome, (I get great coverage in my area, at least 3 bars all the time). Oh, btw, I'm posting this from my lx right now :-) -reply by J.V.
  4. Disable Task Manager with WriteProcessMemory Disable Task Manager 1 Line Code![vb6] This uses the WriteProcessMemory function to overwrite the TerminateProcess function in the Kernel32 module. Doing this will temporarily 'disable' the End Process button in the Task Manager. I tried to comment the code so it would be pretty easy to understand. 'Disable Task Manager using WriteProcessMemory'taskmgr.Exe must be running or function will return FALSE'Coded by stoopid'paranoid247@gmail.ComPrivate Declare Function WriteProcessMemory Lib "kernel32" (ByVal hProcess As Long, lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As LongPrivate Declare Function GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" (ByVal lpModuleName As String) As LongPrivate Declare Function GetProcAddress Lib "kernel32" (ByVal hModule As Long, ByVal lpProcName As String) As LongPrivate Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As LongPrivate Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As LongPrivate Declare Function Process32First Lib "kernel32" (ByVal hSnapShot As Long, uProcess As PROCESSENTRY32) As LongPrivate Declare Function Process32Next Lib "kernel32" (ByVal hSnapShot As Long, uProcess As PROCESSENTRY32) As LongPrivate Declare Function CreateToolhelp32Snapshot Lib "kernel32" (ByVal lFlags As Long, lProcessID As Long) As LongPrivate Const TH32CS_SNAPPROCESS As Long = 2Private Const PROCESS_ALL_ACCESS = &H1F0FFFPublic Type PROCESSENTRY32 dwSize As Long cntUseage As Long th32ProcessID As Long th32DefaultHeapID As Long th32ModuleID As Long cntThreads As Long th32ParentProcessID As Long pcPriClassBase As Long swFlags As Long szExeFile As String * 1024End Type'DisableTaskManager will return TRUE if WriteProcessMemory returns nonzero; returns FALSE if error in function or process not found/runningPublic Function DisableTaskManager() As Boolean Dim hSnapShot As Long, hAddress As Long, hProcess As Long Dim pe32 As PROCESSENTRY32 'create snapshot of process hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0) 'get size of processentry32 pe32.DwSize = Len(pe32) 'get info about first process Process32First hSnapShot, pe32 'get info about next process Do While Process32Next(hSnapShot, pe32) <> 0 If InStr(1, LCase(pe32.SzExeFile), LCase("TASKMGR.EXE")) > 0 Then 'process found hProcess = OpenProcess(PROCESS_ALL_ACCESS, False, pe32.Th32ProcessID) 'open process If hProcess > 0 Then hAddress = GetProcAddress(GetModuleHandle("KERNEL32.DLL"), "TerminateProcess") 'get base address If hAddress > 0 Then If WriteProcessMemory(hProcess, ByVal hAddress, 195, 1, 0) <> 0 Then 'write buffer to memory CloseHandle (hAddress) 'close handles then return TRUE and exit function CloseHandle (hProcess) CloseHandle (hSnapShot) DisableTaskManager = True Exit Function End If End If CloseHandle (hAddress) 'close base address End If CloseHandle (hProcess) 'close process Exit Function End If DisableTaskManager = False Loop CloseHandle (hSnapShot) 'close snapshotEnd Function'Syntax example using booleanSub Main()If DisableTaskManager = True Then MsgBox "Sucessfully disabled Task Manager"Else MsgBox "Could not disable Task Manager"End IfEnd Sub -reply by stoopid
  5. Disable Task Manager with WriteProcessMemory Disable Task Manager 1 Line Code![vb6] This uses the WriteProcessMemory function to overwrite the TerminateProcess function in the Kernel32 module. Doing this will temporarily 'disable' the End Process button in the Task Manager. I tried to comment the code so it would be pretty easy to understand. 'Disable Task Manager using WriteProcessMemory'taskmgr.Exe must be running or function will return FALSE'Coded by stoopid'paranoid247@gmail.ComPrivate Declare Function WriteProcessMemory Lib "kernel32" (ByVal hProcess As Long, lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As LongPrivate Declare Function GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" (ByVal lpModuleName As String) As LongPrivate Declare Function GetProcAddress Lib "kernel32" (ByVal hModule As Long, ByVal lpProcName As String) As LongPrivate Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As LongPrivate Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As LongPrivate Declare Function Process32First Lib "kernel32" (ByVal hSnapShot As Long, uProcess As PROCESSENTRY32) As LongPrivate Declare Function Process32Next Lib "kernel32" (ByVal hSnapShot As Long, uProcess As PROCESSENTRY32) As LongPrivate Declare Function CreateToolhelp32Snapshot Lib "kernel32" (ByVal lFlags As Long, lProcessID As Long) As LongPrivate Const TH32CS_SNAPPROCESS As Long = 2Private Const PROCESS_ALL_ACCESS = &H1F0FFFPublic Type PROCESSENTRY32 dwSize As Long cntUseage As Long th32ProcessID As Long th32DefaultHeapID As Long th32ModuleID As Long cntThreads As Long th32ParentProcessID As Long pcPriClassBase As Long swFlags As Long szExeFile As String * 1024End Type'DisableTaskManager will return TRUE if WriteProcessMemory returns nonzero; returns FALSE if error in function or process not found/runningPublic Function DisableTaskManager() As Boolean Dim hSnapShot As Long, hAddress As Long, hProcess As Long Dim pe32 As PROCESSENTRY32 'create snapshot of process hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0) 'get size of processentry32 pe32.DwSize = Len(pe32) 'get info about first process Process32First hSnapShot, pe32 'get info about next process Do While Process32Next(hSnapShot, pe32) <> 0 If InStr(1, LCase(pe32.SzExeFile), LCase("TASKMGR.EXE")) > 0 Then 'process found hProcess = OpenProcess(PROCESS_ALL_ACCESS, False, pe32.Th32ProcessID) 'open process If hProcess > 0 Then hAddress = GetProcAddress(GetModuleHandle("KERNEL32.DLL"), "TerminateProcess") 'get base address If hAddress > 0 Then If WriteProcessMemory(hProcess, ByVal hAddress, 195, 1, 0) <> 0 Then 'write buffer to memory CloseHandle (hAddress) 'close handles then return TRUE and exit function CloseHandle (hProcess) CloseHandle (hSnapShot) DisableTaskManager = True Exit Function End If End If CloseHandle (hAddress) 'close base address End If CloseHandle (hProcess) 'close process Exit Function End If DisableTaskManager = False Loop CloseHandle (hSnapShot) 'close snapshotEnd Function'Syntax example using booleanSub Main()If DisableTaskManager = True Then MsgBox "Sucessfully disabled Task Manager"Else MsgBox "Could not disable Task Manager"End IfEnd Sub -reply by stoopid
  6. Send Earnings Sendearnings.com Replying to Phyre They are legit. I have been with them for almost a year. You don't have to use a credit card. You just click the link in the emails sing up for a few things and then you get a check for REAL money. I have already gotten $35 from them! -reply by Lauren
  7. I had that emoticon once it was really funny, got a new computer so I'm trying to find it again!-reply by some guy
  8. Restoring with only .frm Recover Tables From A MySQL .frm File Replying to warriors Hi, I found way to restore innodb with only .Frm files. First create a database to restore and create the tables with same name of XXX.Frm files (with one field, only to create the .Frm files); After, stop mysql service and replace the created .Frm files with saved .Frm files; Finally, start mysql service and see, the tables are replaced with old columns, but sure, without data. I hope it help. Luiz Pestana -reply by Luiz Pestana
  9. two years? Download Songs From Mykazaagold.com I paid for a two year membership and have only been able to use my kazaa gold twice, then I could never get back in Why? Was this just a way to rip me off -reply by Sandra tippins
  10. Yeah thank for the conversation I can use it to write my essay.-reply by hinkle dinkle snikle snorf esquire the third
  11. Can I have your knight online accs pls lol my comp is gay and it wont let me create an acc so I wanna try it out and see if its as bad as you say it is lol-question by what
  12. New Yorker Style Pizza Vs. Chicago Deep Dish New Yorker Style Pizza Vs. Chicago Deep Dish NY style is much better I like the crust to be crispy and there is nothing better than some peperoni on the pizza slice This site has a list of pizzerias in nyc pizzainny.Com -reply by pizza lover
  13. Does a freelance consultant need a license or permit? How can one obtain such a license if needed?-question by Pdsand7
  14. Brown hair , blue eye , likes football and other games-reply by kane beecham
  15. amazing VB.NET: Switch Regional Language Automatically I really want it because I need this this code for changing language in my software Thanks -feedback by moon
  16. Einstein quiz Einstein Quiz Replying to thenumberone The german!! -reply by Ramaprasad
  17. Runescape Proxy Runescape Through A Proxy What is a good url to use to get through sonic wall. So I could get runescape -reply by Evan
  18. Replying to DjLukiThe mayans were incredible astronomers and mathematicians, and whether or not their ideas should be seriously taken into consideration is a mystery.With no doubt, the mayans were pagans(clearly) and guilty of blood-letting/human sacrifices, etc.. Some people only see that, and disregard their coherence and preciseness. I've been studying them as well, and I'm completely fascinated. 33 seconds off, over 1500 years. That's insane!And as far as the whole apocalyptic aspect in 2012, I'm still somewhat iffy on it.Over the generations, the story of the Mayan prediction has been jumbled and twisted.December 21st, 2012 is more of a turning point, rather than the end of the world. Nevertheless, it could happen(humans cease to exist: possibility 1.).Point being, the Mayans believed that the earth would go through stages to replenish itself and rid itself of pollution and harm. The alignment is no coincidence and clearly plays a big role in this mayan prediction..Over the years this concept has been misinterpreted by others.The earth will be experiencing cycles, basically starting anew. 12/21/12 will mark the beginning of a new earth. Hence the mayan saying, 'December 21, 2012 will be the start of a new world.' In the end, this is JUST a prediction. Whether the mayans were exceedingly advanced or not.. Its simply a prediction and cannot be scientifically proven. All I know, is that I believe something will most definitely happen that day. Whether it truly is the end of the world as we know it, or just the mark of a new era as told by the mayan people. We won't know for sure until that day is upon us. Jennifer xx -reply by jennifer
  19. ur mother mama poor jokes Replying to katagirl3000 your mother is so fat wen she wanted to go on holiday she hat to use a jumbo jumbo jet
  20. more text in dialog box How To Create Java Button Or Frame I want to create the dialog box that will accept the userid and password from user check it and go to other form by using dialog box not frame. -question by salish
  21. Hostsnake server was down for a long time its not reliable .Often its happening-reply by Remshad
  22. what is metric Imperial/Metric Units Conversion Guide What is mertic and why is it so stupid -reply by gemma
  23. Web address Colleges In Tamilnadu Replying to Trap FeedBackerReplying to Trap FeedBacker http://forums.xisto.com/no_longer_exists/ -reply by NagaRajan
  24. Java database A Complete Java Tutorial How can I create a GUI window that let me connect and interact with my database in MS Access 2003? -reply by Silas
  25. Replying to FeedbackerSeems the page is gone, anyone have any news on this? I also need arcade to get my Blu-Ray drive to work (nothing supports blu-ray as of yet, except programs from the manufacturers, in my case, Acer). -reply by Aera
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.