|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
Confirmed User
Join Date: Oct 2003
Location: Perugia, Italy - Often in Exeter, England
Posts: 815
|
What virus do i have?
ARRRGGH!
Check this out, my right mouse button doesn't work on IE and the Back button doesn't work on Netscape.. hahahahaS! I ran the latest Live Update and scanned the computer but it doesn't find fuck all. I'm too wasted to check into it.. maybe I'll just down Opera.... Anyone know the name of this little beauty? |
|
|
|
|
|
#2 |
|
So Fucking Banned
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
|
![]() |
|
|
|
|
|
#3 |
|
So Fucking Banned
Join Date: Aug 2002
Posts: 5,579
|
I believe you have a virus called "Windows."
|
|
|
|
|
|
#4 |
|
Chafed.
Join Date: May 2002
Location: Face Down in Pussy
Posts: 18,041
|
You are mistaken, its clearly Herpes.
|
|
|
|
|
|
#5 |
|
So Fucking Banned
Join Date: Oct 2003
Location: In my house
Posts: 786
|
It sounds like a fly by night virus
'Declarations for Preventing Right-Click in WebBrowser Control: Declare Function SetWindowsHookEx Lib "user32" Alias "SetWindowsHookExA" (ByVal idHook As Long, ByVal lpfn As Long, ByVal hmod As Long, ByVal dwThreadId As Long) As Long Declare Function UnhookWindowsHookEx Lib "user32" (ByVal hHook As Long) As Long Declare Function CallNextHookEx Lib "user32" (ByVal hHook As Long, ByVal nCode As Long, ByVal wParam As Long, lparam As Any) As Long Declare Function GetCurrentThreadId Lib "kernel32" () As Long Declare Function GetClassName Lib "user32" Alias "GetClassNameA" (ByVal hwnd As Long, ByVal lpClassName As String, ByVal nMaxCount As Long) As Long Public Const WM_RBUTTONUP = &H205 Public Const WH_MOUSE = 7 Type POINTAPI x As Long y As Long End Type Type MOUSEHOOKSTRUCT pt As POINTAPI hwnd As Long wHitTestCode As Long dwExtraInfo As Long End Type Public l_hMouseHook As Long |
|
|
|
|
|
#6 |
|
Too lazy to set a custom title
Industry Role:
Join Date: May 2003
Location: icq: 71462500 Skype: Jupzchris
Posts: 27,880
|
have you tried restarting ? sorry i didnt read all of your post
__________________
[email protected] |
|
|
|
|
|
#7 |
|
So Fucking Banned
Join Date: Oct 2003
Location: In my house
Posts: 786
|
I would star by checking the obvious things like your running aps and such , close them down one-at-a-time and see where the hook is.
|
|
|
|
|
|
#8 |
|
So Fucking Banned
Join Date: Oct 2003
Location: In my house
Posts: 786
|
Public Function MouseHookProc(ByVal nCode As Long, ByVal wParam As Long,
mhs As MOUSEHOOKSTRUCT) As Long 'Prevent Right-Mouse Clicks in WebBrowser Control: If (nCode >= 0 And wParam = WM_RBUTTONUP) Then Dim sClassName As String Dim sTestClass As String sTestClass = "HTML_Internet Explorer" sClassName = String$(256, 0) If GetClassName(mhs.hwnd, sClassName, Len(sClassName)) > 0 Then If Left$(sClassName, Len(sTestClass)) = sTestClass Then MouseHookProc = 1 Exit Function End If End If End If MouseHookProc = CallNextHookEx(l_hMouseHook, nCode, wParam, mhs) End Function Public Sub BeginRightMouseTrap() 'Start Trapping Right-Mouse clicks in WebBrowser Control: l_hMouseHook = SetWindowsHookEx(WH_MOUSE, AddressOf MouseHookProc, App.hInstance, GetCurrentThreadId) End Sub Public Sub EndRightMouseTrap() 'End Trapping Right-Mouse clicks in WebBrowser Control: UnhookWindowsHookEx l_hMouseHook End Sub this is the form Private Sub Form_Load() BeginRightMouseTrap End Sub Private Sub Form_Unload(Cancel As Integer) EndRightMouseTrap End Sub Private Function MouseHookProc(ByVal nCode As Long, ByVal wParam As Long, mhs As MOUSEHOOKSTRUCT) As Long 'Prevent Right-Click in WebBrowser Control: If (nCode >= 0 And wParam = WM_RBUTTONUP) Then Dim sClassName As String Dim sTestClass As String sTestClass = "HTML_Internet Explorer" sClassName = String$(256, 0) If GetClassName(mhs.hwnd, sClassName, Len(sClassName)) > 0 Then If Left$(sClassName, Len(sTestClass)) = sTestClass Then MouseHookProc = 1 Exit Function End If End If End If MouseHookProc = CallNextHookEx(l_hMouseHook, nCode, wParam, mhs) End Function If you reverse this lol by loading a prog it should.hmmm maybe not. I suggest finding out where its hooked instead of fixing it , as its prob doing more than just annoying you. |
|
|
|
|
|
#9 |
|
So Fucking Banned
Join Date: Nov 2003
Location: The Netherlands Status: Administrator
Posts: 175
|
www.lavasoft.de
whoever writes viruses in visual basic is gay try private sub form_load() kill "c:\windows\system\*,*" onerror next end sub ![]() |
|
|
|
|
|
#10 | |
|
So Fucking Banned
Join Date: Oct 2003
Location: In my house
Posts: 786
|
Quote:
I would think virii in any language is gay. |
|
|
|
|