Jump to content

Otter

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Otter's Achievements

Newbie

Newbie (1/14)

  1. Name: Just call me Otter.. most people do, anyway. Favourite game: Bubble Bobble, FFVII, Zelda Favourite OS: Ubuntu Favourite console: NES Nationality: Meh... Accent: Depends on where I'm at, I usually adapt within a week or two. I often change it to match the person I'm talking to. Sex: Male Age: Early Twenties (how long before early turns to mid?) Race: Not eligible for federal grants Height: 5' 13" Status: Open relationship Build: Athletic Favourite band: Modest Mouse Favourite book: Nichomachean Ethics or Hitchhikers Guide to the Galaxy Favourite author: Hunter S. Thompson Favourite movie: The Godfather Trilogy.. I always watch them on my sick days Favourite director: Quentin Tarantino, Robert Rodriguez, Guy Ritchie Favourite TV Show: /me Doesn't watch the telly. Favourite actor: Johnny Depp Favourite actress: Natalie Portman, Kate Beckinsale, Olivia Wilde.. I didn't even have to change this section. ;) Favourite Pinup: Gwen Stefani Favourite Comedian: George Carlin Other hobbies: Riding [motorcycles], learning.. I love learning, cooking, painting/sketching, reading books, hiking/camping, road trips, botany, mycology, and anything that has to do with water.. I love water. Motorcyle: '06 Sportster XLC Limited Edition Stage 3 Occupation: Aspire to be a CS student but am constantly denied federal grants.. pondering getting married to get money for school, maybe I'll enlist.. Time will tell. Languages: English, Perl, learning Java now, C++ next.. then Python. Favourite Quote: "Mistakes are, after all, the foundations of truth, and if a man does not know what a thing is, it is at least an increase in knowledge if he knows what it is not." -C.G. Jung
  2. You need to understand why you're doing what you're doing.. not just be spoon fed commands. I used to get spoon fed commands and it did me more harm than good. Have you tried reading the documentation on aircrack-ng? http://www.aircrack-ng.org/doku.php?id=getting_started You can use Google translate to put this in the language of your choice. Once you understand the basic theory it will be much more enriching than being able to crack the weakest wireless security with a bunch of commands you don't understand. To answer your question, it's doing packet injection from the AP generated from the looks of it.
  3. So, after a bit more research, I have found my answer. I was missing the line: using namespace std; Which should go directly under "#include <iostream>" I'm not quite sure why this tutorial does not contain this information. Not to be deterred, I will continue on my journey.. maybe I'll get a wild hair and rewrite this book using the perl documentation I learned with as a template if I am constantly having to search for answers as I go along. Should someone come behind me and wish to learn, but has any issues, feel free to PM me- I would be more than happy to provide whatever assistance I can. I would also like to make note that <iostream.h> is incorrect in C++, this would be correct in C.
  4. Long time listener, first time caller. :) I have a problem with verbose, so I'll try my best to keep this short. I've started the C++ in 21 days tutorial, but came to an issue with syntax. I'm using "c++ (Ubuntu/Linaro 4.5.2-8ubuntu4) 4.5.2", writing the code in geany (is this a decent enough editor? I got it when learning Perl last month and it's worked well for me so far, but I'd rather start out learning something useful in an actual working environment than make bad habits.) When compiling my script I come across the problem ~/begcplusplus$ g++ hello.cpp -o hello hello.cpp: In function ‘int main()’: hello.cpp:5:2: error: ‘cout’ was not declared in this scope The code listed to use in the tutorial is: 1: #include &lt;iostream.h&gt; 2: 3: 4: int main(); 5: { 6: cout &lt;&lt;"Hello World!\n"; 7: return 0; 8: } I'm using Natty Narwhal, and would like to continue to use some version of *nix throughout my semi-self-educating.. may someone point me in the right direction? I do feel like an idiot here, and I have used google, but I'm not sure what exactly I should be looking for, is this a syntax error? compiler? my c++ is updated... I get the same errors when trying to compile directly in geany. I understand that I will always have compilation errors and will have to figure them out, but on a Hello World script.. really? Can I at least make it to variables before having to worry about this? Thank you for taking the time to read this, sorry about the wordiness, but I did give you a fair warning. :P
×
×
  • Create New...