Dz Coder & Developer

Latest

[php function] : Os Checker

using $ _SERVER [‘HTTP_USER_AGENT’]
From here:

http://pastebin.com/4qjjz9jR

 

….

[python] Crack Md5 Hash with list

salam to all

 

Image

 

Image

Image

 

 

The t00l : http://pastebin.com/c94EvbYE

 

Enjoy..

Encoder To Md5

Hi guys,
a tool programmed by me…[PHP version]

the tool : http://pastebin.com/QzunidLh

Enjoy..!

1337 (LeeT)

Hi guys,
Leet (or “1337”), also known as eleet or leetspeak, is an alternative alphabet for the English language that is used primarily on the Internet. It uses various combinations of ASCII characters to replace Latinate letters. For example, leet spellings of the word leet include 1337 and l33t; eleet may be spelled 31337 or 3l33t.

The term leet is derived from the word elite. The leet alphabet is a specialized form of symbolic writing. Leet may also be considered a substitution cipher, although many dialects or linguistic varieties exist in different online communities. The term leet is also used as an adjective to describe formidable prowess or accomplishment, especially in the fields of online gaming and in its original usage – computer hacking.

read more..

salam To All :)

[php]

<?

echo “salam to all”;

?>

 

[python]

#!/usr/bin/python

print “salam to all”

[Python] scan ports and get the state and the city

Image

 

 

#!/usr/bin/python
import socket
import subprocess
import sys
import os
import urllib2
from datetime import datetime

def aaa() :
 if os.name == ‘nt’:
    os.system(‘cls’)
        os.system(‘color a’)
 else:
    os.system(‘clear’)
aaa()
print “””
[+]======================================================[+]
[+] CoDeD By SoUiLaHxXx_Dz
[+] Gr33T’z : All My Friends
[+]======================================================[+]
“””

remoteServer    = raw_input(“Enter a remote host to scan [ip]: “)
start    = input(“Enter a start port: “)
end    = input(“Enter a end port: “)
remoteServerIP  = socket.gethostbyname(remoteServer)

print “-” * 60
print “Please wait, scanning remote host”, remoteServerIP
print “-” * 60
 
t1 = datetime.now()

cc = urllib2.urlopen(“http://api.hostip.info/get_html.php?ip=”+remoteServer)
cc1 = cc.read()
print cc1+”\n”.strip()
try:
    for port in range(int(start),int(end)):
        sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        result = sock.connect_ex((remoteServerIP, port))
        if result == 0:
            print “Port {}: \t Open”.format(port)
        sock.close()
 
except KeyboardInterrupt:
    print “You pressed Ctrl+C”
    sys.exit()
 
except socket.gaierror:
    print ‘Hostname could not be resolved. Exiting’
    sys.exit()
 
except socket.error:
    print “Couldn’t connect to server”
    sys.exit()
 
t2 = datetime.now()

total =  t2 – t1
print ‘\n’
print ‘Scanning Completed in: ‘, total
print ‘./SoUiLaHxXx_Dz ^^’
raw_input(“Press ny key to ExiT…”)

 

 

 

 

 

or : http://pastebin.com/LtDgU8eT

Enjoy..!