vbulletin

HTTP-SOVIET and HTTP-PACK?

怎甘沉沦 提交于 2019-12-04 10:53:17
I found a couple vBulletin sites I administer getting hacked recently. They use the latest version of the 3.8 series (3.8.7 Patch Level 2). I am usually pretty good at finding the holes where they get in and patching them up, but this one is stumping me. They are injecting data into the MySQL tables. The attack always happens when they make a GET request to the faq.php script. I was able to save data when the attack occurs. This was the $_REQUEST , $_GET , $_POST , $_COOKIE , and $_SERVER arrays. The only thing I saw that looked out of place is that there were two new $_SERVER keys, HTTP

Login to site with curl in vBulletin

断了今生、忘了曾经 提交于 2019-12-02 04:20:30
问题 I been trying to login to a site (www.siamchart/forum) by following instruction on this link.. Login to remote site with PHP cURL. I cannot past through the login. After running the following script, it redirect me to the same login page (www.siamchart/forum) without successful login. My code is as following.. $username="ABC"; $password="12345"; $url="www.siamchart.com/forum/login.php?do=login"; $cookie="siamchart_cookie.txt"; $postdata = "vb_login_username=".$username."&vb_login_password=".

Login to site with curl in vBulletin

五迷三道 提交于 2019-12-01 22:49:12
I been trying to login to a site (www.siamchart/forum) by following instruction on this link.. Login to remote site with PHP cURL . I cannot past through the login. After running the following script, it redirect me to the same login page (www.siamchart/forum) without successful login. My code is as following.. $username="ABC"; $password="12345"; $url="www.siamchart.com/forum/login.php?do=login"; $cookie="siamchart_cookie.txt"; $postdata = "vb_login_username=".$username."&vb_login_password=".$password; $ch = curl_init(); curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_SSL

Django / vBulletin single sign on

孤街醉人 提交于 2019-12-01 09:09:43
What is the easiest way to make a single sign on (SSO) for a Django project and a vBulletin board on the same domain? I have an existing database of vBulletin users. I have looked into Django's RemoteUserBackend and vBulletin's vBSSO but I haven't found a complete solution. I doesn't know Django, but when you are up to something like this, search for "bridges". There is a high chance someone have already done that for you. These three source of information can also help you get through doing your own bridge: Drupal Bridge http://drupalcode.org/project/drupalvb.git/blob

Django / vBulletin single sign on

江枫思渺然 提交于 2019-12-01 06:28:17
问题 What is the easiest way to make a single sign on (SSO) for a Django project and a vBulletin board on the same domain? I have an existing database of vBulletin users. I have looked into Django's RemoteUserBackend and vBulletin's vBSSO but I haven't found a complete solution. 回答1: I doesn't know Django, but when you are up to something like this, search for "bridges". There is a high chance someone have already done that for you. These three source of information can also help you get through

Vbulletin plugin development tutorial

爱⌒轻易说出口 提交于 2019-11-30 21:59:17
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. 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 the Add New Product section (you can leave Product URL and Product Check URL blank) Add a Plugin to your

Simulate login action to VBulletin using C#

泪湿孤枕 提交于 2019-11-29 15:50:51
问题 I trying to write a program (C#) that can login and create new thread into VBulletin forums. I tried 2 way: 1) Use HttpWebRequest : Login is done. However creating new thread is fail. This is posting code: 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="

Accessing browser cookies from Flex

帅比萌擦擦* 提交于 2019-11-27 15:30:43
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 within Flex? I would prefer not to use ExternalInterface to grab the cookie data from JavaScript, as it