Devilzc0de Forum Follow @devilzc0de
  • Home
  • Hacking
  • Networking
  • Programming
  • O.S
  • Server
  • Tweets
  • Search
  • Member List
  • Calendar
Current time: 06-19-2013, 08:22 AM Hello There, Guest! (Login — Register)
Devilzc0de Forum › Information Technology › Blogs and CMS › General v
« Previous 1 2 3 4 5 6

(ask) cara patch website yg ada bugnya

Home General Computer Multimedia Business Lounge

Post Reply 
Tweet
Threaded Mode | Linear Mode
(ask) cara patch website yg ada bugnya
05-09-2011, 04:39 PM
Post: #1
Mr.ping Online
./Devilz Advisor
Posts: 605
Joined: Jul 2010
Reputation: 13
(ask) cara patch website yg ada bugnya
om2 semua, ane mau tanya gmn cara ngepatch website yg ada bugnya???
Find all posts by this user
Quote this message in a reply
05-09-2011, 04:42 PM
Post: #2
tian hv Offline
./Sampah Masyarakat
Posts: 486
Joined: Mar 2010
Reputation: 18
RE: (ask) cara patch website yg ada bugnya
kasih link dong om ntah pic..
klo gini ya mana bisa omz..
prustasi
Visit this user's website Find all posts by this user
Quote this message in a reply
05-09-2011, 04:47 PM
Post: #3
Mr.ping Online
./Devilz Advisor
Posts: 605
Joined: Jul 2010
Reputation: 13
RE: (ask) cara patch website yg ada bugnya
(05-09-2011 04:42 PM)tian hv Wrote:  kasih link dong om ntah pic..
klo gini ya mana bisa omz..
prustasi

misalnya ini om, bug CMS balitbang
Code:
http://www.sman2sekayu.sch.id/editor/filemanager/connectors/test.html
Find all posts by this user
Quote this message in a reply
05-09-2011, 04:53 PM
Post: #4
KataM Offline
./Devilz Commodore
Posts: 1,231
Joined: Feb 2011
Reputation: 41
RE: (ask) cara patch website yg ada bugnya
(05-09-2011 04:47 PM)Mr.ping Wrote:  
(05-09-2011 04:42 PM)tian hv Wrote:  kasih link dong om ntah pic..
klo gini ya mana bisa omz..
prustasi

misalnya ini om, bug CMS balitbang
Code:
http://www.sman2sekayu.sch.id/editor/filemanager/connectors/test.html

ane rasa ,, ente harus belajar PHP,, pasrah prustasi
Find all posts by this user
Quote this message in a reply
05-09-2011, 04:59 PM
Post: #5
eidelweiss Away
Devilzc0der
*****
DC Security Grup
Posts: 1,551
Joined: Mar 2010
Reputation: 69
RE: (ask) cara patch website yg ada bugnya
(05-09-2011 04:47 PM)Mr.ping Wrote:  
(05-09-2011 04:42 PM)tian hv Wrote:  kasih link dong om ntah pic..
klo gini ya mana bisa omz..
prustasi

misalnya ini om, bug CMS balitbang
Code:
http://www.sman2sekayu.sch.id/editor/filemanager/connectors/test.html

CMS balitbang bug nya pada fckeditor bisa di liat di sini om:

VULN CMS BALITBANG

yaitu remote file upload (shell upload or etc)

patch:

salah satu cara ngepatch nya dari saya..
pada configuration di fckeditor nya..

Code:
/editor/filemanager/connectors/php/config.php

global $Config ;

// SECURITY: You must explicitly enable this "connector". (Set it to "true").
// WARNING: don't just set "$Config['Enabled'] = true ;", you must be sure that only
//      authenticated users can access this file or use some kind of session checking.
$Config['Enabled'] = true ; // <= 1

---

// Path to user files relative to the document root.
$Config['UserFilesPath'] = 'http://localhost/webtemp/userfiles/' ;  // <= here is the path of attacker file or shell backdoor will be placed.

// following setting enabled.
$Config['ForceSingleExtension'] = true ;    // <= 2

ubah menjadi "false"
Visit this user's website Find all posts by this user
Quote this message in a reply
05-09-2011, 05:21 PM
Post: #6
Mr.ping Online
./Devilz Advisor
Posts: 605
Joined: Jul 2010
Reputation: 13
RE: (ask) cara patch website yg ada bugnya
(05-09-2011 04:53 PM)KataM Wrote:  
(05-09-2011 04:47 PM)Mr.ping Wrote:  
(05-09-2011 04:42 PM)tian hv Wrote:  kasih link dong om ntah pic..
klo gini ya mana bisa omz..
prustasi

misalnya ini om, bug CMS balitbang
Code:
http://www.sman2sekayu.sch.id/editor/filemanager/connectors/test.html

ane rasa ,, ente harus belajar PHP,, pasrah prustasi

iya om pengennya sih gitu, mudah2an bisa pasrah
(05-09-2011 04:59 PM)eidelweiss Wrote:  
(05-09-2011 04:47 PM)Mr.ping Wrote:  
(05-09-2011 04:42 PM)tian hv Wrote:  kasih link dong om ntah pic..
klo gini ya mana bisa omz..
prustasi

misalnya ini om, bug CMS balitbang
Code:
http://www.sman2sekayu.sch.id/editor/filemanager/connectors/test.html

CMS balitbang bug nya pada fckeditor bisa di liat di sini om:

VULN CMS BALITBANG

yaitu remote file upload (shell upload or etc)

patch:

salah satu cara ngepatch nya dari saya..
pada configuration di fckeditor nya..

Code:
/editor/filemanager/connectors/php/config.php

global $Config ;

// SECURITY: You must explicitly enable this "connector". (Set it to "true").
// WARNING: don't just set "$Config['Enabled'] = true ;", you must be sure that only
//      authenticated users can access this file or use some kind of session checking.
$Config['Enabled'] = true ; // <= 1

---

// Path to user files relative to the document root.
$Config['UserFilesPath'] = 'http://localhost/webtemp/userfiles/' ;  // <= here is the path of attacker file or shell backdoor will be placed.

// following setting enabled.
$Config['ForceSingleExtension'] = true ;    // <= 2

ubah menjadi "false"

makasih om pencerahannya mantap asik
Find all posts by this user
Quote this message in a reply
08-10-2011, 02:21 PM
Post: #7
dewancc Offline
./Devilz Commander
Posts: 311
Joined: Dec 2009
Reputation: 1
RE: (ask) cara patch website yg ada bugnya
(05-09-2011 04:59 PM)eidelweiss Wrote:  
(05-09-2011 04:47 PM)Mr.ping Wrote:  
(05-09-2011 04:42 PM)tian hv Wrote:  kasih link dong om ntah pic..
klo gini ya mana bisa omz..
prustasi

misalnya ini om, bug CMS balitbang
Code:
http://www.sman2sekayu.sch.id/editor/filemanager/connectors/test.html

CMS balitbang bug nya pada fckeditor bisa di liat di sini om:

VULN CMS BALITBANG

yaitu remote file upload (shell upload or etc)

patch:

salah satu cara ngepatch nya dari saya..
pada configuration di fckeditor nya..

Code:
/editor/filemanager/connectors/php/config.php

global $Config ;

// SECURITY: You must explicitly enable this "connector". (Set it to "true").
// WARNING: don't just set "$Config['Enabled'] = true ;", you must be sure that only
//      authenticated users can access this file or use some kind of session checking.
$Config['Enabled'] = true ; // <= 1

---

// Path to user files relative to the document root.
$Config['UserFilesPath'] = 'http://localhost/webtemp/userfiles/' ;  // <= here is the path of attacker file or shell backdoor will be placed.

// following setting enabled.
$Config['ForceSingleExtension'] = true ;    // <= 2

ubah menjadi "false"

Thanks bang...
*solusi lngsung dari pentestnya ketawa
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


Topic Tools
Topic Link :
BBCode :
HTML Code :
View a Printable Version Send Thread to a Friend Subscribe to this thread
Submit Google Submit Face book Submit to Digg Submit to Reddit Submit to Furl Submit to Del.icio.us Submit to Jeqq

Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Cara Mengamankan myBB cliquersz 4 552 04-19-2013 02:35 PM
Last Post: brianfahmi
  [Ask] Cara Buat MOD dan Auto Mod di phpbb33 gimana ? â„¢NewOrder 5 256 12-08-2012 06:21 AM
Last Post: â„¢NewOrder
  [Solved] Cara ganti Nama Kyak Gini? brianfahmi 6 245 11-23-2012 10:24 PM
Last Post: ditatompel
  [Ask] Ada yang punya source Flash website?? dzawa 2 252 07-07-2012 02:44 PM
Last Post: dzawa
  [Ask] bagaimana cara mendesign agar blok lebih menarik ??? oktori yusan 27 1,012 06-05-2012 11:08 PM
Last Post: oktori yusan
  [Solved] Cara buat sidebar mybb dan ini dzawa 6 487 05-28-2012 12:03 PM
Last Post: chiboga
  [Ask] Cara mencari bilangan yang habis di bagi 3 di excel jackerp 7 815 03-25-2012 09:04 PM
Last Post: jackerp
  [ASK] Cara Masang Addon Sharetronix gysu 8 865 03-22-2012 12:07 PM
Last Post: Si Cupu
  [Ask] Gimana Cara Upload Mybb Ke Hosting chiboga 13 1,659 03-16-2012 05:25 PM
Last Post: 31fahmi
  [Ask] ada yg tau plugin shoutbox dan overview mybb gak, dan cara installnya rypto 7 1,042 03-10-2012 12:39 PM
Last Post: poticous

Users Browsing
1 Guest(s)

  • Contact Us
  • devilzc0de
  • Return to Top
  • Mobile Version
  • RSS Syndication
  • Help
Current time: 06-19-2013, 08:22 AM Powered By MyBB, © 2002-2013 MyBB Group. Theme created by Justin S. | Mixed By Chaer.Newbie | Fixed By Aditya

USING THIS SITE INDICATES THAT YOU HAVE READ AND ACCEPT OUR TERMS. IF YOU DO NOT ACCEPT THESE TERMS, YOU ARE NOT AUTHORIZED TO USE THIS SITE