蛛丝记录器_PHP
zmsj.php:
// 这个文件名为 zsmj.php
// 函数分析 $_SERVER["HTTP_USER_AGENT"] 信息,如果是搜索机器的特征字,就返回相应的值
// 否则返回 false
// 联系QQ 733905
// email zj#52linux.com (#换成@)
// homepage http://www.52linux.com
// good luck :)
function 52linux.com_zsmj()
{
$useragent = strtolower($_SERVER["HTTP_USER_AGENT"]);
if (strpos($useragent, "googlebot") !== false){
return "Googlebot";
}
if (strpos($useragent, "msnbot") !== false){
return "MSNbot";
}
if (strpos($useragent, "slurp") !== false){
return "Yahoobot";
}
if (strpos($useragent, "baiduspider") !== false){
return "Baiduspider";
}
if (strpos($useragent, "sohu-search") !== false){
return "Sohubot";
}
if (strpos($useragent, "lycos") !== false){
return "Lycos";
}
if (strpos($useragent, "robozilla") !== false){
return "Robozilla";
}
return false;
}
?>
调用方法:
//调用程序
//作者 张建
// QQ 733905
// email zj#52linux.com (#换成@)
// 主页 http://52linux.com
//
//
$mysql_link_host="";
$mysql_link_name="";
$mysql_link_pass="";
$mysql_link_db ="";
// 上面改成符合你的 mysql连接参数
include('zsmj.php');
$sebotname = get_naps_bot();
if($sebotname )
{
$thispage = addslashes($_SERVER["HTTP_REFERER"]);
$sebotagent=addslashes($_SERVER["HTTP_USER_AGENT"]);
$remote_ip=addslashes($_SERVER["REMOTE_ADDR"]);
$sql="INSERT INTO `zsmj` SET botname='$sebotname',bottag='$sebotname',botagent='$sebotagent' ,botlast=NOW(),botlasturl='$thispage',botip='$remote_ip'";
$mysql=@mysql_connect($mysql_link_host,$mysql_link_name,$mysql_link_pass);
@mysql_db_query($mysql_link_db,$sql);
@mysql_close($mysql);
}
print "document.write(\"
?>
数据库设计如下
create database zsmj;
use zsmj;
CREATE TABLE `zsmj` (
`botid` int(10) unsigned NOT NULL auto_increment,
`botname` varchar(100) NOT NULL default "",
`botagent` varchar(200) NOT NULL default "",
`bottag` varchar(100) NOT NULL default "",
`botlast` datetime NOT NULL default "0000-00-00 00:00:00",
`botlasturl` varchar(250) NOT NULL default "",
`botip` varchar(20) NOT NULL default "",
UNIQUE KEY `botid` (`botid`),
KEY `botname` (`botname`)
) TYPE=MyISAM AUTO_INCREMENT=9 ;

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Pinduoduo software provides a lot of good products, you can buy them anytime and anywhere, and the quality of each product is strictly controlled, every product is genuine, and there are many preferential shopping discounts, allowing everyone to shop online Simply can not stop. Enter your mobile phone number to log in online, add multiple delivery addresses and contact information online, and check the latest logistics trends at any time. Product sections of different categories are open, search and swipe up and down to purchase and place orders, and experience convenience without leaving home. With the online shopping service, you can also view all purchase records, including the goods you have purchased, and receive dozens of shopping red envelopes and coupons for free. Now the editor has provided Pinduoduo users with a detailed online way to view purchased product records. method. 1. Open your phone and click on the Pinduoduo icon.

In C language, if statement is usually used to execute a specific block of code based on a single condition. However, multiple conditions can be combined to make a determination using logical operators such as &&, ||, and !. Including using logical AND (&&) to judge multiple conditions, using logical OR (||) to judge at least one condition, using logical NOT (!) to judge the negation of a single condition, as well as nesting if statements and using parentheses to clarify priority.

How to View Command History in Linux In Linux, we use the history command to view the list of all previously executed commands. It has a very simple syntax: history Some options for pairing with the history command include: Option description -c clears the command history for the current session -w writes the command history to a file -r reloads the command history from the history file -n Limit the number of output of recent commands Simply run the history command to see a list of all previously executed commands in a Linux terminal: In addition to viewing command history, you can also manage command history and perform modifications to previously executed commands , reverse search command history or even delete history completely

Call recording in iPhone is often underestimated and is one of the most critical features of iPhone. With its simplicity, this feature is of vital importance and can provide important insights about the calls made or received on the device. Whether for work purposes or legal proceedings, the ability to access call records can prove invaluable. In simple terms, call history refers to the entries created on your iPhone whenever you make or receive a call. These logs contain key information, including the contact's name (or number if not saved as a contact), timestamp, duration, and call status (dialed, missed, or not answered). They are a concise record of your communication history. Call history includes call history strips stored on your iPhone

C# Development Suggestions: Logging and Monitoring System Summary: In the software development process, logging and monitoring systems are crucial tools. This article will introduce the role and implementation suggestions of logging and monitoring systems in C# development. Introduction: Logging and monitoring are essential tools in large-scale software development projects. They can help us understand the running status of the program in real time and quickly discover and solve problems. This article will discuss how to use logging and monitoring systems in C# development to improve software quality and development efficiency. The role of logging system

iPhone lets you add medications to the Health app to track and manage the medications, vitamins and supplements you take every day. You can then log medications you've taken or skipped when you receive a notification on your device. After you log your medications, you can see how often you took or skipped them to help you track your health. In this post, we will guide you to view the log history of selected medications in the Health app on iPhone. A short guide on how to view your medication log history in the Health App: Go to the Health App>Browse>Medications>Medications>Select a Medication>Options&a

How to log and monitor Java development projects 1. Background introduction With the rapid development of the Internet, more and more companies have begun to develop Java and build various types of applications. In the development process, logging and monitoring are an important link that cannot be ignored. Through logging and monitoring, developers can discover and solve problems in time to ensure the stability and security of applications. 2. The importance of logging 1. Problem tracking: When an application error occurs, logging can help us quickly locate the problem.

1. Introduction to if statement The if statement is a branching structure statement that performs different operations according to conditions. The if statement usually consists of a conditional expression and one or more statements. If the value of the conditional expression is true, then the statements in the if statement are executed; otherwise, the if statement block is skipped. The syntax of the if statement is as follows: if(condition)thenstatement;elsestatement;endif; where condition is the conditional expression and statement is the SQL statement that needs to be executed. 2. Introduction to if nested statements An if nested statement refers to nesting one or more if statement blocks within an if statement block to perform different operations based on different conditions.
