ยินดีต้อนรับคุณ, บุคคลทั่วไป กรุณา เข้าสู่ระบบ หรือ ลงทะเบียน

เข้าสู่ระบบด้วยชื่อผู้ใช้ รหัสผ่าน และระยะเวลาในเซสชั่น

  แสดงกระทู้
หน้า: 1 [2] 3 4 ... 6
21  พัฒนาเว็บไซต์ / Programming / Re: สคริปป้องกัน สแปม เขียนโดย ข้าน้อยเอง เมื่อ: 07 กันยายน 2008, 23:07:46
ขอขุดนะครับ
อิๆๆ แก้ลิงค์เนื่องจาก เจ้าของเว็บ php เขาทำระบบใหม่ลิงค์เลยล่องลอยไปที่อื่น..
22  พัฒนาเว็บไซต์ / Programming / ระบบฝากข้อความ Sms-ITu V.1.0 [PHP] เมื่อ: 07 กันยายน 2008, 22:37:47



DownLoad:
http://www.tosdn.com/script/script.php?sid=2720&scat=11

เอามาฝากกันนะครับกำลังจะทำ V2.0 เพิ่มระบบ Admin และอื่นๆ...
แนะนำติ่ชมได้นะครับ..
23  พัฒนาเว็บไซต์ / Programming / Keyword Expert 3.10.7.1129 เมื่อ: 07 กันยายน 2008, 19:48:51


Keyword Expert application was designed to be a all-in-one keyword research tool for SEOers, affiliate marketers or any Internet marketer who advertises on pay-per-click search engines, such as Google and Overture. This ultimate SEO tool comprises six powerful utilities: Keyword Suggestions, Keyword Transformer, Popular Keywords, Keyword Organizer, Website Analyzer and AdWords Editor. In one word, Keyword Expert is a must-have tool to discover the quick and easy way to drive massive amounts of laser-targeted traffic to your site!

http://rapidshare.com/files/14...9/KeywordExpert3.10-0.rar.html
24  ความรู้ทั่วไป / Gooooooooooooogle / Re: Shock tot โดนก็เกิ้ลเเบน เมื่อ: 01 กันยายน 2008, 20:11:05
ทีการเรียกใช้เว็ฐอื่นที่มี ไวรัสรึปล่าว..  Huh?
25  พัฒนาเว็บไซต์ / Programming / Re: มีใครทราบบ้างครับว่ามันคืออะไร เมื่อ: 25 สิงหาคม 2008, 07:48:28
แต่ลองมาอ่านดูอีกทีอาจจะโดนแฮก เขาจะทำการ Redirect ไปยังหน้าเว็บเขาคุณลองดูที่หน้า Index ดูครับ...
26  พัฒนาเว็บไซต์ / Programming / Webbots, Spiders [E-Book] เมื่อ: 19 สิงหาคม 2008, 22:12:11


Author: Michael Schrenk
Paperback: 328 pages
Publisher: No Starch Press (March 30, 2007)
Language: English
ISBN-10: 1593271204
ISBN-13: 978-1593271206
Format: chm
Details:
The Internet is bigger and better than what a mere browser allows. Webbots, Spiders, and Screen Scrapers is for programmers and businesspeople who want to take full advantage of the vast resources available on the Web. There's no reason to let browsers limit your online experience-especially when you can easily automate online tasks to suit your individual needs.
Learn how to write webbots and spiders that do all this and more:
Programmatically download entire websites
Effectively parse data from web pages
Manage cookies
Decode encrypted files
Automate form submissions
Send and receive email
Send SMS alerts to your cell phone
Unlock password-protected websites
Automatically bid in online auctions
Exchange data with FTP and NNTP servers

โค๊ด:
http://rapidshare.com/files/137563422/w.e.b.bots.spirs.n.scr.scrapers-virTuAlZin.rar
27  พัฒนาเว็บไซต์ / CMS & Free Script / Re: วันนี้มาตั้งกระทู้หน่อย เรื่อง joomla เมื่อ: 18 สิงหาคม 2008, 08:04:23
ขึ้นอยู่กับโฮสด้วยครับบางโฮสก็ไม่สามารถ Cmod ผ่าน FTP ได้แต่ต้องผ่าน CP... แล้วแต่ครับ..
28  ไทย เสียว บอร์ด / ข่าวสารจากทีมงาน / Re: พบบั๊กใน Joomla ด่วนๆๆครับของใครเป็น 1.5x อยู่ให้อัปเดทเป็นversion ล่าสุด เมื่อ: 17 สิงหาคม 2008, 22:39:12
/\
/\
/\
ข้างบนคือการแก้

เพิ่มเติมมันเปงบั๊กที่เขาเรียกว่า ==> Joomla 1.5.x Remote Admin Password Change               

โค๊ด:
File : /components/com_user/controller.php

#####################################################################################
Line : 379-399
 
function confirmreset()
{
// Check for request forgeries
JRequest::checkToken() or die( 'Invalid Token' );

// Get the input
$token = JRequest::getVar('token', null, 'post', 'alnum');              < --- {1}
                 
// Get the model
$model = &$this->getModel('Reset');

// Verify the token
if ($model->confirmReset($token) === false)   < --- {2}
{
$message = JText::sprintf('PASSWORD_RESET_CONFIRMATION_FAILED', $model->getError());
$this->setRedirect('index.php?option=com_user&view=reset&layout=confirm', $message);
return false;
}

$this->setRedirect('index.php?option=com_user&view=reset&layout=complete');
}

#####################################################################################

File : /components/com_user/models/reset.php

Line: 111-130



function confirmReset($token)
{
global $mainframe;

$db = &JFactory::getDBO();
$db->setQuery('SELECT id FROM #__users WHERE block = 0 AND activation = '.$db->Quote($token));  < ---- {3}

// Verify the token
if (!($id = $db->loadResult()))
{
$this->setError(JText::_('INVALID_TOKEN'));
return false;
}

// Push the token and user id into the session
$mainframe->setUserState($this->_namespace.'token', $token);
$mainframe->setUserState($this->_namespace.'id', $id);

return true;
}
#####################################################################################
             
29  ไทย เสียว บอร์ด / ข่าวสารจากทีมงาน / Re: พบบั๊กใน Joomla ด่วนๆๆครับของใครเป็น 1.5x อยู่ให้อัปเดทเป็นversion ล่าสุด เมื่อ: 17 สิงหาคม 2008, 22:34:01
โค๊ด:
http://developer.joomla.org/security/news/241-20080801-core-password-remind-functionality.html
30  พัฒนาเว็บไซต์ / Programming / ProSubmitter $1000 SEO เมื่อ: 17 สิงหาคม 2008, 18:12:54
ตัวอย่าง
http://www.professional-submitter.com/screenshots.html
ดาวน์โหลด
โค๊ด:
http://winnershare.com/download.php?id=Vlzi9roMLvH1G2HTghOl
31  พัฒนาเว็บไซต์ / Programming / Software Indexing Script เมื่อ: 17 สิงหาคม 2008, 18:01:31
* Sell banner advertising
* Sell Featured ads,
* Sell Sponsor ads
* Sell Newsletter ads
* Add your own Google Adsense codes to make it even more profitable...

Features:

Advanced admin control panel gives you maximum control:

* Control Product Addition
* Add/Edit/Delete Features
* Unlimited categories and subcategories.
* Edit Website Information: Title,Keywords,Description, Password, PayPal Address, Email...
* Add Banners
* Create banner advertising plans
* Approve listings
* Approve reviews
* Send email messages to members or to your newsletter subscribers
* Configure email messages with your own preferences
* "Link To Us" Banner management area
* "Email A Friend" feature for your visitors
* "Top Freeware" listing
* "Top Shareware" listing
* "Latest Additions" listing
* "Most Popular" listing
* Rate and Review Items

โค๊ด:
http://webanax.com/index.php/Web-Scripts/Software-Index
32  พัฒนาเว็บไซต์ / Programming / แจก Youtube Clone Script เจ๋งดีครับเอาไปลองใช้กันดูนะครับ... เมื่อ: 15 สิงหาคม 2008, 21:18:41




http://www.winnershare.com/download.php?id=89dAEP4Wbc9TO8T2kplk
33  พัฒนาเว็บไซต์ / CMS & Free Script / Re: joomla.org โดนแฮก เมื่อ: 14 สิงหาคม 2008, 22:42:17
ในตัวของ Joomla ก็ไม่เท่าไหร่หรอกแต่ส่วนมากจะเกิดจาก โมดูล มากกว่านะครับ...
34  พัฒนาเว็บไซต์ / Programming / Re: ipChecker โปรแกรมดู IP Address ของเครื่องครับใช้ได้ทุก Os ครับ เมื่อ: 14 สิงหาคม 2008, 22:20:23
ลองตัวนี้ชิ่ครับ ==> http://www.itcom4u.com/ip/
Code PHP ไม่กี่บรรทัด ก็สามารถดูได้..
35  พัฒนาเว็บไซต์ / Programming / แจก PHP Shop ดีๆนะครับ...มาเอากันไปโลด เมื่อ: 14 สิงหาคม 2008, 22:19:11
ตัวอย่าง ==>
โค๊ด:
http://demo.deltascripts.com/phpshop/

ดาวน์โหลด ==> Click !!
36  พัฒนาเว็บไซต์ / CMS & Free Script / Re: ==ขอ PHP-nuke ที่ Forum แนบรูปได้หน่อยครับ== เมื่อ: 09 สิงหาคม 2008, 16:22:37
อันนั้นมันเปง บอร์ดของ PHpBB นี่ครับ...ลองไปหา Module มาติดตั้งดูสิ่ครับ..

โค๊ด:
http://phpnuke.org/modules.php?name=News&file=article&sid=1748
37  พัฒนาเว็บไซต์ / CMS & Free Script / Re: ตอนนี้ควรเลือก joomla version ไหนดีครับ เมื่อ: 09 สิงหาคม 2008, 16:16:00
เวอร์ชั่นใหนก็ดีนะครับ..

ส่วนเรื่องความปลอดภัยส่วนมากจะเกิดจาก โมดูล มากกว่า..
38  พัฒนาเว็บไซต์ / Programming / Re: IP Address เมื่อ: 09 สิงหาคม 2008, 15:51:46
Ip จะแจ้งแค่แหล่งให้บริการเช่นใช้ของ TOT ก็จะบอกแค่ของ TOT ซึ่งไม่ได้บอกถึงที่อยู่ ณ ที่ของผู้ใช้บริการ...
39  พัฒนาเว็บไซต์ / Programming / Re: สอบถาม หน่อยครับ หัดทำ ระบบ login เมื่อ: 06 สิงหาคม 2008, 21:08:10
คุณไปเพิ่มค่าอะไรบน หัวมันรึปล่าว....
40  พัฒนาเว็บไซต์ / Programming / Re: อยากทราบว่าเว็บนี้เขาใช้สคริปตัวใหน.. เมื่อ: 14 กรกฎาคม 2008, 19:36:10
คือผมอยากรู้ว่าเขาใช้ระบบอะไรเท่านั้นครับไม่ใช่อยากได้เพราะผมเจออะไรบางอย่างในเว็บเขา....

ถ้ามีใครู้แล้วตอบจะเป็นพระคุณครับ..
หน้า: 1 [2] 3 4 ... 6