Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C++ > "virus" (NOT an actual virus)

Reply
Thread Tools

"virus" (NOT an actual virus)

 
 
Urza9814
Guest
Posts: n/a
 
      09-24-2003
OK, I need a virus type program...my brother's annoying me and keeps
stealing the keyboard from this comp, so I'd like some program that
can be activated and deactivated from this computer (they're
networked) that will either make the keyboard stop working, or eat up
massive amounts of RAM or something to make his game fail ...a blue
screen of death would be ok, but I'd prefer it just make it go
slow...if this type of stuff is banned from the boards, sorry, but it
is my own comp I'm planting this thing on
 
Reply With Quote
 
 
 
 
Casper Bang
Guest
Posts: n/a
 
      09-24-2003
You have got to be kidding!

"Urza9814" <> wrote in message
news: om...
> OK, I need a virus type program...my brother's annoying me and keeps
> stealing the keyboard from this comp, so I'd like some program that
> can be activated and deactivated from this computer (they're
> networked) that will either make the keyboard stop working, or eat up
> massive amounts of RAM or something to make his game fail ...a blue
> screen of death would be ok, but I'd prefer it just make it go
> slow...if this type of stuff is banned from the boards, sorry, but it
> is my own comp I'm planting this thing on



 
Reply With Quote
 
 
 
 
Aggro
Guest
Posts: n/a
 
      09-24-2003
Urza9814 wrote:

> OK, I need a virus type program...my brother's annoying me and keeps
> stealing the keyboard from this comp, so I'd like some program that
> can be activated and deactivated from this computer (they're
> networked) that will either make the keyboard stop working, or eat up
> massive amounts of RAM or something to make his game fail ...a blue
> screen of death would be ok, but I'd prefer it just make it go
> slow...if this type of stuff is banned from the boards, sorry, but it
> is my own comp I'm planting this thing on


You are not talking about virus if you are talking a program that
doesn't spread. Here is an example program that tryis to allocate memory
untill it can't allocate any more and.. something happens, depends on
the OS. This will cause memory leaks, again, depends on the OS how they
are handled.

How to run this program from another computer is off topic here.
How to hide this program (if needed) is off topic here.

This group is for standard C++ language only and this is the best I can
do for you. You can try searching more help from newsgroups that are
related to your platform.

--- Warning, this program might crash your computer. ---
int main()
{
while( 1 )
{
int *p = new int(1000);
}
return 0;
}
----------------

But I must warn you. When I tried similar thing and cheated my sister,
the result was that she was a bit angry and... water + computer = smoke

The best solution for this problem would be to buy a new keyboard.

 
Reply With Quote
 
Ken Stauffer
Guest
Posts: n/a
 
      09-24-2003
Almost any C++ program will do this..

"Urza9814" <> wrote in message
news: om...
> OK, I need a virus type program...my brother's annoying me and keeps
> stealing the keyboard from this comp, so I'd like some program that
> can be activated and deactivated from this computer (they're
> networked) that will either make the keyboard stop working, or eat up
> massive amounts of RAM or something to make his game fail ...a blue
> screen of death would be ok, but I'd prefer it just make it go
> slow...if this type of stuff is banned from the boards, sorry, but it
> is my own comp I'm planting this thing on



 
Reply With Quote
 
Kwan Ting
Guest
Posts: n/a
 
      09-24-2003

"Aggro" wrote:
>
> But I must warn you. When I tried similar thing and cheated my sister,
> the result was that she was a bit angry and... water + computer = smoke
>


ROFL
Way to go, Aggro's sister.


 
Reply With Quote
 
Noah Roberts
Guest
Posts: n/a
 
      09-25-2003
Aggro wrote
> But I must warn you. When I tried similar thing and cheated my sister,
> the result was that she was a bit angry and... water + computer = smoke


If you catch all the smoke sometimes you can put it back in and
everything works ok. It is almost impossible to catch it all though.

 
Reply With Quote
 
Urza9814
Guest
Posts: n/a
 
      10-11-2003
sry this is a bit late...but no, I'm not...lol...he's got the keyboard
at the moment...this is taking forever to type

"Casper Bang" <> wrote in message news:<3f721dfc$0$54837$. dk>...
> You have got to be kidding!
>
> "Urza9814" <> wrote in message
> news: om...
> > OK, I need a virus type program...my brother's annoying me and keeps
> > stealing the keyboard from this comp, so I'd like some program that
> > can be activated and deactivated from this computer (they're
> > networked) that will either make the keyboard stop working, or eat up
> > massive amounts of RAM or something to make his game fail ...a blue
> > screen of death would be ok, but I'd prefer it just make it go
> > slow...if this type of stuff is banned from the boards, sorry, but it
> > is my own comp I'm planting this thing on

 
Reply With Quote
 
 
 
Reply

Thread Tools

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 Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Actual is not a globally static expression valentin tihomirov VHDL 7 02-17-2004 03:48 PM
Error: Actual is not a globally static expression Steve Harrad VHDL 5 12-22-2003 08:49 PM
Actual Grades are back!!! Deacon MCSD 1 09-18-2003 04:34 PM
Tool survey for syntax for formal => actual eadgbe VHDL 3 09-11-2003 11:37 AM
RealSheets, WillPass, Actual Test, Cramsession? J. C. MCSD 0 09-05-2003 02:53 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57