Jump to content

misfitsman805

Active Members
  • Posts

    160
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by misfitsman805

  1. How do you do this trick? It sounds interesting. :D
  2. @barry99705 Don't you mean the l33t h4x0r color??? :P The internal wifi card will not show up in any virtual machine that I know of(May be a VM hypervisor out there that has the capability??), Unless it is a usb wifi adapter.
  3. Well here is my crappy diagram of the overall network/virtual network setup. Reply if you have anymore questions about the setup.
  4. Anything man made is crackable\hackable, one way or another.
  5. Just wondering what program are you using to view these properties?
  6. Ahaha aaaaaaaaahhahahahahah ahahahhahahhahhahahahhahahahahahahhahahahaha
  7. DynDns was the exact same way for the free accounts. You would recieve an email about 5 days before the end of the month asking if you would like to keep your hostnames active for the next month. So not really any different from No-IP, except No-IP allows 5 hostnames on the free accounts instead of DynDns' 2 hostnames for a free account. :D
  8. Kon-Boot should work just fine on these OS's that it supports. Microsoft Windows XP 32Bit/64Bit (all versions since SP2) Microsoft Windows Server 2003 32Bit/64Bit (all versions) Microsoft Windows Server 2008 32Bit/64Bit (all versions) Microsoft Windows Vista 32Bit/64Bit (all versions) Microsoft Windows 7 32Bit/64Bit (all version) Microsoft Windows 8 32Bit/64Bit (all versions, only standard BIOS support - no EFI) I have personally used it just fine on Windows XP SP2 x86,Windows Vista Ultimate x64,Windows 7 Ultimate x64, and Windows 8/Pro x64 non-EFI Bios.
  9. Windows 8 Does Not have a Basic, Home or Starter edition. There is only Windows 8 (also known as Core edition), Windows 8 Pro, Windows 8 Enterprise (This edition is available to Software Assurance customers, as well as MSDN and Technet Professional subscribers) and Windows RT (Which is pre-installed on ARM-based devices such as tablet PCs). Windows 8 (Core edition) does not have Group Policies. Only Windows 8 Pro and Enterprise edition. Also Windows 8 (Core edition) can not join a windows domain either. Only Windows 8 Pro and Enterprise edition. So to make a long story short, You will have to find some other software to handle blocking programs and access to control panel etc.
  10. If I remember right, if you share any folder on Win 7 the Users folder will also be shared too. I always unshare the Users folder when I share any other folder in Windows. idk what the point of Windows sharing the Users folder is... Most likely you were not Hacked or infected with Virus/Malware. Just Windows being Windows I guess. Hope this helps.
  11. Yes I also forgot to mention this. :)
  12. Are you using the correct baud rate and settings for the serial port? Also make sure the TX and RX are on the correct pins.
  13. How about Y-Chat? It is X-Chat 2 for Windows. http://www.silverex.org/news/
  14. LMAO They need more episodes. ----> http://www.thewebsiteisdown.com/
  15. How do you setup AP mode on this Wlan nic? Do you need certain Linux drivers for it to work in AP mode?
  16. What is this Meter preter shell you speak of? What kinda of sea creatures do the shells come from?
  17. USB 1.1 Low Speed = 3 meters (Roughly 9.84251969 feet) USB 1.1 High Speed = 5 meters (Roughly 16.4041995 feet) USB 2.0 High Speed = 5 meters USB 3.0 = Not really specified.
  18. What OS are you using? If you are using Ubuntu or Backtrack 5 R1 you can try adding the command to the /etc/rc.local file.
  19. I don't remember Hak5 doing a PXE server setup. So sounds like it would be an excellent segment to do int0x80. :D You could go into detail on what programs are needed and how to add a few Distros to the PXE with maybe a nice boot screen to it? :P
  20. Hey, Just to let you know gPXE development ceased in summer 2010. You should probably look at updating to the iPXE project which was formerly gPXE, which was formerly Etherboot lol :P
  21. Was bored today so decided to rewrite Darrens Wallpaper Prank for the Teensy 2.0. Not the greatest looking code, but it works. /* Rewrite of Darren Kitchen's Wallpaper Prank. Coded by Misfitsman805 for Teensy 2.0 Feel free to edit */ void setup() { delay(5000); Keyboard.set_modifier(MODIFIERKEY_GUI); Keyboard.set_key1(KEY_D); Keyboard.send_now(); clear_keyboard(); delay(700); Keyboard.set_key1(KEY_PRINTSCREEN); Keyboard.send_now(); clear_keyboard(); delay(200); Keyboard.set_modifier(MODIFIERKEY_SHIFT); Keyboard.set_key1(KEY_F10); Keyboard.send_now(); clear_keyboard(); delay(400); Keyboard.print("v"); delay(40); Keyboard.print("d"); delay(300); Keyboard.set_modifier(MODIFIERKEY_GUI); Keyboard.set_key1(KEY_R); Keyboard.send_now(); clear_keyboard(); delay(700); Keyboard.print("mspaint.exe"); enter_key(); delay(1000); Keyboard.set_modifier(MODIFIERKEY_CTRL); Keyboard.set_key1(KEY_V); Keyboard.send_now(); clear_keyboard(); delay(500); Keyboard.set_modifier(MODIFIERKEY_CTRL); Keyboard.set_key1(KEY_S); Keyboard.send_now(); clear_keyboard(); delay(1000); Keyboard.print("%userprofile%\\a.bmp"); enter_key(); delay(500); Keyboard.set_modifier(MODIFIERKEY_ALT); Keyboard.set_key1(KEY_F); Keyboard.send_now(); clear_keyboard(); delay(400); Keyboard.print("k"); delay(100); Keyboard.print("f"); delay(1000); Keyboard.set_modifier(MODIFIERKEY_ALT); Keyboard.set_key1(KEY_F4); Keyboard.send_now(); clear_keyboard(); delay(300); Keyboard.set_modifier(MODIFIERKEY_GUI); Keyboard.set_key1(KEY_D); Keyboard.send_now(); clear_keyboard(); } void loop() { // No need for loop } void clear_keyboard() { Keyboard.set_modifier(0); Keyboard.set_key1(0); Keyboard.send_now(); } void enter_key() { Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); clear_keyboard(); }
  22. I see, Thanks for the reply! :) Just wish I had the $80 for the Rubber Ducky. Hook it up with a free sample Darren! :P
  23. Hey Darren, Will you be able to do all the same things on the Teensy 2.0 that you can do with the new "rubber ducky"?
×
×
  • Create New...