Did you update FastTrack ?
Hi,
i need help in getting the WebGui of Fasttrack to run.
I can enter the 127.0.0.1:44444 see the page, but when i try to start the Autopwn the terminal gives me this:
Exception happened during processing of request from ('127.0.0.1', 43502)
Traceback (most recent call last):
File "/usr/lib/python2.5/SocketServer.py", line 222, in handle_request
self.process_request(request, client_address)
File "/usr/lib/python2.5/SocketServer.py", line 241, in process_request
self.finish_request(request, client_address)
File "/usr/lib/python2.5/SocketServer.py", line 254, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.5/SocketServer.py", line 522, in __init__
self.handle()
File "/usr/lib/python2.5/BaseHTTPServer.py", line 316, in handle
self.handle_one_request()
File "/usr/lib/python2.5/BaseHTTPServer.py", line 310, in handle_one_request
method()
File "/pentest/exploits/fasttrack/bin/web/ftgui.py", line 627, in do_POST
openviewgci = os.popen2("""xterm -geometry 60x20 -bg black -fg green -fn *-fixed-*-*-*-20-* -T \"Fast-Track HP OpenView CGI Exploit\" -e \"python %s/fast-track.py -c 7 1 %s\" 2> /dev/null""" % (definepath, ipaddr)) #@UnusedVariable
UnboundLocalError: local variable 'ipaddr' referenced before assignment
I dont know, what the problem is, so please, help me!
Did you update FastTrack ?
Back|track giving machine guns to monkeys since 2007 !
Do not read the Wiki, most your questions will not be answered there !
Do not take a look at the: Forum Rules !
Hi sickness,
yes I already updated Fast-Track.
I first tryied to Update it via the Autoupdate-Button within the WebGui, but this diddent work for me, so i tried to use the console. This worked, Fast-Track got updated, but after this i got the "can't open file 'ftgui'"-Error everytime i tried to start the WebGui. So i unistalled Fasttrack and reinstalled it via "apt-get purge fasttrack && apt-get install fasttrack". The Gui is showing up again, but it still doesnt work.
I hope you have an idea what to do.
root@bt:/pentest/exploits/fasttrack# svn up
At revision 415.
Pretty simple.Code:root@bt:/pentest/exploits/fasttrack# python fast-track.py -g **************************************** Fast-Track Web GUI Front-End Written by: David Kennedy (ReL1K) **************************************** Starting HTTP Server on 127.0.0.1 port 44444 *** Open a browser and go to http://127.0.0.1:44444 *** Type <control>-c to exit.. localhost - - [18/Dec/2010 21:43:25] "GET / HTTP/1.1" 200 - localhost - - [18/Dec/2010 21:43:25] "GET /fast_track.css HTTP/1.1" 200 - localhost - - [18/Dec/2010 21:43:53] "GET / HTTP/1.1" 200 - localhost - - [18/Dec/2010 21:43:53] "GET /fast_track.css HTTP/1.1" 200 -
I may have been born with a silver spoon in my mouth but it does not mean I like to be spoon fed.
Hey skinnypuppy,
ok, this works for me now, thanks a lot!
But, what exactly is the difference between my way (uninstall Fasttrack, reinstall Fasttrack, start it via the Startmenu in X) and your way (use svn up, start it via console)? I want to undertand this!![]()
apt is a package manager for Debian based systems.
apt takes a .deb package (generically speaking, a compressed directory that may possibly contain more directories etc.) and either installs, upgrades or removes said .deb package.
svn is a software versioning and a revision control system. svn adds, deletes, merges, or updates directories and or files. Generally svn is more for collaborative efforts for maintaining an application.
Last edited by Archangel-Amael; 12-19-2010 at 01:23 PM.
To be successful here you should read all of the following.
ForumRules
ForumFAQ
If you are new to Back|Track
Back|Track Wiki
Failure to do so will probably get your threads deleted or worse.
Ok, thanks for your guidance!