Tampilkan postingan dengan label monitoring. Tampilkan semua postingan
Tampilkan postingan dengan label monitoring. Tampilkan semua postingan

Kamis, 05 Desember 2013

Social SEO Spider - Wordpress Social SEO Analytics (SEO)




Modern SEO Optimization with Professional Social SEO Tool


Search Engine Optimization is the key for the websites to get real popularity and traffic. In the past years, the importance of social networks are hardly increased. The top search engines evaluates the websites for the aspects of backlinks and the social shares as well.
The aim of this plugin to gathers all important datas to one place including backlinks number, social shares, keywords density analysis and much more useful informations to increase your website success in the challenge of websites.

Real time analysis for the 8 biggest Social Networks!


All informations real-time and doesn’t save or store any datas in the database, therefore it is clean and safe. You can check any webpage one by one, all of them has a differents shares and likes, but usually the main page is the strongest.




Keywords Density Checker to make your pages perfect


The keywords density checker is strongly recommended to use, with this feature you can build your pages and posts effectively.






Automatically check XML Sitemap


The plugin help you to check the XML sitemap, it will be automatically display the generated page numbers if the sitemap exist. It is a must be plugin for every Wordpress Users, who want to understand, track and increase the traffic of the own website.

Features



  • get shares and likes counts from Facebook, Google+, Twitter, Delicious, LinkedIn, Pinterest, StumbleUpon, VKontakte

  • inbuilt Website Structure Analyzer (check headings, links, images, etc.)

  • keyword density checker

  • Google Sitemap checker and analyzer

  • check Google pagerank, backlinks, indexed pages, last visited time

  • check Facebook likes, links in comments, share counts

  • Alexa global rank, country rank, site speed score

  • ajax loader to avoid long reloadings

  • real-time analysis

  • animated pie charts

  • clean and safe, doesn’t use any database queries

  • you can analyze any page of your website one by one

  • full detailed documentation

  • check top keywords in the content with words counts and percentages

  • works with all major browsers



Important!

This tool always analyze the given URL, when you analyze the domain name it isn’t collect all data from the subpages. It will be analyze the main page of your website separated from the subpages.




WORK WITH US – JUST SPREAD THE WORD



It is very simple, just share the following link on your Blog, Facebook, Twitter or anywhere : http://codecanyon.net/item/social-seo-spider-wordpress-social-seo-analytics/5966589?ref=yourusername (replace yourusername to your Codecanyon username)

When you refer new users you’ll receive 30% of their first purchase or cash deposit! For detailed informations about the referral comission, click here.



Check out the demo pages:






Credits


I owe a big thank you for the following websites:

Rabu, 04 Desember 2013

PHP DosDetector Class (Add-ons)

PHP DosDetector Class Documentation



Version: 1.1


Release: June 2013


Keyword: security, php, class, firewall, DoS Attack, IDS/IPS





1. What is this class?


This PHP Class used for preventing Denial of Service (DoS) attack to your web server written by PHP. Running this script will monitoring all requests from an IP address and logged it into memory cache (PHP APC Caching). If an IP address sends too much request to your server, it will trigger the Intrustion Preventing System (IPS) and auto-ban this IP Address.





2. System Requirement








3. Installation


- First, copy class.dosdetector.php file to your project, such as ./classes/ directory on your project.


- Next, including class.docsdetector.php file.


- Now, just create an object from this class and call run method before the first line of your project (usally in bootstrap, start up or index file) to start monitoring. You can pass an URL to run method in case banned IP will be redirect to passed URL. If you do not pass this parameter, banned IP will see a default message on screen.


- Example code:



//Put this in the beginning of your all page
include_once('./classes/class.dosdetector.php');
$myDosDetector = new DosDetector();

//Default Running
$myDosDetector->run();

//Default Running with Custom Landing Page for Banned IP Access
//$myDosDetector->run('http://url/to/your/landing/page');

//////////////////////////////
// YOUR SITE SOURCE CODE HERE
//....






4. Editable Properties & Constants



  • $ignoreIpAddress: IP Address in this array will be ignored by this detector. Usually your Company IP…

  • PHPIDS_QUOTA_IDS_TRIGGER: if in a second, an IP Address request more than this value will be trigger method idsWorker() in this class. You can implement you code for this function (line 161 in class.dosdetector.php) to get the notification.

  • PHPIDS_DURATION_IPS_TRIGGER: The number of second to check for IPS (auto-banning) trigger.

  • PHPIDS_QUOTA_IPS_TRIGGER: if in PHPIDS_DURATION_IPS_TRIGGER seconds, same IP have more request than this value will be auto-banned by system.




5. Monitoring


- This package came with a standalone script to monitor the traffic (logged by DosDtector class). You can put this script anywhere on your web server (with PHP read permission), and run this script from browser to access monitor tool. Example: http://yoursite.com/monitor.php.


- This page will show all the request (with IP Address, Time, User-Agent, Cookie status, Request URI, Referer URL) logged by DosDetector. Logged Accesses will be cached for 2 hours for performance.


- This page will show you banned IP address (from auto-ban or manual-ban IP Address). You can manual-ban an IP Address if you see that IP request too much and have weird access. Banned IP addresses will not be clear automatically. This banned list only clear by you or by clear from APC cache.


- You can detect whether a request have cookie or not, because a request without cookie is usually a search engine robot (Googlebot,..) or an automatic script crawling/flooding your website.






Thank you!