Welcome to HBH! If you had an account on hellboundhacker.org you will need to reset your password using the Lost Password system before you will be able to login.

FOR VIEWING SOURCE_cOdE - Python Code Bank


FOR VIEWING SOURCE_cOdE
:P
                import mechanize
def viewPage(url):
browser = mechanize.Browser()
page = browser.open(url)
source_code = page.read()
print (source_code)
viewPage('victim site')
            
Comments
vkey's avatar
vkey 9 years ago

works with mechanize librarythumbs up