This forum is in archive mode. You will not be able to post new content.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - r33per

Pages: [1]
1
Anonymity and Privacy / Re: Using TOR Browser Bundle BT
« on: September 09, 2012, 01:04:30 PM »
There are risks associated with running things as root, but with BT especially there are some tools that require root permissions if I need to run these along side of TOR for some reason you can't unless you edit the file

2
Anonymity and Privacy / Using TOR Browser Bundle BT
« on: September 09, 2012, 02:12:57 AM »
Backtrack users only have one option when it comes to logging in and that's the root account, this saves typing sudo every time you want to run a privileged command but has it's down sides to.

some applications refuse to run on a root account TOR being one of them you open it up and get a snotty error message stating you shouldn't run as root this is dangerous blah blah.....

There is a way around this however download the TOR browser bundle from here and extract to wherever you like.

Browse to the extracted folder and open up "start-tor-browser.sh" in a text editor Kwrite,nano etc. and find the line:
Code: [Select]
if [ "`id -u`" -eq 0 ]; then around line 110 if my memory serves....

There are two ways to proceed now (either way make sure the file is backed up)

either change
Code: [Select]
if [ "`id -u`" -eq 0 ]; then to
Code: [Select]
if [ "`id -u`" -eq 1 ]; then
or delete that entire if block, this has been known to cause some issues but worked in my case. save the file and you will now be able to run as root.

3
News and Announcements / Re: Code hightlighting
« on: April 21, 2012, 08:57:11 PM »
just like to point out that "."'s are very difficult to see which could cause some confusion.
Other than that looks much cleaner :)



4
Scripting Languages / Re: [Python] help for a noob
« on: April 09, 2012, 01:10:07 PM »
Got it  ;)  thanks to xzid and techb for the help he finished code is :


Code: (Python) [Select]

# Guess your number
# Player thinks of a number between 1 and 100 and the computer tries to guess it
# r33per 9/4/12




print "Think of a number between 1 and 100."
print "And I will try to guess it."


import random


tries = 0
guess = ""
high = 100
low = 1
while guess != "c":
    number = random.randrange(low, high)
    print "I think of: ", number
    guess = raw_input("[h]iger, [l]ower, [c]orrect: ")
    if guess == "h":
        low = number +1
        tries += 1
    if guess == "l":
        high = number -1
        tries += 1
   
print "I got it in ", tries, "go's!"


raw_input("\n\nPress the enter key to exit.")



5
Scripting Languages / Re: [Python] help for a noob
« on: April 09, 2012, 12:14:38 AM »
That could work thinking it would look something like
Code: [Select]
low = ""
high = ""
if number < low:
    low == number
if number > high:
    high == number
random.randrange(low, high)


also think the input would work a lot better the way you suggest it's still a work in progress and will need a lot of polishing but think I can finish it now :)

6
Scripting Languages / Re: [Python] help for a noob
« on: April 08, 2012, 11:24:24 PM »
+1 kind sir I have already written a game where the computer thinks of a number and the player guesses, but then i thought I'd challenge myself by trying to reverse it, but it seems I've bitten off more then I can chew :) will play around with the code and see if i can get it working not all that confident on len() just yet so will re read that been a good learning exercise so far though

7
Scripting Languages / [Python] help for a noob
« on: April 08, 2012, 10:34:47 PM »
Hi guy's I am learning to script in python and am trying to write a little game where a user thinks of a number between 1 and 100 and the computer tries to guess that number so far i have:


Code: (Python) [Select]

print "Think of a number between 1 and 100."
print "And I will try to guess it."


import random


number = random.randrange(100) + 1
tries = 0




while raw_input != "got it":
    print "I think of: ", number
    guess = raw_input("higer, lower, got it: ")
    if guess == "higher":
        number = random.randrange(number, 100)
        tries += 1
    if guess == "lower":
        number = random.randrange(1, number)
        tries += 1
   
print "I got it in ", tries, "go's!"


raw_input("\n\nPress the enter key to exit.")

what i want it to do is remember the the lowest and highest numbers its already guessed and to generate new guesses within that range, also it doesn't exit properly and just re guesses the same number when it gets it right.
I don't want the code but if anyone could give me a nudge in the right direction I would be very grateful. 

8
Found it on the Webs / routerpasswords.com
« on: March 16, 2012, 08:38:49 AM »
http://www.routerpasswords.com/

Has a list of user name/passwords for the admin page for a variety of routers. Always worth a try as some people are that stupid  ;D

10
Mobile Hacking / Re: Is there an app for that?
« on: March 13, 2012, 09:16:26 AM »
I know it is possible to run a duel boot under android to allow Ubuntu Linux to run on the phone it's a pain in the ass but could be a way around will see if I can find the link to the tutorial. All of which is useless if the hardware doesn't support packet injection and of course there's the issue of very limited space for tools...

11
Scripting Languages / Re: [bash] update (ubuntu/backtrack)
« on: March 12, 2012, 11:58:48 PM »
The script itself only actually invokes the update process after which input is required to complete it

12
Tutorials / Re: Getting into the hacker mindset
« on: March 12, 2012, 07:17:11 PM »
Thank you for that intro it's left me with a lot of reading material to gather and as a noob it has given me a valuable in site to what I'm getting myself into :) will be eagerly awaiting updates.

13
Scripting Languages / [bash] update (ubuntu/backtrack)
« on: March 12, 2012, 06:02:36 PM »
just thought I'd share this with you all, it's just a simple script for updating tools and the kernel for backtrack and Ubuntu not really useful just saves typing :)
Code: (bash) [Select]
#!/bin/bash
echo "Updating, please wait....";
apt-get update; # sync with repo server
apt-get upgrade; # update tools
apt-get dist-upgrade; # upgrade kernel
echo "all done";

Pages: [1]


Want to be here? Contact Ande, Factionwars or Kulverstukas on the forum or at IRC.