vbulletin

How to reverse hashed and salted password ? [closed]

╄→尐↘猪︶ㄣ 提交于 2021-02-17 07:18:49
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . Improve this question I am using vBulletin and the login uses this to cross-refer to the database. md5(md5($pass).$salt) How do i make a PHP script such that every password input will automatically be hashed and salted as well so that it is able to authenticate with the vBulletin

C# - vBulletin new thread

﹥>﹥吖頭↗ 提交于 2020-01-15 09:10:32
问题 i tried this: public static void CreateNewThread(string url,string fId, string title, string message, string tag) { url += "newthread.php?do=postthread"; HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url); //string result = ""; string values = "subject=" + title + "&message=" + message + "&tag=" + tag + "&do=postthread" + "&f=" + fId + "&s=" + "" ; req.Method = "POST"; req.ContentType = "application/x-www-form-urlencoded"; req.ContentLength = values.Length; ServicePointManager

C# - vBulletin new thread

自闭症网瘾萝莉.ら 提交于 2020-01-15 09:09:04
问题 i tried this: public static void CreateNewThread(string url,string fId, string title, string message, string tag) { url += "newthread.php?do=postthread"; HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url); //string result = ""; string values = "subject=" + title + "&message=" + message + "&tag=" + tag + "&do=postthread" + "&f=" + fId + "&s=" + "" ; req.Method = "POST"; req.ContentType = "application/x-www-form-urlencoded"; req.ContentLength = values.Length; ServicePointManager

Accessing browser cookies from Flex

◇◆丶佛笑我妖孽 提交于 2019-12-28 04:23:13
问题 I'm building a Flex widget for a private vBulletin site, and the Flex widget needs to access an XML file on the vBulletin server in order to display data. For security reasons, the XML URL will need to have the value in the bbsessionhash cookie passed along in the URL request from Flex. The Flex widget will be embedded in the private area that the user has logged into, so the Flex request will be coming from the same website the cookie is from. Is there any way to access the cookies directly

vBulletin as login for entire website (edit: a certain amount of progress has been made)

纵饮孤独 提交于 2019-12-24 03:12:55
问题 I've come up against a bit of a brick wall in the vBul forums on how to do this, so I thought I'd ask the forum that's never let me down. Does anyone know of a simple way, on an EXTERNAL page to the forum, to take in whether the user is logged in, and possibly extract their user ID while it's at it? I've seen a few plug ins with that intension but all seem to have fallen out of support, and vBul 4.1 seems to have "broken" them as a result. Any and all help appreciated. Once I have those too

Having an image stripped of metadata upon upload in PHP

橙三吉。 提交于 2019-12-22 09:47:30
问题 A certain site I know recently upgraded their bandwith from 2,5 TB monthly to 3,5 TB. Reason is they went over the 2,5 limit recently. They're complaining they don't know how to get down the bandwidth usage. One thing I haven't seen them consider is the fact that JPEG and other images that are displayed on the site(and it is an image-heavy site) can contain metadata. Where the picture was taken and such. Fact of the matter is, this information is of no importance whatsoever on that site. It's

Vbulletin plugin development tutorial

☆樱花仙子☆ 提交于 2019-12-19 03:37:29
问题 I searched for tutorials but i didn't found any useful tutorial. I want to create simple plugin which add "123" to header of every pages of forum. I tried to go to admin panel -> create new plugin. But i don't know what hook i need to display "123" in header. I will be very thankful for any help. 回答1: Assuming vBulletin 4 and above: Create a Product Logon to your AdminCP Goto Plugins & Products -> Manage Products Click Add/Import Product On the following screen enter your product name etc in

Understanding cookie domain relationship with top level domain and its subdomains

怎甘沉沦 提交于 2019-12-13 19:35:15
问题 I have a domain with 2 subdomains like this: www.domain.com and secure.domain.com (with ssl). www subdomain will be running vbulletin (prone to xss attacks) and the webservice behind secure subdomain is well, more secure as well as more sensitive to attacks since real money is involved there. domain.com is 301 redirecting to www.domain.com. Now I'd like to have a single sign-on to both of the services without compromising the security of the secure subdomain. It seems to me there are 2 ways

Logging in to vBulletin

痴心易碎 提交于 2019-12-13 00:58:09
问题 This question was migrated from Software Engineering Stack Exchange because it can be answered on Stack Overflow. Migrated 8 years ago . I am trying to do a program in Python which logs in to a vBulletin forum. I need to access only one page, but in order to view that page I must be logged in. Here is my code: #-*- coding:utf-8 -*- import urllib, urllib2, cookielib, hashlib, time def variables(): domain = "www.example.com" uname = "UserName" passwd = "Password" # Create url if domain

Can't login with HttpWebRequests

女生的网名这么多〃 提交于 2019-12-12 22:36:35
问题 i am trying to login to a forum with httpwerequests but i had no success so far, this is my code: string url = "http://www.warriorforum.com/"; var bytes = Encoding.Default.GetBytes(@"vb_login_username=MyUsername&cookieuser=1&vb_login_password=&s=&securitytoken=guest&do=login&vb_login_md5password=d9350bad28eee253951d7c5211e50179&vb_login_md5password_utf=d9350bad28eee253951d7c5211e50179"); var container = new CookieContainer(); var request = (HttpWebRequest)(WebRequest.Create(url)); request