Showing posts with label backtrack. Show all posts
Showing posts with label backtrack. Show all posts

Thursday, September 29, 2016

Basic Backtrack For Newbie Dummies

Basic Backtrack For Newbie Dummies


Once the installation of BackTrack is done, the default username and password required to log in are root / toor.NOTE: You will not be able to see the password as you type it.After you are logged in you can start the GUI Environment by issuing the startx command.In rare occasions (such as after a VMware tools install, or when using unsupported Video cards), X will refuse to start. If that happens you have several options you can try in order to fix the issue:Reconfiguring the X server package, you can reset (and often fix) Xorg configurations with the following command: root@bt:~# dpkg-reconfigure xserver-xorgIf you are using Backtrack 5 on x64 with KDE you should try the following: root@bt:~# rm /root/.kde/cache-*NOTE: Sometimes you may need to also remove the cache folders in /var/tmp by issuing the following command: root@bt:~# rm -rf /var/tmp/kdecache-*If you haven’t noticed yet BackTrack does not boot with networking by default in order to increase its stealth.We will first set up the networking manually. In the following example we will assume the following addresses and their purpose: IP Address - 192.168.1.112/24 Default Gateway - 192.168.1.1 DNS server - 192.168.1.1In order to set these up we will run the following commands:root@bt:~# ifconfig eth0 192.168.1.112/24root@bt:~# route add default gw 192.168.1.1root@bt:~# echo nameserver 192.168.1.1 > /etc/resolv.confThese settings however will only last until you reboot, so if we want to save them between reboots we need to edit the /etc/network/interfaces file like this:# This file describes the network interfaces available on your system# and how to activate them. For more information, see interfaces(5). # The loopback network interface auto loiface lo inet loopback# The primary network interfaceauto eth0iface eth0 inet static address 192.168.1.112 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255 gateway 192.168.1.1Edit the file as appropriate, then have the network come up automatically at boot time:root@bt:~# update-rc.d networking defaultsroot@bt:~# /etc/init.d/networking restartIn order to get an IP from a DHCP server we can issue the dhclient  command as follows:root@bt:~# dhclient eth0Internet Systems Consortium DHCP Client V3.1.1Copyright 2004-2008 Internet Systems Consortium.All rights reserved.For info, please visit http://www.isc.org/sw/dhcp/Listening on LPF/eth0/00:0c:29:81:74:21Sending on LPF/eth0/00:0c:29:81:74:21Sending on Socket/fallbackDHCPREQUEST of 192.168.1.112 on eth0 to 255.255.255.255 port 67DHCPACK of 192.168.1.112 from 192.168.1.1bound to 192.168.1.112 -- renewal in 37595 seconds.root@bt:~#There is a script to start networking in the /etc/init.d directory which attempts to start every interface listen in /etc/network/interfaces (you can remove the ones you don’t need). To start it issue the following command:root@bt:~# /etc/init.d/networking startAnother way to set up your networking is using the WICD Network Manager, you can find it in the menu:Menu > Internet > Wicd Network ManagerNOTE: Notice that when starting WICD you will get an error: Wicd error.png
In order to get rid of this error you have to reboot Backtrack, than BEFORE starting WICD open up a terminal and type in the following:root@bt:~# dpkg-reconfigure wicdroot@bt:~# update-rc.d wicd defaultsNow after a reboot the error should not occur anymore.As you know Backtrack comes with a default username and password (root/toor) it is IMPORTANT that we change that root password especially when running services such as SSH. We can change the password by issuing the passwd command:root@bt:~# passwd Enter new UNIX password: {enter your new password here } Retype new UNIX password: {enter your new password again} passwd: password updated successfully root@bt:~#BackTrack has various services such as Apache, SSH, MySQL, VNC, etc. They are all disabled by default. To start a service such as SSH, you can use the service init scripts. For example, to start the SSH service:root@bt:~# sshd-generate # Specific to the SSH service - needed to generate SSH keysroot@bt:~# /etc/init.d/ssh startStarting OpenBSD Secure Shell server: sshd.root@bt:~# /etc/init.d/ssh stop Stopping OpenBSD Secure Shell server: sshd.root@bt:~# When using a ssh server for the first time on Backtrack you will need to generate keys:root@bt:~# sshd-generateTo enable a service at boot time, you can use the update-rc.d command, for example, having SSH start at boot time:root@bt:~# update-rc.d -f ssh defaults Adding system startup for /etc/init.d/ssh ... /etc/rc0.d/K20ssh -> ../init.d/ssh /etc/rc1.d/K20ssh -> ../init.d/ssh /etc/rc6.d/K20ssh -> ../init.d/ssh /etc/rc2.d/S20ssh -> ../init.d/ssh /etc/rc3.d/S20ssh -> ../init.d/ssh /etc/rc4.d/S20ssh -> ../init.d/ssh /etc/rc5.d/S20ssh -> ../init.d/sshroot@bt:~#apt-get install  Downloads and all of its dependencies, and installs or upgrades them.apt-get remove [--purge]  Removes and any packages that depend on it. --purge specifies that packages should be purged.apt-get update Updates packages listings from the repo, should be run at least once a week.apt-get upgrade Upgrades all currently installed packages with those updates available from the repo. should be run once a week.apt-get dist-upgrade [-u] Similar to apt-get upgrade, except that dist-upgrade will install or remove packages to satisfy dependencies.apt-cache search  Searches packages and descriptions for .apt-cache show  Shows the full description of .apt-cache showpkg  Shows a lot more detail about , and its relationships to other packages.man apt Will give you more info on these commands as well as many that are in less common usage.dpkg -i  Installs a package file; one that you downloaded manually, for example.dpkg -c  Lists the contents of a .deb file.dpkg -I  Extracts package information from a .deb file.dpkg -r  Removes an installed package named dpkg -P  Purges an installed package named . The difference between remove and purge is that while remove only deletes data and executables, purge also deletes all configuration files in addition.dpkg -L  Gives a listing of all the files installed by . See also dpkg -c for checking the contents of a .deb file.dpkg -s  Shows information on the installed package . See also apt-cache show for viewing package information in the Debian archive and dpkg -I for viewing package information extracted from a .deb file.dpkg-reconfigure  Reconfigures an installed packageman dpkg Will give you more info on these commands as well as many that are in less common usage.Most commands will have what is called a man page (manual page) which can be viewed by typing:root@bt:~# man

Go to link download

Read more »

Tuesday, September 13, 2016

Video BackTrack Tutorial Free Download

Video BackTrack Tutorial Free Download




BackTrack is a Linux-based penetration testing arsenal that aids security professionals in the ability to perform assessments in a purely native environment dedicated to hacking. Regardless if you’re making BackTrack your primary operating system, booting from a LiveDVD, or using your favorite thumbdrive, the pentesting distribution has been customized down to every package, kernelconfiguration, script and patch solely for the purpose of the penetration tester.


BackTrack is intended for all audiences from the most savvy security professionalsto early newcomers to the information security field. BackTrack promotes a quick and easy way to find and update the largest database of security tools collection to-date. Our community of users range from skilled penetration testers in the information security field, government entities, information technology, security enthusiasts, and individuals new to the security community.
Whether you’re hacking wireless,  exploiting  servers, performing a web application assessment, learning, or social-engineering a client, BackTrack is the one-stop-shop for all of your security needs.
Include:
Installing Backtrack 3  Episode 1 – Network Hacking – Arp Poisoning Episode 2 – Wireless Hacking – Cracking WEP Episode 3 – Wireless Hacking – DeAuth Episode 5 –  Lock Picking  – Bump Key Episode 6 – Phone Phreaking – Beige Box Episode 7 – Phone Phreaking/Network Hacking – Sniffing VOIP Episode 8 – Lock Picking – DIY Padlock Shims Episode 9 – Lock Picking – Mult-Disc Combo Locks Episode 10 – Hacking Basics – MD5 Episode 11 – Website Hacking – Sql Injection Episode 12 – Hacking Basics – Backtrack Episode 13 – Website Hacking – XSS Episode 14 – Staying Secure – SSH Tunnel Episode 15 – Modding – Xbox Softmod Episode 16 – Wireless Hacking – Cracking WPA Episode 17 – Triple Boot – Windows, Backtrack, &  Ubuntu Episode 18 – Local Password Cracking Episode 19 – Lock Picking Basics Episode 20 – Ettercap Episode 21 – XSS Tunnel Episode 22 – Playstation 2 Softmod Episode 23 – Cracking WEP Update Episode 24 – Bypass Hotspot’s Access Controls
Underground – Install Backtrack 3 on USB Underground – CSRF(Cross Site Request Forgery) Underground – Alternate Data Streams Underground – Local File Inclusion Underground – Windows Privilege Escalation Underground – Bluetooth Hacking Underground – VMWare Underground – Fix Google Mail Enumerator Underground – Home Made Lock Picks Underground – Downfalls of Anti-Virus Software Part 2 Underground – Downfalls of Anti-Virus Software Underground – Evilgrade Underground – Trojan Basics Underground – Manipulating Windows User Accounts Underground – Combine Files Underground – Password Phishing Underground – Windows SMB Relay Exploit Underground – Application Patching Underground – Metasploit Autopwn Underground – Email Spoofing Underground – Introduction
Extracting Database Information from Information_Schema FPGA MD5 Cracker Arduino ARP Cop Email Injection Ping of Death DNS Spoofing with Virtual Hosts Bypass Cisco Clean Access & Cisco NAC Appliance Dual Boot – Windows & Backtrack Sql Injection Challenge How-to How to use Intel Pro/Wireless 3945ABG in Backtrack 2 Local Privilege Escalation Vulnerability in Cisco VPN ClientDownload : http://www.filesonic.com/file/895186001/bt4-r2.isoor From official Website : http://www.backtrack-linux.org/downloads/http://www.filesonic.com/file/1890873091/Backtrack.Hacking.DVD.Tutorials.part1.rar
http://www.filesonic.com/file/1890938391/Backtrack.Hacking.DVD.Tutorials.part2.rar http://www.filesonic.com/folder/13538271

Go to link download

Read more »