Sunday, 9 March 2014

How to make a wordlist in BackTrack 5

No comments :

How to make a wordlist in BackTrack 5

Crunch is a wordlist generator where you can specify a standard character set or a character set you specify. crunch can generate all possible combinations and permutations.




Features
  • crunch generates wordlists in both combination and permutation ways
  • it can breakup output by number of lines or file size
  • now has resume support
  • pattern now supports number and symbols
  • pattern now supports upper and lower case characters separately
  • adds a status report when generating multiple files
  • new -l option for literal support of @,%^
  • new -d option to limit duplicate characters see man file for details
  • now has unicode support
Run it..
Go to Applications->BackTrack->Privilege escalation->Password attacks->Offline attacks->crunch
Usage
./crunch 6 8 abc123! -o wordlist.lst
To produce passwords that contain only a b c 1 2 3 ! and have length between 6 and 8 characters.

Read More

Saturday, 8 March 2014

Information Gathering Using Backtrack Tool Goofile

No comments :

Information Gathering Using Backtrack Tool Goofile

Goofile 

This is a cool little tool that comes packaged with Backtrack but also can be downloaded from http://code.google.com/p/goofile/downloads/list
The Goofile tool can search for a specific file in a given domain. The little but powerful tool was written in python by Thomas Richards at www.g13net.com.

Goofile can be found in Backtrack under Applications | Backtrack | Information Gathering | Web Application Analysis | Open source Analysis or you can open a terminal windows and enter the following command:

 cd /pentest/enumeration/google/goofile



To conduct a search using the tool Goofile you only need to type the following command in a terminal:


./goofile.py -d "domain" -f "filetype" (PHP,PDF,TXT)

"./goofile" is used to invoke the goofile python script. "-d" switch is used to specify the target domain to be searched "-f" switch is used to specify which type of files you want goofile to attempt to locate. 










Read More

Friday, 28 February 2014

National Portal Of India Hacked

No comments :

Few Days Back,Official Website of National Portal Of India ( india.gov.in ) was hacked and defaced by a very well known Hacktivist Group calling themselves ZHC ( ZHackingCompanyCew ),
ZHC mostly hacks India TLD's in order to record their protest about Kashmir and brutality of Indian Army,
Well ZHC uploaded/created a content on the website possibly they weren't able to shell the targeted server,the uploaded/created content link was "http://india.gov.in/content/zhc-was-here" which is now deleted but the hackers have made a Mirror on Zone-h which is the most popular hacktivism archive,
you can find the Mirror HERE 

Want to notify your hacks or want us to make a news?
Send your hack details on rOOt3r.py@gmail.com
Read More

Thursday, 27 February 2014

Installing LAMP in Ubuntu

No comments :

Hi Friends,
Well I was searching on Google software's that relate like xampp or wamp for Ubuntu Linux Based OS,
So i found LAMP ( Linux Apache Mysql Php ),LAMP is an open source web development that use Linux Operating System,And It's really a Cool one and not so heavy in size so let's install it on our Ubuntu,Am Installing it on my Ubuntu 12.04 LTS (Precise) so Good Luck :D

STEPS :

1) Most Important :D boost/open up your "terminal" window,

2) Now first of all we are going to download/install "Apache" we can install it easily by just typing command
"sudo apt-get install apache2"
And hit enter,after few minutes it will automatically install apache on our Ubuntu,to check if it's really installed or not open your browser and type "localhost" in search bar and it will say/show something like this



it means Apache is successfully installed now let's move on,

3) Now we will going to Install "PHP 5" as a Server Side Scripting,you can install/download it on your Ubuntu by just entering the following command
"sudo apt-get install php5 libapache2-mod-php5"
Now let's check if PHP installed or not
we will going to create a simple PHP file open up your "terminal" and type "sudo gedit /var/www/test.php" it will open Gedit now write the following codes in the file : "<?phpinfo() ?>" without quotes and save it now open "localhost/test.php" if you get your phpinfo file there this means PHP is successfully installed and yeah we have setup our own working server :D

thanks for reading if you are facing any problem drop a comment below don't forget to give your feedback. 
Read More

Installing Python 2.6-dev in Ubuntu 12.04 LTS

No comments :


Hello Friends,

This Tutorial Will guide you on that how to install Python 2.6 or python2.6-dev in Ubuntu 12.04 LTS (Precise),
While using some tools in Ubuntu we required specific packages in order to operate them
I had consumed alot of time in order to figure that problem out :D
but the solution was easy well,
when we try to install python2.6-dev using terminal by this command
"sudo apt-get install python2.6-dev"
We got error something like "E: Unable to locate package python2.6-dev
E: Couldn't find any package by regex python2.6-dev
"

SOLUTION :

1) Open your terminal

2) Just Add a PPA to your repository by using command
"sudo add-apt-repository ppa:fkrull/deadsnakes"
3) After adding a PPA to your Repository just run the following command to download Python
"sudo apt-get install python2.6 python2.6-dev"
And Voila Problem Resolved if still you are having problems just ping a comment Below thanks for reading.
Read More