Sunday, May 7, 2017
Friday, April 7, 2017
Network Security
Network Security

Go to link Download
Sunday, December 4, 2016
Network Your Computers
Network Your Computers

It may sound really difficult, but creating a local area network (LAN) is a simple and convenient way of linking two or more computers together in your home or small office. There are many benefits to having a LAN. With your network, you can share a broadband Internet connection, exchange files, and share a single printer between multiple computers.

- Disconnect your broadband modem from the Ethernet NIC on your primary computer and turn it off.
- Ensure that your router is disconnected from the power.
- Attach one of the Ethernet ports from your network router to the computers Ethernet card.
- Then connect the "Internet" port to the port on your DSL modem.
- Power on your modem and wait two minutes.
- Reconnect your router to the power source and test your Internet connection. You may need to program your modem and router with your Internet log-in information to get them working properly.
- Once your equipment is properly installed and your Internet connection is active, turn on all your computers, modems and printers to continue with software setup.

- Log into the primary computer on your LAN as an administrator.
- Click Start> Control Panel> Network and Internet Connections> Network Connections.
- Click Set up a small or home office network in the left pane. Tell the wizard to ignore any disconnected hardware on your computer.
- Click the box next to This computer connects directly to the Internet.
- Select your Internet connection, then name your computer. Name your network WORKGROUP if you will have Vista computers on your LAN. Decide whether you would like file and printer sharing to be on or off. If you are running Windows XP or Vista on your other computers, click Just finish the wizard. However, if your other computers are running an older Windows operating system, click Create a Network Setup Disk.
- Run the Network Setup Wizard on every computer on your network thats running Windows XP.
- Run the Set up a wireless router or access point on every computer on your wireless LAN that is running Windows Vista.
- Ensure that the network name is the same on all computers.
- Click Start> Control Panel> Network and Internet> Network and Sharing Center.
- Select Set up a connection or network and click Set up a wireless router or access point.
- To add a Windows Vista computer to your wireless LAN, click Start> Connect on the computer you wish to add. Select your wireless LAN and click "Add".
- To add a Windows XP computer to the network, click Start and right-click My Computer.
- Select Properties. Select the Computer Name tab and click Change.
- Change the workgroup name to WORKGROUP and restart the computer.
- Once the computer reboots, click Start> Control Panel> Network and Internet Connections> Network Connections.
- Under Network Tasks, click View Available Wireless Networks.
- Select your LAN from the list and select Connect. As in XP, your network name must be the same on all computers.
- Click System Preferences and select the Network icon.
- Select Automatic as the location and Built-in Ethernet. Click Advanced. Select DHCP and click Renew DHCP Lease. Click Apply.
- Go to the Applications folder.
- Click the Utilities folder.
- Double-click the AirPort application in the list. Ensure that the AirPort Base Station is selected and click Continue.
- Give your wireless network a name.
- Enter a secure password in the next window and make a note of it for future reference.
- Click I dont have a wireless network and I want to create one.
- Select a security protocol for connecting to the wireless network. The safest and most secure is WPA or WPA2.
- Select whether your computer is connected directly to a wireless router or to a broadband modem.
- Then select how your computer connects to your broadband Internet connection.
- Click Update.
- Run AirPort on the other computers you would like to put on you wireless LAN.
- Select your network in the pop-up window to connect.
Go to link Download
Friday, November 25, 2016
Ngrep–Grep patterns in Network traffic
Ngrep–Grep patterns in Network traffic
We have got a lot of packet sniffer/analyzer software out there, I am a self confessed Wireshark & Ettercap lover, but still, when it comes to analyzing network traffic from command line in a fast manner, ngrep is my one of my favourites. Written by Jordan Ritter its used to grep traffic patterns from the network interfaces. As per official documentation -
ngrep is a pcap-aware tool that will allow you to specify extended regular or hexadecimal expressions to match against data payloads of packets. It currently recognizes IPv4/6, TCP, UDP, ICMPv4/6, IGMP and Raw across Ethernet, PPP, SLIP, FDDI, Token Ring and null interfaces, and understands BPF filter logic in the same fashion as more common packet sniffing tools, such as tcpdump and snoop.
ngrep runs on Windows & *nix platforms alike and you need WinPCAP to run it since it relies on it.
Once you install it, it by default uses the first interface on your machine, so , make sure to check the detected interfaces by running -
C:UsersRISHABHDesktop>ngrep -L
idx dev
--- ---
1: DeviceNPF_{4D491111-D331-42BC-9A33-98EF8C40D422} (Microsoft)
2: DeviceNPF_{ADBF6AC1-D111-463D-8D99-C58FA1BEF979} (Sun)
3: DeviceNPF_{6F801AE0-CA61-4A6D-B5FF-DCB7CE8FC529} (VMware Virtual Ethernet Adapter)
4: DeviceNPF_{930B6EC8-A5E3-4FFA-B68F-F159FDFC2064} (VMware Virtual Ethernet Adapter)
5: DeviceNPF_{D1999293-A041-4C2A-B63F-5D8B4906000F} (Realtek PCIe GBE Family Controller)
exit
Now for example you want to check out whats going on at port 23 using interface 5
C:UsersRISHABHDesktop>ngrep -d 5 port 23
interface: DeviceNPF_{D1999293-A041-4C2A-B63F-5D8B4906000F} (192.168.1.0/255.255.255.0)
filter: (ip or ip6) and ( port 23 )
exit
0 received, 0 dropped
Piece of cake.. and if you want to filter any website in you are searching for keyword "password" then :
ngrep -d 5 password port 80
Easy aint it ? Ngrep does it all : ] With some complex grep commands , you can become a pcap ninja.
Well, you can
- Download Ngrep from here
- Check out documentation and examples here
- Learn about Wireshark from here
Go to link Download
Monday, October 10, 2016
Network Information Center Tool
Network Information Center Tool
The Network Information Center is a free utility through which you can get information about the network that is connected to your computer and connect to the internet.
Features
- External IP Address: The IP address of your Internet
- Internal IP Address: Internal IP address ( the network)
- Default Gateway: The IP address of Router you are connected
- Physical Address(MAC): The unique physical address (MAC) network card
- Network Interface Card: Information about the network card
You can use PING to check whether remote computer is connected to the internet .If you connect through Wi-Fi and you are connected to a network, but you can not get internet access you can configure the Network Information Center in order to automatically each Refresh this time and notify you automatically when you connect to the internet. This way you save time since then trying to connect manually and the Network Information Center can do this job automatically .
Download : Network Information Center | 212 KB| Freeware |http://www.vag-lab.com/
Go to link Download