Tag Archives: hacking
Email harvesting with metasploit | tutorial
Out of the many useful auxiliary modules that metasploit has, one is called search_email_collector which searches google, bing and yahoo for email addresses associated to a particular domain. This is useful in automated information gathering during a penetration test program. The location inside msfconsole is auxiliary/gather/search_email_collector So lets try it out. Launch msfconsole. I am… Read More »
How to Hack Remote Database with Sqlmap
Sqlmap In the previous post on we learnt how to use sqlmap to hack a vulnerable web application and fetch the list of databases, tables, columns and data rows. In this post we shall see how to do some simple fingerprinting on the remote database to find valuable information that can be used to assist… Read More »
How to Scan Network with Nmap – Command Examples
NMAP – Network Mapper Nmap is the most popular (and most featureful) port scanning tool out there. And although it appears like a small port scanning utility, it has a lot of hidden potential to serve as a powerful hacking tool. This is precisely what we shall try to work out in this article. In… Read More »
Tcpdump Tutorial – How to Sniff and Analyse Packets from Commandline
Tcpdump Tcpdump is a commandline network analyzer tool or more technically a packet sniffer. It can be thought of as the commandline version of wireshark (only to a certain extent, since wireshark is much more powerful and capable). As a commandline tool tcpdump is quite powerful for network analysis as filter expressions can be passed… Read More »
How to hack the bsnl router
BSNL now a days is providing a adsl router made by SemIndia Systems and the model names are similar to DNA-A201 or DNA-A211-1. In this article we are going to hack into this router to learn more about it. You might not know that this small and innocent looking modem is actually a “Linux CPU”…. Read More »
Scan the local network with arp-scan on ubuntu
Arp-scan Arp-scan is a commandline utility for linux that can be used to scan the network of a certain interface for alive hosts. It shows the ip address and mac addresses of all the hosts/nodes found. Project website Install on ubuntu $ sudo apt-get install arp-scan The documentation can be found at Usage Quick example… Read More »
Nmap Tutorial – How to Port Scan Remote Hosts
Nmap Nmap (Network Mapper) is the most popular port scanner and network discovery tool used. It can be used to scan a network for live hosts and scan hosts for open ports. Besides port scanning there are many more things that Nmap can do like OS identification, running user scripts etc. It is widely used… Read More »
Proxify applications with tsocks and proxychains on ubuntu
Tsocks There are many network applications that do not have the option to specify a proxy or do not support the use of proxies. In such cases tsocks is a useful tool to wrap all network communication done by a program via a socks proxy. Project website Install on ubuntu $ sudo apt-get install tsocks… Read More »
Install Tor, Vidalia and Polipo on Ubuntu
TOR is an anonymity solution that can be used as a proxy over the internet. Project website Install on Ubuntu $ sudo apt-get install tor vidalia During the installation a configuration screen will come up, asking to select those users who would be using tor. Select the appropriate users on that page and continue. After… Read More »
Using sqlmap with login forms
In a previous article we saw how to use sqlmap to exploit vulnerable urls of the form http://www.site.com/section.php?id=59 where the id parameter for example is vulnerable to sql injection. Now we shall try to do the same thing with forms, especially login forms. Forms often submit data via post, so the sytanx for launching the… Read More »
Sqlmap tutorial for beginners – hacking with sql injection
Tcp Syn flood DOS attack with Hping
Hping Hping is a command line tool that can be used to generate packets on the network for scanning and diagnosis purpose. Its similar to the ping command that generates and sends icmp packets to a remote host to check if its alive or not. But hping has more features. Besides icmp, it can also… Read More »