Forum     

Go Back   Digit Technology Discussion Forum > Software > Software Q&A
Register FAQ Calendar Mark Forums Read

Software Q&A Having trouble with software? Find solutions here


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 09-08-2007, 11:27 AM   #1 (permalink)
High without substance...
 
chicha's Avatar
 
Join Date: Sep 2005
Location: dark side of the moon
Posts: 402
Default muhhaa??


this is what i get when i type www.orkut.com.
i use ie. well its not exacty not me, it comes in my unlce's office and he wants that in all the pc's. what is that thing. the proper message is this.
"orkut is banned here you fool, the administrator did not write this, guess who did"

how do i get this mesage on all the pc's.
this event happend only on his pc.
__________________
I am Acrophobic, Entomophobic, Melissophobic. :).
:(
chicha is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 09-08-2007, 11:38 AM   #2 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: muhhaa??

This is some prank virus, if I remember right.
Some such thread is there is there in QnA or Software Troubleshooting section.
mehulved is offline  
Old 09-08-2007, 11:48 AM   #3 (permalink)
High without substance...
 
chicha's Avatar
 
Join Date: Sep 2005
Location: dark side of the moon
Posts: 402
Default Re: muhhaa??

yes i thought so too.
thank you for the info will check that out.
__________________
I am Acrophobic, Entomophobic, Melissophobic. :).
:(
chicha is offline  
Old 09-08-2007, 11:52 AM   #4 (permalink)
"The Gentleman"
 
vish786's Avatar
 
Join Date: Sep 2006
Posts: 1,434
Post Re: muhhaa??

this is the thread to remove the virus.

http://www.thinkdigit.com/forum/show...9&postcount=15
__________________
"The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offense."
- Dijkstra
vish786 is offline  
Old 09-08-2007, 11:54 AM   #5 (permalink)
High without substance...
 
chicha's Avatar
 
Join Date: Sep 2005
Location: dark side of the moon
Posts: 402
Default orkut is banned here fool!!!

"Orkut has been banned here you fool, this is not written by administrators, guess who wrote this"

this is what i get when i type orkut.com. this happend at my place and was gone the next day, now the same has happend at my uncle's office, and he is happey about it. the problem is that he wants the same thing on all the pc's in all his offices.
what is that virus? how do i get it?

it happens only on his pc. i tried blocking that site in the internet options.
he and all the others in his office use IE. plz help
__________________
I am Acrophobic, Entomophobic, Melissophobic. :).
:(
chicha is offline  
Old 09-08-2007, 12:05 PM   #6 (permalink)
mera kutch nahi ho sakta
 
chesss's Avatar
 
Join Date: Oct 2005
Location: Delhi
Posts: 880
Default Re: orkut is banned here fool!!!

http://my.opera.com/krishnan/blog/in...%20you%20fool/
__________________
jin files ka koi server nahi hota unka bittorrent hota hai
chesss is offline  
Old 09-08-2007, 12:57 PM   #7 (permalink)
"The Gentleman"
 
vish786's Avatar
 
Join Date: Sep 2006
Posts: 1,434
Post Re: orkut is banned here fool!!!

removing virus thread is here.

http://www.thinkdigit.com/forum/show...9&postcount=15
__________________
"The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offense."
- Dijkstra
vish786 is offline  
Old 09-08-2007, 01:44 PM   #8 (permalink)
Human Spambot
 
shantanu's Avatar
 
Join Date: Dec 2006
Posts: 2,798
Default Re: orkut is banned here fool!!!

two threads were running , so threads merged !
shantanu is offline  
Old 09-08-2007, 02:56 PM   #9 (permalink)
Right Off the Assembly Line
 
tanvi chaturvedi's Avatar
 
Join Date: Apr 2007
Posts: 21
Default Re: orkut is banned here fool!!!

hw to create this virus thread..
ne idea???
__________________
my desires are my deservance
tanvi chaturvedi is offline  
Old 09-08-2007, 03:03 PM   #10 (permalink)
Wire muncher!
 
infra_red_dude's Avatar
 
Join Date: Nov 2003
Posts: 6,164
Default Re: orkut is banned here fool!!!

Quote:
Originally Posted by tanvi chaturvedi
hw to create this virus thread..
ne idea???
what question is that?
__________________
"The true measure of a man is how he treats someone who can do him absolutely no good."

http://phoenix-ani.blogspot.com
infra_red_dude is offline  
Old 09-08-2007, 08:54 PM   #11 (permalink)
Banned
 
slugger's Avatar
 
Join Date: May 2004
Location: Baudland
Posts: 2,433
Default Re: orkut is banned here fool!!!

Quote:
Originally Posted by tanvi chaturvedi
hw to create this virus thread..
ne idea???
i guess hes askn 4 way 2 script malicious code

dont b a scipt-kiddie d00d, learn it d hard/correct way
slugger is offline  
Old 10-08-2007, 09:53 AM   #12 (permalink)
fannedman
Guest
 
Posts: n/a
Cool Re: orkut is banned here fool!!!

LOL, i never thought someone would want to have my virus..

I must tell you that this is a low level kind of block i.e it is done only at the surface level..

well here's the modified code that should suffice your needs, wrote in a jiffy...

include all the strings that you dont want to appear in the trigger_strings array separated with '?', of course first string is firefox coz autohotkey cant read the edit fields in it...

Code:
#persistent
#notrayicon

trigger_strings=Mozilla Firefox?orkut?youtube?thinkdigit?chip-india
ie_actv=0
settimer,ban,2000

return

ban:
WinGetActiveTitle, ed1
ifwinactive ahk_class IEFrame
{
 ControlGetText,ed2,edit1,ahk_class IEFrame
 ControlGetText,ed3,edit2,ahk_class IEFrame
 ControlGetText,ed4,edit3,ahk_class IEFrame
 ControlGetText,ed5,edit4,ahk_class IEFrame
 ie_actv=1
}

Loop, parse, trigger_strings , ?
{
 ifinstring,ed1,%A_Loopfield%
 {
  close_n_msg(ed1,A_Loopfield)
  break
 }

 if,ie_actv
 {  
  ed=%ed2% %ed3% %ed4% %ed5%
  ifinstring,ed,%A_Loopfield%
   {
   close_n_msg(ahk_class IEFrame,A_Loopfield)
   ie_actv=0
   return
   }
 }
}
ie_actv=0 
return

close_n_msg(wntitle,banned_item)
{
   winclose,%wntitle%
   sleep,100
   ifwinexist,ahk_class #32770
    ControlClick ,x210 y90,ahk_class #32770,,,,NA
   msgbox,262160,%banned_item% IS BANNED,%banned_item% is banned you fool`,Now get back to work`, I'am watching you `r`r                                                     MUHAHAHA!!,30
   return
}
 
Old 10-08-2007, 01:18 PM   #13 (permalink)
ax3
Cool as a CUCUMBAR ! ! !
 
ax3's Avatar
 
Join Date: Dec 2003
Posts: 5,052
Default Re: orkut is banned here fool!!!

either a virus or a GOOD setup by admin .............


many admins in office use this mssg .......... 2 scare ppl ..........
__________________
... W H O T ...
ax3 is offline  
Old 14-11-2007, 08:07 PM   #14 (permalink)
Total Sucker !!!
 
Total Sucker !!!'s Avatar
 
Join Date: Nov 2007
Location: Wherever, but none of your buisness
Posts: 13
Thumbs up Re: orkut is banned here fool!!!

I have really gotta really really really perfect solution for this man well....i accept tht its not ma piece of work i mean i m just givin refferrence what wht goes in tht man so here goes the url :[Windows] FreQuently AsKed ProBlems WITH SoluTions...

its in point no.26!!!
__________________
Kutte ki dum, always tedhi ki tedhi
Total Sucker !!! is offline  
Old 14-11-2007, 08:38 PM   #15 (permalink)
Rubik's Uncle!!
 
Charan's Avatar
 
Join Date: Sep 2004
Location: ಬೆಂಗಳೂರು (Bengaluru)
Posts: 3,791
Default Re: orkut is banned here fool!!!

LOL dude I guess you are in abumping spear .. Please check the last post date when replying to a thread..
__________________
i5 2400 | DH67BL | G.Skill Ripjaw 4 GB | FSP SAGA II 500W | CM 430 Black Elite | MSI R6850 Cyclone PE/OC | XBox 360 Controller | 21.5" Samsung Sync Master 2233 | 4 Mbps @75GB FUP :)
Battlefield 3 Multiplayer Discussion | Battlefield 3 Low Latency Servers List
Charan is offline  
Old 16-11-2007, 06:05 PM   #16 (permalink)
Here Since 2003
 
Indyan's Avatar
 
Join Date: Oct 2007
Location: LOST
Posts: 524
Default Re: orkut is banned here fool!!!

Your virus is more popular than you think. About a month ago I cleaned it from my cousin bros comp. And a couple of week ago I had to remove it from my friends computer!
Indyan is offline  
Old 16-11-2007, 09:07 PM   #17 (permalink)
"The Gentleman"
 
vish786's Avatar
 
Join Date: Sep 2006
Posts: 1,434
Default Re: orkut is banned here fool!!!

lol.... which every system i hav seen, who use pen drive has been infected with this script.
__________________
"The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offense."
- Dijkstra
vish786 is offline  
Old 16-11-2007, 09:22 PM   #18 (permalink)
Gizmo Freak !
 
spitfire's Avatar
 
Join Date: Apr 2007
Posts: 181
Default Re: orkut is banned here fool!!!

the virus can esily be removed....i removed it from one of my friends PC a month ago..
search in yahoo answer by typing "orkut virus" as the search string..
you will get the specific answer..
spitfire is offline  
Old 18-11-2007, 08:18 AM   #19 (permalink)
Right Off the Assembly Line
 
Ankush_is_here's Avatar
 
Join Date: Aug 2007
Posts: 37
Default Re: orkut is banned here fool!!!

go to c drive and type c:\heap41a and now open task manager:>processes and then end process svhost wth adminstrator not wth system,network remember ths.

and than delete all files by peessing shift+delete in heap41a folder.....

restart ur pc
__________________
(¨`·.·´¨)
`·.¸(¨`·.·´¨)Keep
(¨`·.·´¨)¸.·´ Smiling!
`·.¸.·´ Ankush Gupta
Ankush_is_here is offline  
Old 23-11-2007, 05:53 AM   #20 (permalink)
Apprentice
 
Join Date: Mar 2006
Location: Lucknow (U.P)
Posts: 76
Default Re: orkut is banned here fool!!!

found a solution given here:

1. Press CTRL+ALT+DEL and go to the processes tab
2. Look for svchost.exe under the image name. There will be many but look for the ones which have your username under the username
3. Press DEL to kill these files. It will give you a warning, Press Yes
4. Repeat for more svchost.exe files with your username and repeat. Do not kill svchost.exe with system, local service or network service!
5. Now open My Computer
6. In the address bar, type C:\heap41a and press enter. It is a hidden folder, and is not visible by default.
7. Delete all the files here
8. Now go to Start --> Run and type Regedit
9. Go to the menu Edit --> Find
10. Type "heap41a" here and press enter. You will get something like this "[winlogon] C:\heap41a\svchost.exe C:\heap(some number)\std.txt"
11. Select that and Press DEL. It will ask "Are you sure you want to delete this value?", click Yes
12. Now close the registry editor.

Now the virus is gone. But be sure to delete the autorun.inf file
__________________
speedrider - The ultimate
speedrider_100 is offline  
Old 23-11-2007, 02:31 PM   #21 (permalink)
Microsoft MVP
 
Vishal Gupta's Avatar
 
Join Date: Jul 2005
Location: AskVG.com
Posts: 5,173
Default Re: orkut is banned here fool!!!

Are bhai how many times we'll have to give the solution in same thread?

http://www.askvg.com/solution-orkutc...ned-in-system/
__________________
:arrow: http://www.AskVG.com/
Vishal Gupta is offline  
Old 23-11-2007, 07:00 PM   #22 (permalink)
"The Gentleman"
 
vish786's Avatar
 
Join Date: Sep 2006
Posts: 1,434
Post Re: orkut is banned here fool!!!

Quote:
Originally Posted by Vishal Gupta
Are bhai how many times we'll have to give the solution in same thread?

http://www.askvg.com/solution-orkutc...ned-in-system/
you too gave again...
__________________
"The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offense."
- Dijkstra
vish786 is offline  
Old 24-11-2007, 01:33 PM   #23 (permalink)
AFK
 
thewisecrab's Avatar
 
Join Date: Oct 2006
Location: Bombay
Posts: 1,599
Default Re: orkut is banned here fool!!!

This is after u remove orkut virus
Check Out this tutorial posted by "Goobimama" in tutorials
It enables one to block a website in a pc
dunno whether it will work for orkut
but worth a shot
block the websites in your own pc
Plz copy paste if it doesnt work
__________________
Follow me on http://twitter.com/thewisecrab

"This Jen, is the internet"
thewisecrab is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Orkut Is Banned me_ankitroy Internet & WWW 8 31-07-2007 06:25 PM
Google's April Fool vbhagyan Technology News 2 01-04-2007 06:53 PM
Need Help: How to fool Windows??? subratabera Software Q&A 3 22-12-2006 06:38 PM
Cd writer: trying to fool agm_1052001 Hardware Q&A 6 11-08-2006 07:54 PM
STUCK LIKE A FOOL IN NFSU2!!! sahil_blues Gamerz 6 05-06-2005 10:49 AM

 
Latest Threads
- by chris
- by icebags
- by Tenida
- by Who

Advertisement




All times are GMT +5.5. The time now is 11:58 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2