Jump to content

Zimmer

Dedicated Members
  • Posts

    670
  • Joined

  • Last visited

Everything posted by Zimmer

  1. Zimmer

    Old Hak5

    Where can I find the old episodes (1x05-3x11) rss feed I just discovered that all the old episodes on my ipod are gone and are not even in my iTunes library. When I search on the iTunes Store it is only the revision three one (My ipod isn't filled up 160 gb only half way filled). HELP! Thanks.
  2. I am a total newb to JavaScript and was wondering how I would go about doing this?
  3. Zimmer

    Old RSS?

    Where can I fine the old episodes rss feed I just discovered that all the old epsidoes on my ipod are gone and are not even in my iTunes library. When I search on the iTunes Store it is only the revision three one (My ipod isn't filled up 160 gb only half way filled). HELP! Thanks.
  4. Well there is a solution set up an ad-hoc network and turn on internet sharing. ADHOC http://support.microsoft.com/kb/306126 INTERNET SHARING http://support.microsoft.com/kb/306126 Reason is to act as the fon and have your mark connect to your ad-hoc network then he can go surf the web with out any huge sign telling him that this isn't the correct network. If you didn't enable internet sharing that would put up a huge red sign because there was not internet. CONS: Jasager automatically gets them connected. You might need to use some social engineering. Enjoy!!
  5. revision3.org/systm had an episode on rfid
  6. I pretty much thought it was junk sense it would probably been a huge topic if he couldn't be president just wanted to see if I was missing something.
  7. http://citizenwells.wordpress.com/2008/06/...o-be-president/ Is Obama eligible for president?
  8. What do you mean reinventing the wheel is their any easier way to this?
  9. BTW Updated code above in original post in case you didn't know.
  10. The code you were running had some errors it should run know.
  11. x = "abcdefghijklmnopqrstuvwxyzzABCDEFGHIJKLMNOPQRSTUVWXYZZ1234567890" #64 this is the set of number and letters that could make up all the passwords. #64 is just how many. So in the code the if b==64: Once b has gone through all the letters, etc c = c + 1 The next letter progresses by one b = 0 and b is reset And each time more and more rows are reset ROW: 3 2 1 a b c So a is in ROW 3 b ROW 2 c ROW 1 each time row one goes through all of the set (letters, number, special characters, etc) ROW 2 moves up one so it might move from b to c
  12. How it works... Well think of a clock 60 seconds to a one minute 60 minutes to an hour 24 hours to a day 7 days to a week of 60*60*24*7=604800 seconds to a week. so if you have 3 letters and a password that has either 1-3 letters in it. Then a b c aa ab ac ba bb bc ca cb cc aaa aab aac aba abb abc aca acb acc baa bab bac bba bbb bbc bca bcb bcc caa cab cac cba cbb cbc cca ccb ccc .... each time the next letter moves on the other numbers reset bcc to caa
  13. Does it work? Yes and no. Yes... Using print it is able to generate the code but... No... I am having trouble with the sys command to communicate with rar.exe.
  14. Also the hint was "ten under score" score refering to 20. Could be
  15. Ya this would be a problem because I believe SpinRite trys to recover them. http://en.wikipedia.org/wiki/SpinRite http://www.grc.com/spinrite.htm
  16. I don't think so as crt alt del is I believe kernal level. Because i read somewhere that crt alt del on login was suppose to protect you because if it wasn't windows that BIOS would recieve it and reboot. Not sure if it us entirely acurate.
  17. What VaKo do you work for Dell :). You could use them as a cluster. If you own them.
  18. Google Android maybe? Open Source! :)
  19. For an actual MAME cabinet check out Systm revision3.com/systm and also maybe it was because I didn't experiance that era, but I was always fine with just playing with MAME on a regular Comp. Just my thoughts
  20. Ya I have it know up to 5 letters and then 10 letters using upper lower and numbers. Update Code import sys def crack10(): print x[y]+x[t]+x[e]+x[w]+x[q]+x[v]+x[z]+x[r]+x[c]+x[b] x = "abcdefghijklmnopqrstuvwxyzzABCDEFGHIJKLMNOPQRSTUVWXYZZ1234567890" #64 b = -1 c = 0 r = 0 z = 0 v = 0 q = 0 w = 0 e = 0 t = 0 y = 0 while b<64: b=b+1 if b==64: c = c + 1 b = 0 if c==64: r = r + 1 c = 0 b = 0 if r==64: z=z+1 r = 0 c = 0 b = 0 if z==64: v=v+1 z = 0 r = 0 c = 0 b = 0 if v==64: y=y+1 v = 0 z = 0 r = 0 c = 0 b = 0 if y==64: t=t+1 y = 0 v = 0 z = 0 r = 0 c = 0 b = 0 #tewq if t==64: e=e+1 t = 0 y = 0 v = 0 z = 0 r = 0 c = 0 b = 0 if e==64: w=w+1 e = 0 t = 0 y = 0 v = 0 z = 0 r = 0 c = 0 b = 0 if w==64: q=q+1 w = 0 e = 0 t = 0 y = 0 v = 0 z = 0 r = 0 c = 0 b = 0 crack10()
  21. Are there any free bruteforcers for RARs. Full Version not trial ware.
  22. Anybody made progress? What was the first RAR's Password?
  23. The code works if I just print it to the screen. Hmmmm....
×
×
  • Create New...