Installing Synaptic and Software Center on Backtrack

For those who new in Backtrack or even in Linux. Installing a software must be confusing cause we have to do it in the terminal with it’s black and white interface.

But, since Backtrack is based on Ubuntu, lets install Synaptic and Ubuntu Software Center to make us easier to install software.
First, lets install the Synaptic Package Manager

# apt-get install synaptic

After that.. Continue Reading


Backtrack’s Linux Header

Anyone got problem make or make install a software package on Backtrack?

If that happened, maybe you not yet installed Linux Header or Kernel Header.

Linux headers are the header files used by Linux system to compile the kernel and othe applications which depend on the symbol or structures defined in these header files, or we can say in other word linux header is like kernel modules.
An example can be wlan card drivers. If the driver does not have a binary matching with the running kernel, the driver needs to be compiled with the header file.

To configure Linux-header in order to enable us make and make install a package in Backtrack just follow these simple step.
Continue Reading


Creating Spoiler on Blog

To prevent long post and minimize scrolling, Use this code in your blog to create spoiler

Spoiler:
<div style=”margin: 5px 20px 20px;”>
<div class=”smallfont” style=”margin-bottom: 2px;”><b>Spoiler</b>: <input value=”Open” style=”margin: 0px; padding: 0px; width: 55px; font-size: 11px;” onclick=”if (this.parentNode.parentNode.getElementsByTagName(‘div’)[1].getElementsByTagName(‘div’)[0].style.display != ”) { this.parentNode.parentNode.getElementsByTagName(‘div’)[1].getElementsByTagName(‘div’)[0].style.display = ”; this.innerText = ”; this.value = ‘Close’; } else { this.parentNode.parentNode.getElementsByTagName(‘div’)[1].getElementsByTagName(‘div’)[0].style.display = ‘none’; this.innerText = ”; this.value = ‘Open’; }” type=”button”>
</div>
<div class=”alt2″ style=”border: 1px inset ; margin: 0px; padding: 6px;”>
<div style=”display: none;”>Post Goes Here!! Β πŸ˜€

<br>
</div>
</div>
</div>

That code will make this spoiler.

Spoiler:

Post Goes Here!! Β πŸ˜€

 

Have fun


Site Information Gathering

Ok, next assignment from my sensei.
Perform information gathering on these sites..
is2c-dojo.net
is2c-dojo.com
www.spentera.com

Hmm..
after some time scanning, here’s my result :
1. is2c-dojo.net
First of all, I do nslookup in order to know the original IP of the target. By performing this command I also can get Information about the IP block owned by the target.

# nslookup is2c-dojo.net

here’s the result. Continue Reading


My First Information Gathering

Information Gathering is the first step of hacking/pentesting,
Its purpose is to get as much information on the target system by any means.

Information gathering divided into two :
A. Technical
Technical Information gathering use the tools available actively. Technical information gathering also divided into two more :
1. Active Information Gathering
This technique interact with the target system directly (ex. scanning).
2. Passive Information Gathering
This technique doesn’t interact with the target system directly(ex.googling)
B. Non Technical
This kind of information gathering doesn’t involve the tools available actively (ex. social engineering)
Today, my sensei gave an assignment to perform a network and web information gathering at the network 192.168.0.xxx.
With a few knowledge of the tools used in information gathering I perform some test on the network.
So, here’s my result of the information gathering. Continue Reading