Configuring Kali Machine

Slides:



Advertisements
Similar presentations
© 2004 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Installing and configuring Debian.
Advertisements

By: Lloyd Albin 9/28/2012. We are not talking about a Raspberry Pie.
Hacking Techniques & Intrusion Detection Ali Al-Shemery arabnix [at] gmail.
Hacking WRT54G with Linux Presentation Prepared By:Dan Scarberry TJ Dziedzinski Jeremy Leung 2114.
Software installation Chapter 7. Software installation Numerous software options Usually free Open source Several sources Installation CD Websites sourceforge.net.
Computer System Laboratory
One to One instructions Installing and configuring samba on Ubuntu Linux to enable Linux to share files and documents with Windows XP.
MCDevOps Infrastructure In One Hour. Sponsors Improving Enterprises Software Development.
Copyright© 2003 Avaya Inc. All rights reserved Upgrade to Communication Manager 2.0 with Migration to Linux 8.0 Purpose: This presentation was prepared.
Kernel Development using Virtualization Installing VMWare and using a virtual machine to build and test a Linux Kernel.
bWAPP – Bee Bug – Installation
Lab How to Use WANem Last Update Copyright 2011 Kenneth M. Chipps Ph.D. 1.
ARP Under Abnormal Conditions. Experiment with the browser (1) arp -n # see what it there Open a browser on your personal workstation browse to
MODULE 6: UPGRADING UNIDESK COMPONENTS. Agenda Downloading and unpacking the bits Preparing the environment MA and MCP Upgrades Updating the VIA Broker.
Internet of Things with Intel Edison Compiling and running Pierre Collet Intel Software.
Drupal Jumpstart Information Systems 337 Prof. Harry Plantinga.
A Practical Guide to Fedora and Red Hat Enterprise Linux Unit 8: Installing Software in Linux Chapter 13: Downloading and Installing Software By Fred R.
EMT 2390L Lecture 6 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts.
CIS 90 - Lesson 15 Lesson Module Status Slides – Properties - Flash cards – No-stress quiz – Web calendar summary – Web book pages – Commands – Lab – done.
Vagrant workflow Jul. 15, 2014.
Petteri Soininen Juhana Kraemer Jussi Vähämäki ”Group PJJ”
Installing Applications in FreeBSD lctseng. Computer Center, CS, NCTU 2 Before we start  Permission issue root: the super user Like administrator in.
Intro Web Applications Andrew Benson – ScottyLabs – CrashCourse F14.
Configuring Drupal Information Systems 337 Prof. Harry Plantinga.
Manifold Lab 1 Setting the environment Compiling/running programs.
Installing CUDA, PyCUDA on Ubuntu
Your EC2 Instance. How to Connect to your EC2 Instance?
Chapter 7: Using Network Clients The Complete Guide To Linux System Administration.
Installing git In Linux: sudo apt-get install git In Windows: download it from run the setuphttp://git-scm.com/download/win.
Ns2 Installations and Basics Abdul Razaque. How to install Ubuntu on windows-7 & 8 Download the Ubuntu ISO file. You can get the ISO file from the Ubuntu.
WordPress and Etherpad with BlueMix and Docker. Our aim is to run on BlueMix containers (now in beta) these two famous services In the BlueMix dashboard,
PRESENTED BY ALI NASIR BITF13M040 AMMAR HAIDER BITF13M016 SHOIAB BAJWA BITF13M040 AKHTAR YOUNAS BITF13M019.
1 Policy Based Systems Management with Puppet Sean Dague
Penetration Testing Scanning
Online Canon Printer Support & Customer Services
Web Application Penetration Testing ‘17
IoT 101 with Raspberry Pi and Azure
Install external command line softwares
Installing & COnfiguring the thingworx for Manufacturing DEMO FACTORY & SIMULATOR Milan Thakker IoT Manufacturing Specialist 5/10/2017.
Get Me Started! Setting up a development setup
ECE 544: Middlebox lab Abhigyan Sharma.
CONTENT MANAGEMENT SYSTEM CSIR-NISCAIR, New Delhi
Employee clicks on fake
Labs – Installing a FTP Server
Automatized Update & Upgrade for POVClientS.
Machine Learning Workshop
The Linux Operating System
Ubuntu Working in Terminal
ECE544: Software Assignment 3
How to Download, Install, and Update AVG Antivirus?
VPN-Implementation Using UBUNTU OS and OpenVPN and Hamachi in client-server environment. By Ruphin Byamungu, Kusinza United States International University-Nairobi.
INSTALLING AND SETTING UP APACHE2 IN A LINUX ENVIRONMENT
The Linux Command Line Chapter 16
Intro to Ethical Hacking
Internet-of-Things (IoT)
Embedded Software Development with Python and the Raspberry Pi
SimpleITK Setup and Schedule
University of Texas Rio Grande Valley Systems Administration CSCI 6175
PuTTY Download Putty from:
LAB 9 – INTRUSION DETECTION AND PREVENTION SYSTEMS
Acknowledgement Content from the book:
Intro to WSL KW-LUG Presentation Epoch jasoneckert.net.
Install MySQL Community Server and MySQL Workbench
Reverse Engineering for CTFs
Hadoop Installation Fully Distributed Mode
VirgoStaging Status F.Carbognani, S. Cortese, E. Pacaud.
Fetching datasets from the Internet
Hacking Linux and MacOS
Setting up a Webcam on a Raspberry Pi
Presentation transcript:

Configuring Kali Machine Web Application Penetration Testing ‘17

Configuring Kali Machine Let’s Configure our Kali Machine fully to perform a pentest.

Updating & Upgrading Kali linux >> sudo apt-get update >> sudo apt-get upgrade

Installing gedit >> apt-get install gedit

Changing Hostname >> gedit /etc/hostname Change Kali to “specified hostname”. >>gedit /etc/hosts

Testing Internet Access Ping <target> Ex. Ping www.google.com If host is up, it will reply with the packets, else packets will be dead. It will connect to the host only and only if you are on active connection.

Installing Nessus Download Nessus Package - http://www.tenable.com/products/nessus-home/ >> dpkg –I <file path> Start Nessus >> /etc/init.d/nessusd start Open url https://kali:8834 Login to Nessus.

Installing Ming C Compiler >> apt-get install mingw-w64

Installing Hyperion >> wget http://nullsecurity.net/tools/binary/Hyperion-1.2.zip >> unzip Hyperion-1.2.zip >> i686-w64-mingw32-c++ Hyperion-1.2/Src/Crypter/*.cpp -o hyperion.exe

Installing Etherape >> apt-get install etherape

Installing The Backdoor Factory git clone https://github.com/secretsquirrel/the-backdoor-factory /opt/the- backdoorfactory cd the-backdoor-factory ./install.sh

Some Custom Scripts by Cheetz git clone https://github.com/cheetz/Easy-P.git /opt/Easy-P git clone https://github.com/cheetz/Password_Plus_One /opt/Password_Plus_One git clone https://github.com/cheetz/PowerShell_Popup /opt/PowerShell_Popup git clone https://github.com/cheetz/icmpshock /opt/icmpshock git clone https://github.com/cheetz/brutescrape /opt/brutescrape git clone https://www.github.com/cheetz/reddit_xss /opt/reddit_xss

THANKS