Kaizeku Ban

"So many evil plans, so little time…"

  • Registration is Closed
  • Log-in
  • Home
  • About
    • Comment Policy
    • Disclosure Policy
    • Bookmarks
    • Most used software
  • Downloads
  • Projects
  • RSS
  • Frontpage
  • ›
  • Page 4 of 10
    • Jul
    • 02
    • http://www.gravatar.com/avatar/649985c64185458d259a66f5dd8b1b18?s=58&d=http://blog.kaizeku.com/wp-content/themes/wp-istalker-pb/images/gravatar.png&r=G

    WP 2.6 user defined constantPlugin conflict

    Posted by ck 1 month, 2 weeks ago

    Filed under WordPress & plugins.

    WP 2.6 user defined constant exceprtThe upcoming WordPress 2.6 introduces new user defined constant for specific critical system directory settings. This new improvement may seem like a small “change” but on plugin developer context it can be an impending disaster.WP 2.6 user defined constant exceprt

    wp 2.6 plugin issueThe upcoming WordPress 2.6 introduces new user defined constant for specific critical system directory settings. This new improvement may seem like a small “change” but on plugin developer context it can be an impending disaster.

    wp-config & wp-load files

    Most plugin depend on “absolute path” to wordpress system file (wp-config.php). So the problem is there.

    Lester-chan (GaMerZ) has this to say regarding the new WordPress 2.6 constant change.

    The constant only get loaded when you load WP. Plugins will have problem finding wp-config.php or wp-blog-header.php from the plugin file.

    might be broken in WP 2.6

    require_once('../../../wp-config.php');
    Long story, short

    Below is my workaround for quick plugin activation setup. Its not the best solution as it involved the dirty “write-permission”, it need improvement. If you intent to uses it, there is few preliminary step to be set first:- ↓

    Read the rest of this entry

    Tags:
    • hook, 
    • wp26
    • Rated 3
       
    • No Comments »
    • July 2, 2008 at 4:55 pm
    • July 5, 2008 at 11:18 am
    • 0.3
    • url
    • Jun
    • 14
    • http://www.gravatar.com/avatar/649985c64185458d259a66f5dd8b1b18?s=58&d=http://blog.kaizeku.com/wp-content/themes/wp-istalker-pb/images/gravatar.png&r=G

    goro spam injection patchremote injection

    Posted by ck 2 months, 1 week ago

    Filed under Black Hat¸ WordPress & plugins.

    goro spam injection patch exceprtwordpress goro spam injection patchgoro spam injection patch exceprt

    goro spam injectionSince early 2007 I been monitoring this famous WordPress spam injection that only target high PR wordpress blogs like Al gore, blake ross, bluehost CEO to name a few.

    PHP create_function()

    The new variant from wordpress.net.in & qwetro.com used the “anonymous PHP create_function” to append their spam links on their victim blog. Below is quick patch to disabled the mischievous “create_function” injection on wp_head.

    The below code will look for “�lambda_n” function inside wp_head wp_filters array and remove the action hook silently. I assume that any sane developer will never used this unstable PHP function.

    /**
     * Remove create_function action hook
     * append on wordpress wp_head filters
     *
     * @author Avice De'véreux <ck@kaizeku.com>
     * @copyright Copyright (c) 2006 Avice De'véreux
     * @version 1.0
     * @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
     * @link http://blog.kaizeku.com/wordpress/goro-spam-injection-wp-head-patch/
     */
    function remove_create_function_action()
    { global $wp_filter;
    
    	$action_ref	= 'wp_head';
    	$filter 	= $wp_filter[$action_ref];
    	$_lambda	= array();
    
    	foreach(range(1,10) as $priority){
    
    		if (isset($filter[$priority]))
    		{
    			foreach($filter[$priority] as $registered_filter ){
    
    				$callback = (string) $registered_filter['function'];
    
    				if ( preg_match("/lambda/", $callback) ) {
    		 	 		$_lambda[$priority][] = $callback;
    				}
    			}
    
    		}
    	}
    
    	if ( count($_lambda) >= 0 ){
    
    		foreach($_lambda as $priority => $callback) {
    			if ( has_filter($action_ref,$callback) ){
    				remove_filter($action_ref, $callback, $priority, 1);
    			}
    		}
    	}
    }
    
    add_action('init','remove_create_function_action');
    

    Read the rest of this entry

    Tags:
    • blackhat, 
    • goro, 
    • injection, 
    • lambda-style, 
    • Owned, 
    • parasite host, 
    • security, 
    • vulnerability
    • Rated 3
       
    • 2 Comments »
    • June 14, 2008 at 6:58 pm
    • July 1, 2008 at 3:53 am
    • 0.3
    • url
    • Jun
    • 08
    • http://www.gravatar.com/avatar/649985c64185458d259a66f5dd8b1b18?s=58&d=http://blog.kaizeku.com/wp-content/themes/wp-istalker-pb/images/gravatar.png&r=G

    Themes plugin dependenciesAction and hook

    Posted by ck 2 months, 1 week ago

    Filed under Themes & WordPress.

    Themes plugin dependencies exceprtWordpress Designer theme guide on implementing plugins for public release.Themes plugin dependencies exceprt

    Wordpress theme plugin dependenciesA good theme designer should avoid the need to relies on third party plugins.

    Is plugin deactivated

    bunnyUnfortunately, some WordPress theme out there has a “major pending headache” for plugin dependencies breakdown sydrome. Because of this un-friendly trends there is bound shit to happen when the specific plugin is not maintain properly or on certain case of a sudden WordPress upgrade render the plugin useless (this happen a lot when previous WP 2.3 release).

    To make it worse some ignorant-end-user decide “not to” upgrade their WordPress blog because their favorites theme’s has this specific plugins that will only work with previous vulnerability WordPress version & thus the never ending quotes war begin.

    Read the rest of this entry

    Tags:
    • hook, 
    • web design, 
    • WordPress
    • Rated 3
       
    • 4 Comments »
    • June 8, 2008 at 11:06 am
    • June 30, 2008 at 5:24 pm
    • 0.3
    • url
    • May
    • 31
    • http://www.gravatar.com/avatar/649985c64185458d259a66f5dd8b1b18?s=58&d=http://blog.kaizeku.com/wp-content/themes/wp-istalker-pb/images/gravatar.png&r=G

    Wakoopa most used softwareshortcode

    Posted by ck 2 months, 3 weeks ago

    Filed under plugins & shortcode.

    Wakoopa most used software exceprtTrack what you use, share it with others.Wakoopa most used software exceprt

    Wakoopa Shortcode Plugin pin previewThis is shortcode plugin (WP 2.5.x) for showing your Wakoopa most used software (via JSONP). demo.

    Download

    • WP Wakoopa Shortcode 1.0 121 hits
    • Alternative download at wp-wakoopa.googlecode

    Installation

    1. Download, extract & upload the zip file content to WordPress Plugins directory /wp-content/plugins/.
    2. Go to your WordPress Admin Dashboard → Plugins menu.
    3. Activate “WP Wakoopa Shortcode”

    Read the rest of this entry

    Tags:
    • json, 
    • wakoopa, 
    • WordPress
    • Rated 4
       
    • 3 Comments »
    • May 31, 2008 at 7:31 am
    • July 5, 2008 at 10:30 am
    • 0.3
    • url
    • May
    • 21
    • http://www.gravatar.com/avatar/649985c64185458d259a66f5dd8b1b18?s=58&d=http://blog.kaizeku.com/wp-content/themes/wp-istalker-pb/images/gravatar.png&r=G

    AP-iStalker 1.6Animepaper themes

    Posted by ck 3 months ago

    Filed under Animepaper & Userpage.

    AP-iStalker 1.6 exceprtChopper is my new plot device cum place holder for paddingAP-iStalker 1.6 exceprt

    ap-istalker 1.6This are the third release for this year. I like the new color scheme. Its much lighter, less gray & no “birdy”. The birdy kind of hurts my eyes (some people thinks it a mayflies).stalker bunny crunching

    So I happily replaced the base64 stalker birdy with Tonī Tonī Choppā トニートニー・チョッパー (from One Piece series).

    Chopper is my new plot device cum place holder for padding. You can see him in action somewhere between the main journal and “about me” block.

    Read the rest of this entry

    Tags:
    • CSS, 
    • iStalker
    • Rated 5
       
    • 6 Comments »
    • May 21, 2008 at 2:17 pm
    • June 30, 2008 at 4:25 pm
    • 0.3
    • url
    • May
    • 19
    • http://www.gravatar.com/avatar/649985c64185458d259a66f5dd8b1b18?s=58&d=http://blog.kaizeku.com/wp-content/themes/wp-istalker-pb/images/gravatar.png&r=G

    WPI Cross Browser Support

    Posted by ck 3 months ago

    Filed under Themes¸ WordPress & wpistalker.

    WPI Cross Browser Support exceprtWp-iStalker Cross browser CSS & Scripts Guide.WPI Cross Browser Support exceprt

    istalker-css-autoload1 If you are frustrated that certain WPI version (i.e., public & beta) doesn’t support MSIE. I intentionally did that (just) to annoyed Microhoo and the rest of MSIE users (that is 70% of internet population).

    Cross Browser Autoload

    Before you stalked me, WPI WordPress theme has a build in function for auto-loading cross browser stylesheet and script files. This function is available since our first release.

    How to load Browser specific CSS & Scripts?

    We asume you are using the crappy broken MSIE 6 browser running on Windows XP.
    When WPI theme load it will look for specific stylesheet & script files like below list.

    • stylesheet → /themes/wp-istalker/css/ ↓
      1. ie.css
      2. ie-6.css
      3. winxp.css
    • javascript → /themes/wp-istalker/scripts/ ↓
      1. ie.js
      2. ie-6.js
      3. winxp.js

    If any of the files exists, It will queue the specific files and append it to the master file then proceed with minified → crunch → combine → gzip or deflate (if the ua allowed it) and send it to the browser as a single file. Walla
    Read the rest of this entry

    Tags:
    • CSS, 
    • hook, 
    • Internet Browser, 
    • theme
    • Rated 3
       
    • No Comments »
    • May 19, 2008 at 10:48 am
    • June 30, 2008 at 4:32 pm
    • 0.3
    • url
Page 4 of 10  « First...«23456»...Last »
  •  Kaizeku Ban

    chaoskaizer kaizeku ban I'm Avice (Chaoskaizer) De’véreux and I welcome you on my site, which is my technical playground and web log.
  •  Pages

    • About
    • Downloads
    • Projects
  •  Taxonomy

    2.6 Animepaper badge blackhat blogosphere blueprint code_view CSS css reset filters firefox3 firefox_vulnerability gd geshi Google goro grid css hook iStalker lunarpages memory_corruption microsoft mozilla no-script Owned pagerank safari security SEO seo+game social_network spam stylesheet theme traffic_sharing Trends typography update vulnerability wakoopa wallpaper web design widget WordPress wp26
  •  Topics

    • Animepaper (9)
    • Black Hat (3)
    • CSS (3)
    • Flickr (2)
    • Gallery (1)
    • Google (3)
    • Internet Browser (2)
    • iStalker (2)
    • JavaScript (4)
    • Mozilla Firefox (4)
    • Music (1)
    • Owned (1)
    • Photoshop (3)
    • plugins (3)
    • ranting (3)
    • Resources (1)
    • SEO (2)
    • shortcode (2)
    • Themes (3)
    • Traffic Sharing (1)
    • tutorial (1)
    • Userpage (4)
    • Wallpapers (1)
    • Web Crawler (1)
    • Web Services (3)
    • WordPress (18)
    • wpistalker (6)
  •  RSS Wakoopa

    • foobar2000 August 20, 2008
    • Firefox August 20, 2008
    • BlazeDVD August 20, 2008
    • Media Player Classic August 20, 2008
    • Azureus Vuze August 20, 2008
    • Zoom Player August 20, 2008
  •  Archives

    • August 2008
    • July 2008
    • June 2008
    • May 2008
    • March 2008
    • February 2008
    • October 2007
    • September 2007
    • August 2007
    • July 2007
    • June 2007
  •  Blogroll

    • animepaper
    • artician
    • Chris Hutchinson
    • deviantArt
    • Noah Ark
    • Sakurab

top© copyright 2006 - 2008, Kaizeku Ban.

XHTML XML CSS 508