Jump to content

Zimmer

Dedicated Members
  • Posts

    670
  • Joined

  • Last visited

Posts posted by Zimmer

  1. I am creating an app so it was easier for me to convert Video and DVD s it is not really finished but the conversion and arguments work. So I though I would share it. It works in Windows but should easily be ported to Mac or Linux sadly I don't have a Mac and Xubuntu on a 500mmhz is hardly ideal for converting. E

    #Uses App directory of VLC Portable
    #python
    #VLC DVD and MEDIA COMMAND LINE CONVERTER iPod
    import sys, os, subprocess
    #Print Help
    def Help():#HELP
        print "Help"
        print "[Source] [Destination] [Arguments]"
        print "Arguments"
        print "/? Help"
        print "/f Widescreen"
        print "/o Old iPods Non 640 (Resolution) Compatible"
        print "/d DVD"
        print "/y Automatically Overwrite a file if it already exists"
        print "/w Watch the source video while converting it"
        print "Format"
        print "For DVD support Use /d Arguments and for Source the title"
        os._exit(0)#Kill program instead of sys.exit which just ends this block and continues on. quit() gives errors in py2exe
    if sys.argv[1]=="/?":
            Help()
    if sys.argv[1]=='Help':
            Help()
    path = os.path.dirname(sys.argv[0])
    #DEFAULTS
    try:
        a=sys.argv
    except:
        print 'No Arguments Given'
        raw_input('No Command Line Arguments were given. Please Press ENTER to close')
        quit()
    try:
        s=a[1]#Source
    except:
        print 'No Source Destination Given'
        raw_input('Source Destination not given. Please Press ENTER to close')
        quit()
    try:
        d=a[2]#Destination
    except:
        print 'No Save Destination Given'
        raw_input('Save Destination not given. Please Press ENTER to close')
        quit()
    widescreen='f'
    old='f'# Default is New DVD unless arguments specify a need for old ipod compatible video
    dvd='f'#DVD Var equals False
    width='640'#Width and Height equal defaults of New iPod Fullscreen and unless needed arg present it doesn't change.
    height='480'#Same^^
    num='t'
    overwrite='f'
    watch=''
    #DEFAULTS^^^
    print s
    print d  #Prints Source Destination Testing Purposes
    try:# This Destects whether the source is a DVD title.
        temp=int(s)
    except:
        num='f'
    if num=='f':
        if not os.path.exists(str(s)):
            if not s[0]=='"':
                print 'Your source destination must be surrounded with qoutes.'
            if s[0]=='"':
                print "Your source destination doesn't exist."
            quit()
        if not os.path.exists(d):
            if not d[0]=='"':
                print 'Your save destination must be surrounded with qoutes.'
            '''
            if d[0]=='"':
                print "Your save destination doesn't exist."
            '''# Not needed for save destination becaouse it will be created only needed for source destination.
            quit()# End of wether the Source is a DVD Title
    '''
    if not s[0]== '"':#Block adds to Source "" if needed so if Source contains Spaces no errors will appear.
        s='"'+s
        if not s[-1]=='"':
            s=s+'"'
    if not d[0]== '"':#Block adds to Destination "" if needed so if Destination contains Spaces no errors will appear.
        d='"'+d
        if not d[-1]=='"':
            d=d+'"'
    '''
    if os.path.exists(str(d)):#Detects wether the destination already exists
        temp=raw_input('The save destination you gave already exists do you want to overwrite it? Y/N')
        if temp[0]=='N':
            quit()#Program Quits
    for i in a:#Goes through Arguments
        if i=="/f":#Widescreen
            widescreen='t'
            if not old=='t':#New iPod
                height=str('360')
                width=str('640')
            if old=='t':#Old iPod
                height=str('180')
                width=str('320')
        if i=="/o":#Old iPod
            old='t'
            if widescreen=='t':#Widescreen
                height=str('180')
                width=str('320')
            if not widescreen=='t':#Fullscreen
                height=str('240')
                width=str('320')
        if i=='/d':#DVD instead of File as Source
            dvd='t'
        if i=='/y':#Automatically Overwrite if destination exists
            overwrite='t'
        if i=='/w':#Watch while the Source is Converted. Slows down converting.... File by takes about 2 to 4 times longer. DVD and Network minimal length of time longer. 
            watch='dst=display,'
    if overwrite=='f':
        if os.path.exists(str(d)):#Detects wether the destination already exists
            temp=raw_input('The save destination you gave already exists do you want to overwrite it? Y/N')
            if temp[0]=='N':
                quit()#Program Quits        
    drive='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
    for i in drive:#DVD Drive Destect Only Works for one drive. DVD Disk must be in.
        if os.path.exists(i+':\\VIDEO_TS'):
            dvddrive=i+':\\'
    if dvd=='t':#DVD Ripping and Conversion #With Dimension Dection of VIDEO
        '''
        vlc='"'+path+'\App\\vlc\\vlc.exe" --intf dummy --dummy-quiet dvdsimple://'+dvddrive+'@'+s+' --file-logging --stop-time=2 vlc://quit'
        subprocess.Popen(vlc).wait()
        #python parse log VLC
        lines = [line.rstrip('\n') for line in file(r'C:\Windows\System32\vlc-log.txt')]
        global dim
        n=0 
        for line in lines: 
            n = n+1; 
            if 'main debug: picture in ' in line:
                dim=n
        print dim
        '''
        VLC='"'+path+'\App\\vlc\\vlc.exe" --intf=dummy --dummy-quiet dvdsimple://'+dvddrive+'@'+s+' :sout=#transcode{vcodec=mp4v,vb=1024,height='+height+',width='+width+',scale=1,height='+height+',width='+width+',acodec=mp4a,ab=192,channels=2}:duplicate{'+watch+'dst=std{access=file,mux=mp4,dst="'+d+'.mp4"}} vlc://quit'#Were VLC is located and SOUT (Source OUT)
        print VLC
        subprocess.Popen(VLC).wait()#DVD
    if dvd=='f':#File not DVD Ripping Conversion
        VLC='"'+path+'\App\\vlc\\vlc.exe" --intf dummy --dummy-quiet '+s+' :sout=#transcode{vcodec=mp4v,vb=1024,height='+height+',width='+width+',scale=1,height='+height+',width='+width+',acodec=mp4a,ab=192,channels=2}:duplicate{dst=std{access=file,mux=mp4,dst='+d+'.mp4}} vlc://quit'#Were VLC is located and SOUT (Source OUT)' 
        print VLC
        subprocess.Popen(VLC).wait()#File
    #Cleans up VLC process...
    print 'Cleaning up remnants... Garbage Collector'
        def GarbageCollector():
            subprocess.Popen('tskill vlc').wait()
        GarbageCollector()

  2. Found up too 3x03 using wayback machine

    **********************************************************

    <?xml version="1.0" encoding="UTF-8"?>

    <rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" >

    <channel>

    <title>Hak5 Video Podcast</title>

    <link>http://www.hak5.org/</link>

    <description>Hak5 is the Internet Television show for the hacker, modder, and do-it-yourselfer. With high quality tech entertainment and all things hack and mod. You'll find yourself breaking out the soldering iron with Wess Tobler or yielding networks (in)secure with Darren Kitchen. Join the gang on the 5th of each month for an engaging hour of technology and geek humor.</description>

    <language>en</language>

    <ttl>2880</ttl>

    <copyright>Creative Commons 2.5</copyright>

    <managingEditor>darren@hak5.org</managingEditor>

    <generator>Technolust Productions Inc.</generator>

    <webMaster>darren@hak5.org (Darren Kitchen)</webMaster>

    <itunes:subtitle>Hak5 Trust your Technolust</itunes:subtitle>

    <itunes:summary>A video podcast for the hacker, modder, and do-it-yourselfer. Hak5 is a technology and geek comedy variety show. Join Darren Kitchen and Wess Tobler on the 5th of each month for a healthy dose of technolust.</itunes:summary>

    <itunes:category text="Technology" />

    <itunes:category text="Comedy" />

    <itunes:category text="TV & Film" />

    <itunes:keywords>tech, hack, mod, comedy, humor, hacking, modding, technology, iptv, techtv, hacker, modder</itunes:keywords>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:owner>

    <itunes:email>darren@hak5.org</itunes:email>

    <itunes:name>Darren Kitchen</itunes:name>

    </itunes:owner>

    <itunes:image href="http://libsyn.com/podcasts/hak5/images/hak5itunes.jpg" />

    <image>

    <url>http://libsyn.com/podcasts/hak5/images/hak5itunes.jpg</url>

    <title>Hak5 Video Podcast</title>

    <link>http://www.hak5.org/</link>

    </image>

    <itunes:explicit>No</itunes:explicit>

    <item>

    <title>Hak.5 Episode 3x01</title>

    <link>http://www.hak5.org/archives/185</link>

    <description>In this season premiere episode of Hak5 Wess brings us an underwater camera enclosure mod, Alli shows us how to make our own nifty Photoshop brushes, and Darren gets his hack on with some cracked USB Wi-Fi for packet-sniffing goodness. Plus this month's Trivia, LAN Party, and the latest in the EvilServer saga.</description>

    <category>podcasts</category>

    <pubDate>Sunday, 5 August 2007 7:25:00 GMT</pubDate>

    <guid isPermaLink="true">http://www.hak5.org/archives/185</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--3x01--ipod.mp4" length="176377649" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak5Live Teaser</title>

    <link>http://www.hak5.org/archives/174</link>

    <description>Hak5Live airs June 16th at 7:00 PM EDT. See http://hak5live.org for details.</description>

    <category>podcasts</category>

    <pubDate>Wednesday, 6 June 2007 05:00:00 GMT</pubDate>

    <guid isPermaLink="true">http://www.hak5.org/archives/174</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5live/Hak5Live--Teaser--iPod.mp4" length="2453968" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode 2x10</title>

    <link>http://www.hak5.org/archives/173</link>

    <description>In this season finale episode of Hak5 Paul cracks open the Apple TV for a little hacking, Wess shows us how to virtualize physical servers, Mubix joins us to show off some goodies for your USB drives, Darren benchmarks budget home servers, and we tread into web two-oh mashup territory. Plus more janky products for your rofling enjoyment, deets on the LAN party, trivia, poll, web 1.0 fan site contest, and info on a new show pilot. So grab some hax0rflakes for 80 minutes of prime technolust!</description>

    <category>podcasts</category>

    <pubDate>Monday, 7 May 2007 17:35:00 GMT</pubDate>

    <guid isPermaLink="true">http://www.hak5.org/archives/173</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--2x10--ipod.mp4" length="549908143" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode 2x09 -- Shmoocon Special</title>

    <link>http://www.hak5.org/archives/169</link>

    <description>In this special episode of Hak5 the crew heads to Washington DC for ShmooCon, the only annual security conference with complementary foam balls. We start by talk to Bruce Potter, one of the conferences organizers, about all things Shmoo. We also speak to Billy Hoffman about Jikto, JavaScript and XSS. Eoin Miller and Adair Collins tell us all about Cachedump and the dangers of cached domain credentials. Ken Caruso gives us a tour of the Shmoocon NOC and we see how network security is done at a hacker con. Jordan and Wes give us the details on the Hack or Halo competition while Paul tries his luck with the sniper rifle. Scott Moulton talks to us about recovering dead hard drives and Babak tells us about lock picking and the TOOOL organization. We even run into some Hak5 fans, Ryan and David, who built a rockin’ Wii duck hunt box at the Hacker Arcade. Plus all of the usual fixings including the details on this months trivia, poll, LAN party, and a special web 1.0 contest sure to bring back the blink tag.</description>

    <category>podcasts</category>

    <pubDate>Monday, 9 April 2007 09:20:00 GMT</pubDate>

    <guid isPermaLink="true">http://www.hak5.org/archives/169</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--2x09--ipod.mp4" length="313655929" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode 2x09 Teaser</title>

    <link>http://www.hak5.org/archives/167</link>

    <description>Fun stuff coming April 5th</description>

    <category>podcasts</category>

    <pubDate>Friday, 30 Mar 2007 05:16:00 GMT</pubDate>

    <guid isPermaLink="true">http://www.hak5.org/archives/167</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--2x09-teaser.mp4" length="4375200" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode 2x08</title>

    <link>http://www.hak5.org/archives/165</link>

    <description>In this “breakin’ in the new place” edition of Hak5 we take a look at some spiffy open-source goodies for your data and network. Paul checks out DD-WRT, a free & open firmware replacement for the oh so hackable Linksys WRT54G. Mubix teaches us why we should all be using TrueCrypt for our sensitive data. Darren gets packets flowing with Smoothwall Express, a firewall distribution of Linux. And Paul demos a sweet burning app for OS X. Plus all the deets on this month’s LAN party, Poll, Trivia, upcoming events, and plenty of Technolust with Wess, Alli & Nikki.</description>

    <category>podcasts</category>

    <pubDate>Wed, 7 Mar 2007 22:03:00 GMT</pubDate>

    <guid isPermaLink="true">http://www.hak5.org/archives/165</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--2x08--ipod.mp4" length="368205793" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode 2x07</title>

    <link>http://www.hak5.org/archives/161</link>

    <description>In this Flying-by-the-seat-of-our-pants edition of Hak5 episode 2×07 / Live Beta 2 we settle into the temporary set and check out a web app to help you IRC at work, a Mac hack for using front row with a wiimote, and a utility for recovering WPA/WEP keys. Plus your calls and an AFK award for a long lost code monkey.</description>

    <category>podcasts</category>

    <pubDate>Mon, 5 Feb 2007 22:03:00 GMT</pubDate>

    <guid isPermaLink="true">http://www.hak5.org/archives/161</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--2x07--ipod.mp4" length="196372858" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode 2x06</title>

    <link>http://www.hak5.org/archives/159</link>

    <description>In this truncated episode of Hak5 we dive into the homebrew broadcast console, our little hack behind the scenes that makes the live show tick. And unfortunately due to a jam packed schedule this month between the holidays and buying our first house thats all we had time for. Still thanks for sticking with us as we move to into the new home/studio, we’re excited to be rebuilding the set and going live more frequently. And big props and congratulations to the Community Rainbow Tables team for a job well done. See the page for more details on getting your very own 120 gig LM hash set. Be sure to stay tuned to hak5.org this month as I’m sure some fun move-in clips may surface.</description>

    <category>podcasts</category>

    <pubDate>Fri, 5 Jan 2007 22:03:00 GMT</pubDate>

    <guid isPermaLink="true">http://www.hak5.org/archives/159</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--2x06--ipod.mp4" length="59786551" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Live (beta) Episode 001</title>

    <link>http://www.hak5.org/archives/157</link>

    <description>In this beta pilot of Hak5 Live we fly by the seat of our pants, talk steganography, blinken lights mods, google sketchup, and take your questions regarding overclocking, wii hacks, php, linux on laptops, sniffing wireless keyboard traffic, and more.</description>

    <category>podcasts</category>

    <pubDate>Sat, 16 Dec 2006 22:03:00 GMT</pubDate>

    <guid isPermaLink="true">http://www.hak5.org/archives/157</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--live--beta--001--ipod.mp4" length="239097009" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode 2x05 -- Pure Pwnage Documentary</title>

    <link>http://www.hak5.org/archives/152</link>

    <description>In this special episode of Hak5 the crew takes a techie break and heads north for the Toronto premier of <a href="http://www.purepwnage.com">Pure Pwnage</a> episode 12. Take a trip down the red carpet and experience the phenomenon that is pure pwnage live. From micro battles to gamer mobs, even a kazoo orchestra. Then come back stage and get to know Geoff and Jarett, two of the bright minds behind the show, and gain insight into the characters, origins, and future of the show.</description>

    <category>podcasts</category>

    <pubDate>Tue, 5 Dec 2006 22:03:00 GMT</pubDate>

    <guid isPermaLink="true">http://www.hak5.org/archives/152</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--2x05--purepwnage--ipod.mp4" length="311685626" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode 2x04</title>

    <link>http://hak5.libsyn.com/index.php?post_id=147143#</link>

    <description>In this episode Paul takes a look at Q, the open source CPU emulator for Mac. Erin Shahan joins us to talk about RSI, the geeks natural predator. Alli shows off an idiot-proof Nintendo DS mod chip with plenty of hackability (and Doom of course). And Wess brings us a blingin' modded mouse for micro with style. Plus this monthâs trivia, poll, & LAN party details. <br/> <br/> <a href="http://www.hak5.org/wiki/Episode_2x04">Show Notes</a><br/><br/></description>

    <category>podcasts</category>

    <pubDate>Wed, 1 Nov 2006 22:03:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=147143#</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--2x04--ipod.mp4" length="145110760" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode 2x03</title>

    <link>http://hak5.libsyn.com/index.php?post_id=137771#</link>

    <description><p>In this episode Darren shows us a USB key, dubbed the <a href="http://www.hak5.org/wiki/USB_Hacksaw">USB Hacksaw</a>,that instantly and silently installs on target Windows 2000 or higher computers with guest or higher privledges which will monitor USB ports for flash drives and automatically download their contents for silent archival and email. Paul brings us an Asterisk setup for our home using a hacked Linksys NSLU2 and some inexpensive SIP phones. TheSoftwareJedi from <a href="http://www.anappaday.com/">AnAppADay.com</a> joins us to talk about his project and software. And Wess heads to Toronto and meets with <a href="http://www.barrowdynamics.com/">Andrew Barrow</a> to see a Nintendo Power Glove, Speak & Spell, MIDI mashup. Plus this monthâs trivia, <a href="http://www.hak5.org/poll">poll</a>, & <a href="http://www.hak5.org/lanparty/">LAN party</a> details from the lovely and talented Alli. </p> <p><a href="http://www.hak5.org/wiki/index.php?title=Episode_2x03">Show Notes</a></p></description>

    <category>general</category>

    <pubDate>Fri, 6 Oct 2006 11:50:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=137771#</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--2x03--ipod.mp4" length="456666866" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode 2x02</title>

    <link>http://hak5.libsyn.com/index.php?post_id=127404#</link>

    <description>In this episode Darren builds a Network Attached Storage server for our home network using a spare PC, a compact flash card, and some BSD. Paul brings us Doom on the iPod using Linux and some geeky voodoo. Wess crafts a unique LED liquor cabinet for about a hundred bucks. And Darren puts on his slightly darker than gray hat with a USB key that owns Windows machines in a matter of seconds (with a little prevention thrown in for good measure). Plus this monthâs trivia, <a href="http://www.hak5.org/poll/">poll</a>, & <a href="http://www.hak5.org/lanparty/">LAN party</a> details from the lovely and talented Alli.<a href="http://www.hak5.org/wiki/index.php?title=Episode_2x02"><br/><br/>Show Notes</a>, <a href="http://www.hak5.org/forums/viewtopic.php?t=2371">Poll</a>, <a href="http://www.hak5.org/survey/">Survey</a>, <a href="http://www.hak5.org/forums/viewtopic.php?t=2362">Release Thread</a><br type="_moz"/></description>

    <category>podcasts</category>

    <pubDate>Wed, 6 Sep 2006 00:17:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=127404#</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--2x02--ipod.mp4" length="347334377" type="application/octet-stream"/>

    <itunes:author>Trust Your Technolust</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode 2x01</title>

    <link>http://hak5.libsyn.com/index.php?post_id=117190#</link>

    <description>In this episode Darren shows us how to unite Windows, Mac, and Linux desktops with Synergy. Wess builds an automatic LED lamp, while Limin Li joins us to show off the setup of the digital DJ. Plus Interviews with Harrison Holland of Sploitcast and Jason Davis of MD5Lookup at the sixth Hackers On Planet Earth conference in New York. And as always details on this month's LAN party, trivia, poll, and geeky sketches.<br/><br/><a href="http://www.hak5.org/wiki/">Show Notes</a>, <a href="http://www.hak5.org/poll">Poll</a>, <a href="http://www.hak5.org/survey">Survey</a>, <a href="http://www.hak5.org/forums/">Forums</a></description>

    <category>podcasts</category>

    <pubDate>Sat, 5 Aug 2006 19:47:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=117190#</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--2x01--ipod.mp4" length="333038741" type="application/octet-stream"/>

    <itunes:author>Hak.5</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode 10</title>

    <link>http://hak5.libsyn.com/index.php?post_id=87530#</link>

    <description><p>In this experimental season finale episode of Hak.5 Darren & Wess wrap up ton of viewer questions covering gmail to SMS, recovering dead hard drives, email from the command prompt, and streaming video in flash. A special guest drops by to cover cracking windows passwords & securing windows. Plus Rob Fuller of <a href="http://www.mubix.com/">mubix.com</a> joins us to talk a bit about Tor and Anonym.OS and an Interview with Travis from <a href="http://www.rainbowcrack-online.com/">RainbowCrack-Online.com</a>.</p> <p>Theme song by <a href="http://www.tenhauser.com/">Ashley Witt</a>.</p> <p>Hosting provided by <a href="http://www.dreamhost.com/r.cgi?76032">Dreamhost.com</a>. Get $25 off hosting when you enter coupon code: HAK5</p> <p>Trivia segment sponsored by Godaddy.com: <a href="https://www.godaddy.com/gdshop/default.asp?isc=hak02a">Take $5 off any order of $30 or more at GoDaddy.com!</a> Enter promo code HAK2</p> <p>LAN Party sponsored by <a href="http://www.evolans.com/">EVOLANS.com</a></p></description>

    <category>podcasts</category>

    <pubDate>Sat, 6 May 2006 08:16:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=87530#</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5-1x10-ipod.mp4" length="265882289" type="application/octet-stream"/>

    <itunes:author>Hak.5</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode #9.5</title>

    <link>http://hak5.libsyn.com/index.php?post_id=82863#</link>

    <description><br/></description>

    <category>podcasts</category>

    <pubDate>Sat, 22 Apr 2006 22:37:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=82863#</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5-ep9.5-ipod.mp4" length="2927304" type="application/octet-stream"/>

    <itunes:author>Hak.5</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Evil Server Signal Interruption</title>

    <link>http://hak5.libsyn.com/index.php?post_id=81288#</link>

    <description><br _moz_editor_bogus_node="TRUE"/></description>

    <category>podcasts</category>

    <pubDate>Tue, 18 Apr 2006 03:55:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=81288#</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--Evil-Server-Signal-Interruption--ipod.mp4" length="19693128" type="application/octet-stream"/>

    <itunes:author>Hak.5</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>The Token</title>

    <link>http://hak5.libsyn.com/index.php?post_id=81162#</link>

    <description><br _moz_editor_bogus_node="TRUE"/></description>

    <category>podcasts</category>

    <pubDate>Mon, 17 Apr 2006 22:17:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=81162#</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--the-token--ipod.mp4" length="13865912" type="application/octet-stream"/>

    <itunes:author>Hak.5</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode #9</title>

    <link>http://hak5.libsyn.com/index.php?post_id=76699#</link>

    <description><br _moz_editor_bogus_node="TRUE"/></description>

    <category>podcasts</category>

    <pubDate>Tue, 4 Apr 2006 21:49:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=76699#</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5-ep9-ipod.mp4" length="204723325" type="video/mp4"/>

    <itunes:author>Hak.5</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Pure Tech Entertainment</title>

    <link>http://hak5.libsyn.com/index.php?post_id=72147#</link>

    <description>Pure Tech Entertainment</description>

    <category>podcasts</category>

    <pubDate>Thu, 23 Mar 2006 02:13:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=72147#</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/Hak5-ep8.5-PureTechEntertainment-ipod.mp4" length="9303238" type="video/mp4"/>

    <itunes:author>Hak.5</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>GeekyBarTV</title>

    <link>http://hak5.libsyn.com/index.php?post_id=65738#</link>

    <description></description>

    <category>hak5lol</category>

    <pubDate>Sun, 5 Mar 2006 21:39:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=65738#</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--geekybartv--ipod.mp4" length="14563027" type="video/mp4"/>

    <itunes:author>Hak.5</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode #8</title>

    <link>http://hak5.libsyn.com/index.php?post_id=65737#</link>

    <description>In this episode of Hak.5 the gang dives into IPTV subscription apps, pandora timeshifting hacks, and routing PC video over existing home coax. Plus an interview Chris Munton of Mathclub Productions, viewer questions, a sneak peak at episode 9, and a TikiBar parody way over the top. Guest intro by Kyle from Pure Pwnage and theme song by Ashley Witt.</description>

    <category>podcasts</category>

    <pubDate>Sun, 5 Mar 2006 21:38:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=65737#</guid>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5-ep8-ipod.mp4" length="267544097" type="video/mp4"/>

    <itunes:author>Hak.5</itunes:author>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Valentines Special</title>

    <link>http://hak5.libsyn.com/index.php?post_id=58478#</link>

    <description>Happy Valentines Day from Hak.5</description>

    <category>podcasts</category>

    <pubDate>Tue, 14 Feb 2006 05:44:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=58478#</guid>

    <author>darren@hak5.org</author>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/Hak5-ep7.5-ipod.mp4" length="12309183" type="video/mp4"/>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Switch</title>

    <link>http://hak5.libsyn.com/index.php?post_id=55356#</link>

    <description></description>

    <category>hak5lol</category>

    <pubDate>Sun, 5 Feb 2006 07:15:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=55356#</guid>

    <author>darren@hak5.org</author>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/Hak5--SwitchAd--ipod.mp4" length="2320415" type="video/mp4"/>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode #7</title>

    <link>http://hak5.libsyn.com/index.php?post_id=55355#</link>

    <description>In this episode of Hak.5 the gang hacks the CVS disposable digital camera, secure VNC traffic using SSH tunneling, take viewer questions and even check out some video submissions. Plus some special announcements and more commercials worth watching. Guest intro by Kevin Mitnick and music by Ashley Witt.</description>

    <category>podcasts</category>

    <pubDate>Sun, 5 Feb 2006 07:13:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=55355#</guid>

    <author>darren@hak5.org</author>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5-ep7-ipod.mp4" length="134593601" type="video/mp4"/>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Microshaft Web 2.0 Framework</title>

    <link>http://hak5.libsyn.com/index.php?post_id=55275#</link>

    <description></description>

    <category>hak5lol</category>

    <pubDate>Sun, 5 Feb 2006 02:14:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=55275#</guid>

    <author>darren@hak5.org</author>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/Hak5--MicroshaftWeb20Framework-ipod.mp4" length="4222426" type="video/mp4"/>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Microshaft Wireless</title>

    <link>http://hak5.libsyn.com/index.php?post_id=55274#</link>

    <description></description>

    <category>hak5lol</category>

    <pubDate>Sun, 5 Feb 2006 02:12:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=55274#</guid>

    <author>darren@hak5.org</author>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/Hak5--MicroshaftWireless--ipod.mp4" length="7021590" type="video/mp4"/>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Counter-Strike Trailer</title>

    <link>http://hak5.libsyn.com/index.php?post_id=55273#</link>

    <description></description>

    <category>hak5lol</category>

    <pubDate>Sun, 5 Feb 2006 02:10:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=55273#</guid>

    <author>darren@hak5.org</author>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/Hak5--CounterStrike--Trailer--ipod.mp4" length="3651693" type="video/mp4"/>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Slashdot Patch</title>

    <link>http://hak5.libsyn.com/index.php?post_id=55270#</link>

    <description></description>

    <category>hak5lol</category>

    <pubDate>Sun, 5 Feb 2006 02:01:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=55270#</guid>

    <author>darren@hak5.org</author>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5--SlashdotPatch--ipod.mp4" length="3679054" type="video/mp4"/>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Real Player Interview</title>

    <link>http://hak5.libsyn.com/index.php?post_id=55269#</link>

    <description></description>

    <category>hak5lol</category>

    <pubDate>Sun, 5 Feb 2006 01:58:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=55269#</guid>

    <author>darren@hak5.org</author>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/Hak5--RealPlayerInterview--ipod.mp4" length="2610159" type="video/mp4"/>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hax0r Flakes</title>

    <link>http://hak5.libsyn.com/index.php?post_id=55268#</link>

    <description></description>

    <category>hak5lol</category>

    <pubDate>Sun, 5 Feb 2006 01:57:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=55268#</guid>

    <author>darren@hak5.org</author>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/Hak5--Hax0rflakes--ipod.mp4" length="2383201" type="video/mp4"/>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Microshaft Mini</title>

    <link>http://hak5.libsyn.com/index.php?post_id=55267#</link>

    <description></description>

    <category>hak5lol</category>

    <pubDate>Sun, 5 Feb 2006 01:55:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=55267#</guid>

    <author>darren@hak5.org</author>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/Hak5--MicroshaftMini--ipod.mp4" length="2419668" type="video/mp4"/>

    <itunes:explicit>No</itunes:explicit>

    </item>

    <item>

    <title>Hak.5 Episode #6</title>

    <link>http://hak5.libsyn.com/index.php?post_id=46338#</link>

    <description>In this episode of Hak.5 Jon brings us a coding challenge, Wess builds a laser audio transmitter for his iPod, Harrison shows us why we should get to know our network neighbors better, and Darren remotely installs VNC with a command line gem. Plus the conclusion to last month's chilling cliff-hanger and guest appearances by Leo Laporte, Amber MacArthur, Mike Lazazzera, and Frank Linhares.</description>

    <category>podcasts</category>

    <pubDate>Sun, 8 Jan 2006 10:05:00 GMT</pubDate>

    <guid isPermaLink="true">http://hak5.libsyn.com/index.php?post_id=46338#</guid>

    <author>darren@hak5.org</author>

    <enclosure url="http://www.podtrac.com/pts/redirect.mp4?http://media.libsyn.com/media/hak5/hak5-ep6-ipod.mp4" length="143179750" type="video/mp4"/>

    <itunes:explicit>No</itunes:explicit>

    </item>

    </channel></rss>

    <script language="Javascript">

    <!--

    // FILE ARCHIVED ON 20070903230731 AND RETRIEVED FROM THE

    // INTERNET ARCHIVE ON 20090103005526.

    // JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

    // ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.

    // SECTION 108(a)(3)).

    var sWayBackCGI = "http://web.archive.org/web/20070903230731/";

    function xResolveUrl(url) {

    var image = new Image();

    image.src = url;

    return image.src;

    }

    function xLateUrl(aCollection, sProp) {

    var i = 0;

    for(i = 0; i < aCollection.length; i++) {

    var url = aCollection[sProp]; if (typeof(url) == "string") {

    if (url.indexOf("mailto:") == -1 &&

    url.indexOf("java script:") == -1

    && url.length > 0) {

    if(url.indexOf("http") != 0) {

    url = xResolveUrl(url);

    }

    url = url.replace('.way_back_stub','');

    aCollection[sProp] = sWayBackCGI + url;

    }

    }

    }

    }

    xLateUrl(document.getElementsByTagName("IMG"),"src");

    xLateUrl(document.getElementsByTagName("A"),"href");

    xLateUrl(document.getElementsByTagName("AREA"),"href");

    xLateUrl(document.getElementsByTagName("OBJECT"),"codebase");

    xLateUrl(document.getElementsByTagName("OBJECT"),"data");

    xLateUrl(document.getElementsByTagName("APPLET"),"codebase");

    xLateUrl(document.getElementsByTagName("APPLET"),"archive");

    xLateUrl(document.getElementsByTagName("EMBED"),"src");

    xLateUrl(document.getElementsByTagName("BODY"),"background");

    xLateUrl(document.getElementsByTagName("TD"),"background");

    xLateUrl(document.getElementsByTagName("INPUT"),"src");

    var forms = document.getElementsByTagName("FORM");

    if (forms) {

    var j = 0;

    for (j = 0; j < forms.length; j++) {

    f = forms[j];

    if (typeof(f.action) == "string") {

    if(typeof(f.method) == "string") {

    if(typeof(f.method) != "post") {

    f.action = sWayBackCGI + f.action;

    }

    }

    }

    }

    }

    //-->

    </SCRIPT>

  3. For me it did I was trying to write it in python and then when I learned it could be sys calls of anything to convert and we had to use an API it died then. New Challenge maybe?

    Several Ideas for a Challenge:

    LANGUAGE for all Python preferably though other languages perfectly fine!

    Monitor a given web page of part of a web page for a change

    or

    A dashboard clone for linux or windows or both

    or

    Get a playing video's packets and re-assemble them (harder? Videos that don't cache etc.)

    --This is probably the hardest by a lot.

  4. 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.

  5. 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.

  6. 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!!

  7. 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

  8. 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

  9. 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.

  10. 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

  11. 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&lt;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()

×
×
  • Create New...