Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 345779
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T11:06:57+00:00 2026-05-12T11:06:57+00:00

My workplace filters our internet traffic by forcing us to go through a proxy,

  • 0

My workplace filters our internet traffic by forcing us to go through a proxy, and unfortunately sites such as IT Conversations and Libsyn are blocked. However, mp3 files in general are not filtered, if they come from sites not on the proxy’s blacklist.

So is there a website somewhere that will let me give it a URL and then download the MP3 at that URL and send it my way, thus slipping through the proxy?

Alternatively, is there some other easy way for me to get the mp3 files for these podcasts from work?

EDIT and UPDATE: Since I’ve gotten downvoted a few times, perhaps I should explain/justify my situation. I’m a contractor working at a government facility, and we use some commercial filtering software which is very aggressive and overzealous. My boss is fine with me listening to podcasts at work and is fine with me circumventing the proxy filtering, and doesn’t want to deal with the significant red tape (it’s the government after all) associated with getting the IT department to make an exception for IT Conversations or the Java Posse, etc. So I feel that this is an important and relevant question for programmers.

Unfortunately, all of the proxy websites for bypassing web filters have also been blocked, so I may have to download the podcasts I like at home in advance and then bring them into work. If can tell me about a lesser-known service I can try which might not be blocked, I’d appreciate it.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T11:06:57+00:00Added an answer on May 12, 2026 at 11:06 am

    I ended up writing an extremely dumb-and-simple cgi-script and hosting it on my web server, with a script on my work computer to get at it. Here’s the CGI script:

    #!/usr/local/bin/python
    
    import cgitb; cgitb.enable()
    import cgi
    from urllib2 import urlopen
    
    def tohex(data):
        return "".join(hex(ord(char))[2:].rjust(2,"0") for char in data)
    
    def fromhex(encoded):
        data = ""
        while encoded:
            data += chr(int(encoded[:2], 16))
            encoded = encoded[2:]
        return data
    
    if __name__=="__main__":
        print("Content-type: text/plain")
        print("")
        url = fromhex( cgi.FieldStorage()["target"].value )
        contents = urlopen(url).read()
        for i in range(len(contents)/40+1):
            print( tohex(contents[40*i:40*i+40]) )
    

    and here’s the client script used to download the podcasts:

    #!/usr/bin/env python2.6
    import os
    from sys import argv
    from urllib2 import build_opener, ProxyHandler
    
    if os.fork():
       exit()
    
    def tohex(data):
       return "".join(hex(ord(char))[2:].rjust(2,"0") for char in data)
    
    def fromhex(encoded):
       data = ""
       while encoded:
           data += chr(int(encoded[:2], 16))
           encoded = encoded[2:]
       return data
    
    if __name__=="__main__":
       if len(argv) < 2:
           print("usage: %s URL [FILENAME]" % argv[0])
           quit()
    
       os.chdir("/home/courtwright/mp3s")
       url = "http://example.com/cgi-bin/hex.py?target=%s" % tohex(argv[1])
       fname = argv[2] if len(argv)>2 else argv[1].split("/")[-1]
       with open(fname, "wb") as dest:
           for line in build_opener(ProxyHandler({"http":"proxy.example.com:8080"})).open(url):
               dest.write( fromhex(line.strip()) )
               dest.flush()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My workplace is connected via cable internet with limited up/downstream, so for load-testing a
We use ClearCase at my workplace. Part of our standard process when code is
At my workplace, the traffic blocker/firewall has been getting progressively worse. I can't connect
We're about to look at implementing some PHP Coding Standards in our workplace to
We're using ZendFramework at my workplace for our webapps. It's ok, but it lacks
I'm got about 4 apps in my workplace that I maintain for our company.
We use a websense internet filter at my workplace. I have an application that
My workplace has banned us from internet access so we can't connect to rubygems.org
My workplace currently hosts a few hundred SharePoint sites and subsites with WSS 3.0
I have an custom addon developed for our workplace (using the add-on SDK) that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.