| Author |
RE: New Rooting Challenges |
masta_hacks
Member

Posts: 132
Location:
Joined: 27.06.07 Rank: Apprentice |
|
I don't now how to code C++ but I do know that I could probly learn it. Or I can code it in BlitzPlus and someone could look at it. I have never rooted anything in real life but if someone tells me the steps etc. I can code it. I am going to start learn C++ tonight  |
|
| Author |
RE: New Rooting Challenges |
Zephyr_Pure
Member

Posts: 2402
Location:
Joined: 15.09.06 Rank: God |
|
masta_hacks wrote:
I don't now how to code C++ but I do know that I could probly learn it. Or I can code it in BlitzPlus and someone could look at it. I have never rooted anything in real life but if someone tells me the steps etc. I can code it. I am going to start learn C++ tonight 
OMG, just shut the fuck up. You act like the "steps to rooting" are just something that can magically be learned in the span of a few days. Rooting requires experience. Go code a Basic challenge.
I still check PMs from time to time.


Our responses were moronic, why shouldn't he follow suit? - Futility |
|
| Author |
RE: New Rooting Challenges |
masta_hacks
Member

Posts: 132
Location:
Joined: 27.06.07 Rank: Apprentice |
|
|
whatever... I have rooted stuff. I know what you do to root it I would need to KNOW how he wants it to be done. So if you have a problem with this I am sorry maybe you should do it your self. |
|
| Author |
RE: New Rooting Challenges |
Zephyr_Pure
Member

Posts: 2402
Location:
Joined: 15.09.06 Rank: God |
|
|
masta_hacks wrote:
I have never rooted anything in real life
masta_hacks wrote:
whatever... I have rooted stuff.
In the great words of Fritzo:
SHUT
THE
FUCK
UP
I still check PMs from time to time.


Our responses were moronic, why shouldn't he follow suit? - Futility
Edited by Zephyr_Pure on 16-11-07 01:56 |
|
| Author |
RE: New Rooting Challenges |
masta_hacks
Member

Posts: 132
Location:
Joined: 27.06.07 Rank: Apprentice |
|
|
yes, they were simulated but they explained real details on how to do it. maybe I should be more specfic sencs you obvlously are retadted. |
|
| Author |
RE: New Rooting Challenges |
lesserlightsofheaven
Member
Posts: 723
Location: EAX
Joined: 02.11.06 Rank: God Warn Level: 30
|
|
|
masta_hacks wrote:
yes, they were simulated but they explained real details on how to do it. maybe I should be more specfic sencs you obvlously are retadted.
Given your history, and my current level of respect for you, you have no right to call anyone retarded.
Since today seems to be weeding-out-worthless-assfucks day, lets get masta out of here too. |
|
| Author |
RE: New Rooting Challenges |
spyware
Member

Posts: 4158
Location: The Netherlands
Joined: 14.04.07 Rank: God Warn Level: 90
|
|
|
lesserlightsofheaven wrote:
Given your history, and my current level of respect for you, you have no right to call anyone retarded.
He didn't call anyone retarded. Zephyr simply is "retadted", obvlously.
The most censored HBH profile.

"The chowner of property." - Zeph“Widespread intellectual and moral docility may be convenient for leaders in the short term,
but it is suicidal for nations in the long term.” - Carl Sagan “Since the grid is inescapable, what were the earlier lasers about? Does the corridor have a sense of humor?” - Ebert
Edited by spyware on 16-11-07 02:08 |
|
| Author |
RE: New Rooting Challenges |
Zephyr_Pure
Member

Posts: 2402
Location:
Joined: 15.09.06 Rank: God |
|
|
masta_hacks wrote:
maybe I should be more specfic sencs you obvlously are retadted.
No, maybe you should find a fucking spellchecker, "sencs you obvlously are retadted".
yes, they were simulated but they explained real details on how to do it.
Oh, really? Is rooting all changing directories, looking for an open FTP port, and being able to remember a few *nix commands? Seriously, you're out of your league. If you want to learn C++, fine. Don't try to act like you know some shit you don't have a clue about. And don't try to pick shit with someone who DOES know.
I still check PMs from time to time.


Our responses were moronic, why shouldn't he follow suit? - Futility |
|
| Author |
RE: New Rooting Challenges |
Arto_8000
Member
Posts: 275
Location:
Joined: 28.03.06 Rank: HBH Guru |
|
Folk Theory wrote:
hacker2k wrote:
int main(int argc, char *argv[])
{
char dir;
char * privileges;
char * user;
char * password;
cout << "Please Login:";
cin >> user;
if (user=="Guest")
{
privileges="0";
}
cout << privileges;
}
dunno what language that is as i only know Java and Pascal, but i see the variable user defined as char and then given a string value. is that the error youre talking about or im just ranting here?
It's not an error, the variable is declared as a pointer. The pointer can point to the first index of an array of char (string), but in this case the only thing that is declared is the pointer not the array. It's not well coded and I hardly see how he is trying to code it.
♥♣♦♠ PHP/Javascblockedript/AJAX, XSLT/XML, CSS Design, Javascblockedript POO, PHP 5 POO, SQL, Java (Swing & Servlet), C, C++, ASM, Forth ♥♣♦♠
If you need help in any domain that I have listed, I can help you.
Edited by Arto_8000 on 16-11-07 02:21 |
|
| Author |
RE: New Rooting Challenges |
masta_hacks
Member

Posts: 132
Location:
Joined: 27.06.07 Rank: Apprentice |
|
|
Yes the rooting I did included exploiting a c file. Gaining access to the next user until you got to the end. |
|
| Author |
RE: New Rooting Challenges |
Arto_8000
Member
Posts: 275
Location:
Joined: 28.03.06 Rank: HBH Guru |
|
hacker2k wrote:
Here is my code so far:
int main(int argc, char *argv[])
{
char dir;
char * privileges;
char * user;
char * password;
cout << "Please Login:";
cin >> user;
if (user=="Guest")
{
privileges="0";
}
cout << privileges;
}
Can someone point out what is wrong with this or is it just my OS messing up an not the program.
What your doing wrong is that you can't compare string using ==. String are array and array CAN'T be compare with ==. Use the function strcmp instead.
Also your variable are not properly declared. When you declare an array you must set his size. For the variable privileges an integer would be more appropriate than string.
Here is your code with my correction :
int main(int argc, char *argv[])
{
char dir[100];
int privileges;
char user[20];
char password[20];
cout << "Please Login:";
cin >> user;
if (strcmp(user,"Guest"))
{
privileges = 0;
}
printf("%ld", privileges);
}
♥♣♦♠ PHP/Javascblockedript/AJAX, XSLT/XML, CSS Design, Javascblockedript POO, PHP 5 POO, SQL, Java (Swing & Servlet), C, C++, ASM, Forth ♥♣♦♠
If you need help in any domain that I have listed, I can help you.
Edited by Arto_8000 on 16-11-07 02:32 |
|
| Author |
RE: New Rooting Challenges |
lesserlightsofheaven
Member
Posts: 723
Location: EAX
Joined: 02.11.06 Rank: God Warn Level: 30
|
|
|
masta_hacks wrote:
Yes the rooting I did included exploiting a c file. Gaining access to the next user until you got to the end.
A C file? A fucking "C File"? Are you fucking kidding me?
Just shut up. Yes, we've all been to RootThisBox, and yes, we can all get past the first level. It doesn't count. |
|
| Author |
RE: New Rooting Challenges |
Folk Theory
Member

Posts: 611
Location: South New World
Joined: 08.09.06 Rank: Elite |
|
WTF!!! what is this noob doing in our previously 1337 thread!!
i recommend implementing the following lolcode applet
HAI APPLET
CAN HAS KICK_NOOBZ
VISIBLE "N00BZ KICKED"
KKTHXBYE
 |
|
| Author |
RE: New Rooting Challenges |
masta_hacks
Member

Posts: 132
Location:
Joined: 27.06.07 Rank: Apprentice |
|
|
wtf is root this box? |
|
| Author |
RE: New Rooting Challenges |
Zephyr_Pure
Member

Posts: 2402
Location:
Joined: 15.09.06 Rank: God |
|
|
masta_hacks wrote:
Yes the rooting I did included exploiting a c file. Gaining access to the next user until you got to the end.
lesserlightsofheaven wrote:
A C file? A fucking "C File"? Are you fucking kidding me?
Well, according to him, it was a very intimidating C file; it had a HUGE Class C IP address. Oh, and since he has so much trouble not even trying to learn PHP, attacking a simulated C file is a victory for him. Makes me wonder exactly how much "BlitzBasic" he was actually able to do... a programmer can pick up any language's ways pretty easily.
masta_hacks wrote:
wtf is root this box?
That's right... you don't know how to Google. You never learned, either. That's why your ass gets flamed every time you set foot in the damn forum. Once, just once... Google and find your own damn answer. You are the ONLY ONE HERE that doesn't know what RtB is, or how to find it.
I still check PMs from time to time.


Our responses were moronic, why shouldn't he follow suit? - Futility
Edited by Zephyr_Pure on 16-11-07 02:46 |
|
| Author |
RE: New Rooting Challenges |
masta_hacks
Member

Posts: 132
Location:
Joined: 27.06.07 Rank: Apprentice |
|
|
I have seen the URL rootthisbox.org but it is down. |
|
| Author |
RE: New Rooting Challenges |
Zephyr_Pure
Member

Posts: 2402
Location:
Joined: 15.09.06 Rank: God |
|
|
masta_hacks wrote:
I have seen the URL rootthisbox.org but it is down.
Judging from your previous posts, you're probably spelling the URL wrong. Looks like it's up, from where I'm standing. Now that we've established that... just stop trying to save face. We know you haven't rooted a real box, we know you've only done simulations and, if you keep trying to insist that simulations are like the real thing... then I will have to ask Fritzo, respectfully, to finish out this thread. My flaming is not even close to that, so just stop.
I still check PMs from time to time.


Our responses were moronic, why shouldn't he follow suit? - Futility |
|
| Author |
RE: New Rooting Challenges |
Arto_8000
Member
Posts: 275
Location:
Joined: 28.03.06 Rank: HBH Guru |
|
There is PullThePlug (now know as Over the Wire). It's pretty good to learn rooting.
♥♣♦♠ PHP/Javascblockedript/AJAX, XSLT/XML, CSS Design, Javascblockedript POO, PHP 5 POO, SQL, Java (Swing & Servlet), C, C++, ASM, Forth ♥♣♦♠
If you need help in any domain that I have listed, I can help you. |
|
| Author |
RE: New Rooting Challenges |
Folk Theory
Member

Posts: 611
Location: South New World
Joined: 08.09.06 Rank: Elite |
|
so hows the C++ study going? or has that been cancelled already?
 |
|
| Author |
RE: New Rooting Challenges |
masta_hacks
Member

Posts: 132
Location:
Joined: 27.06.07 Rank: Apprentice |
|
It is true I have never rooted a real box I am sorry for what I said I am by nature a defensive person, also does anyone know of a C++ compiler for Linux, BackTrack 2 as this is what I am running. I would be grateful if someone could help me learn privilege escalation, and other helpful rooting techniques. I will have a look at PullThePlug. |
|