Hacking Tools

CutyCapt – A Qt WebKit Web Page Rendering Capture Utility

0

CutyCapt is a small cross-platform command-line utility to capture WebKit’s rendering of a web page into a variety of vector and bitmap formats, including SVG, PDF, PS, PNG, JPEG, TIFF, GIF, and BMP

First download the cutycapt from here

Open your cutycapt from command prompt and type following command

CutyCapt –url=http://www.example.com –out=anyfile.pdf (Convert in PDF Format)

CutyCapt –url=http://www.example.com –out=anyfile.jpg (Convert in Image File)

In Kali Linux

Open your kali linux terminal and type

CutyCapt –url=http://www.example.com –out=anyfile.pdf (To Convert in PDF Format)

CutyCapt –url=http://www.example.com –out=anyfile.jpg (To Convert in Image File)

Netdiscover – Active/Passive ARP Scanner

0

Netdiscover is an active/passive address reconnaissance tool, mainly developed for those wireless networks without dhcp server, when you are wardriving. It can be also used on hub/switched networks. Built on top of libnet and libpcap, it can passively detect online hosts, or search for them, by actively sending arp requests, it can also be used to inspect your network arp traffic, or find network addresses using auto scan mode, which will scan for common local networks

Open your backtrack terminal and type

netdiscover –I eth2 –r 192.168.0.100/24

Usage:

netdiscover [-i device] [-r range | -p] [-s time] [-n node] [-c count] [-f] [-S]

-i device: your network device

-r range: scan a given range instead of auto scan. 192.168.6.0/24,/16,/8

-p passive mode do not send anything, only sniff

-s time: time to sleep between each arp request (miliseconds)

-c count: number of times to send each arp reques (for nets with packet loss)

-n node: last ip octet used for scanning (from 2 to 253)

-S enable sleep time supression betwen each request (hardcore mode)

-f enable fastmode scan, saves a lot of time, recommended for auto

How to use Nmap (Beginner Tutorial)

2

Nmap (“Network Mapper”) is a free and open source (license) utility for network discovery and security auditing. Many systems and network administrators also find it useful for tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime

First Download nmap From Here and install in your pc

How to Detect All Connected PC in Network

nmap -sn 192.168.0.100/24

 

How to Scan Network Exclude a Specific Host

nmap –exclude 192.168.0.108 192.168.0.1/24

 

How to Detect Installed OS in Remote PC

nmap -O 192.168.0.102

How to Scan All TCP Port in All Remote PC

nmap -sT 192.168.0.100/24

 

How to Scan All UDP Ports in Remote PC

nmap -sU 192.168.0.102

How to Scan IP Protocol

nmap -sO 192.168.0.102

 

How to Detect services of Remote PC

nmap -sV 192.168.1.2

 

How to Scan Name Server of Website

nmap -sV -T4 -F www.upscportal.in

DMitry – Deepmagic Information Gathering Tool

0

DMitry (Deepmagic Information Gathering Tool) is a UNIX/(GNU)Linux Command Line program coded purely in C with the ability to gather as much information as possible about a host.

Basic functionality of DMitry allows for information to be gathered about a target host from a simple whois lookup on the target to UpTime reports and TCP portscans.

First Open Your backtrack and Follow these path

Applications->Backtrack–>Information gathering->Network analysis->route analysis->dmitry

./dmitry -w target” will perform a standard named whois lookup

./dmitry -i target” will Perform an Internet Number whois lookup on the target.

./dmitry -n target” will Retrieve netcraft.com data concerning the host, this includes Operating System, Web Server release and UpTime information.

./dmitry -s target” Perform a Sub Domain search on the specified target.

./dmitry -e target Perform a search possible email address
./dmitry –p target Perform a TCP Port scan on a host
 ./dmitry –b target Read in the banner received from the scanned port
Go to Top