Jump to content

Luca662

Active Members
  • Posts

    21
  • Joined

  • Last visited

Everything posted by Luca662

  1. Hey hak5, I recently saw the esxi episodes and decided to give it a shot. I installed it onto a flashdrive and gave it a boot. Installed my favorite linux distro ubuntu and I made a samba server. I started transferring files over and noticed a major problem. My transfer speed was 2.78 megabytes per second! Thats absolutely terrible! When I was running ubuntu samba without vm I would get speeds close to 60 megabytes per second. I have 2gbs of ram, a 2.6 ghz processor and ubuntu was the only operatng system on and running. Is the free version of esxi capped in network speeds or is it a hardware issue? Thank you for any input -Luca
  2. You just need to root your phone and download wifi tether. Instead of paying that 30 bucks, you get everything for free.
  3. So if you haven't already I recommend you root your android phone. This allows access to many different apps like wifi tether. This application is like the laptop portion of jaseger. It allows your android phone to become a mobile hotspot. It uses your data connection to become a wireless network. Source code here: Wifi tether source With full root on your phone you have full access to the shell. I'm not a programmer, but I was wondering if it would be possible to dump the packets onto the SD card? Also maybe have the phone become a "yes man" like the jaseger? What do you guys think? It would be an interesting project.
  4. I just came across an interesting read on Ars technica. http://arstechnica.com/gaming/news/2009/02...vice-attack.ars People are now starting to do dos attacks on players through xbox live. The article describes the people using a packet-sniffer to find your ip then flooding you with packets. The packet sniffer is most likely cain and abel or ettercap. I'm curious to know what kind of packet they use to flood their victims. Most people have a small upload bandwith and huge download bandwidth meaning you don't have much to work with. Also, I run a small linux server that handles all my connection (I'm currently trying to get a windows sever up and running) and what would be the best way to protect against this attack?
  5. I mostly play IL-2 which is a WW2 flight sim. Even though the game is old the community is still strong and the players have respect for each other. Well most do. I also enjoy the casual game of call of duty 4 on the xbox.
  6. I agree the constant charging and stopping may destroy the battery. Although it may have a built in battery inside of it that acts like a UPS keeping the current stable. At least it should with a price point of $100.
  7. Ouch man. At least give the episode a chance. The laser range finding was about building your own laser range finder using a laser and a couple of cameras to put onto the usb missile launcher. The recovering files part wasn't just about using some simple program to do it for you, it was much more complex than that. So before you post something like this maybe you should read the show notes? You can't judge a book by its cover and you can't judge an episode by its title. Also if your trying to criticize the episode (it seems like you made this thread because of the complaints for lack of quality content) then post some constructive criticism.
  8. Back track 3 has a great selection of programs that can help you out =D. You could also try LANguard Network Scanner (in backtrack 3)
  9. This reminds me of rootthisbox.net The owner took it down a while ago, but hackthissite.org looks very similar to it. Too similar in fact o.O
  10. Thanks. I'll check those links out.
  11. Hey everyone, I recently have been listening to Pronobozo and I really like the type of music. Does anyone know artists like Pronobozo that they could recommend me?
  12. I found wi-foo to be very helpful in both wireless penetration and wireless defense. wi-foo
  13. I agree. Hes a great artist. Thanks Pronobozo =D
  14. Here you go, I made it into mp3 format. http://rapidshare.com/files/177123474/hak5ringtone.mp3 The mp3 file is only 89kb
  15. Hey everyone, I made a hak5 ringtone and I just got permission this morning to post it. Its the music from the //Mad_Props segment. Heres the link: http://rapidshare.com/files/176999935/hak5ringtone.wav Enjoy =D
  16. Hey man, I am also learning C++ myself. I'm farther than you so I can help you out =D. the line "#include iostream" allows you to input and output things in the program. It imports the library for you to do so. Try deleting the line and see what errors you get in your compiler. "int main()" is a function. You need "int main()" to begin your program with, but you can divert to other functions in your code too. Don't worry about it for now. Its way ahead of where you are at. "using namespace std" deals with classes, I think. I haven't gotten to that part yet so I can't really help explain what it is. I'm doing classes next chapter =D. If you want to find out more about them heres a link: http://forums.devshed.com/c-programming-42...mean-45679.html The reason your program closes when you double click the desktop is because the program has ended and the command prompt has no reason to stay open anymore. To fix this you simply ask for a variable at the end of your program. "cin" does not see spaces or enter as a character so you must use "cin.get(variable)". I added that to the end of your program as an example. #include <iostream> using namespace std; int main() { int UsersAge = 0; cout << "What is your age? "; cin >> UsersAge; if ((UsersAge >=0) && (UsersAge <=4)) { cout << "You are a baby! HAHAH!"; } else if ((UsersAge >=4) && (UsersAge <=10)) { cout << "You are child! HAHAH!"; } else if ((UsersAge >=10) && (UsersAge <=20)) { cout << "You are youngster!"; //you had a synatax error here } else if ((UsersAge >=20) && (UsersAge <=60)) { cout << "You are an adult!"; } else if ((UsersAge >=60) && (UsersAge <=140)) { cout << "You're old!"; } else if ((UsersAge >=140)) { cout << "You're lying!"; } cout << " Because you are " << UsersAge << " years old!"; char end;// declares the character cin.ignore();//ignores last keyboard input, not needed if nothing was typed. cin.get(end); //asks user for the chacter "End" }
×
×
  • Create New...