Author: darkness[bst]
msn:cqxy[at]21cn.net
I have learned PHP for 2 months and gained a lot. But unlike others, I prefer socket.php There are too few articles on sockets. So I decided to write a series of php-socket reading notes. From the most basic to socket_raw.
Examples + experiences. The examples will include port forwarding (breaking through firewalls), dynamic network types exp, port scanning, php backdoor, outsourcing exp framework. Due to study reasons, I can only write one article per week. Volume 1 is given now. I hope everyone can invest in php shell programming.
Foreword:
php is one of the most popular scripting languages in the world. It has been widely used in web programming. What I want to say is that php is not only excellent in web, but also excellent in shell. It's just that people are more accustomed to using perl to write shell scripts. I would like to state here that I am not a PHP expert and have only been exposed to PHP for a few weeks. This is just a reading note. Please point out any errors. You can also send me an email and discuss php together.
Pre-requisite knowledge:
What attracts me most about PHP is the sockets extension. In fact, I can simply use VB winsock, and I can write a commonly used winsock program using VB. But I still chose php. Because it is cross-platform.
php does not support advanced sockets by default, and only supports several functions such as "encapsulated" fsockopen. As an extension of php, socket needs to be set up to support it. In windows you need to set up php. ini, in php. ini, find the line "windows extensions" and remove the semicolon in front of "extension=php_sockets.dll". that’s ok. Under *nix, you need to add the -enable-sockets command when compiling. When not using the dl() function, your php must be in the same directory as php_sockets.dll. Ok, the php socket configuration is completed.
The following is the problem of running.
It is very simple to run the php script in the terminal. Under windows, c:phpphp.exe ╟q test.php, under *nix, the php file must be declared in advance to be executed by php, just like perl. Like #!/usr/local/bin/php ╟q ., and then ./test.php. Parameter q means not to output php header information.
Input parameter problem:
Some people say how to input parameters in php shell. On the web, you can enter parameters like this http://xxx.com/aa.php?Parameter 1=xxxx&Parameter 2=ssssss. It doesn't matter that php is the same as perl and has similar parameter functions. Let’s look at the official description
“argv”
The parameters passed to the script. When the script is run in command-line mode, the argv variable is passed to the program as C-style command-line arguments. When the get method is called, this variable contains the requested data.
"argc"
Contains the number of command line arguments passed to the program (if running in command line mode).
Haha, to put it simply. Let me give you an example
The following is the code:
[ctrl+a select all]
I think you should understand, here argc[0] refers to the program itself . You can also do it like this.
print(%s,$argv[1]);
I spent an hour at the Internet cafe at noon to write this short paragraph
The previous paragraph talks about running in command line mode. For more information, please refer to
http://www.php.net/manual/zh/features.commandline.php
1.fopen application
fopen It can also be called an encapsulated socket function. Not only used for file reading and writing, but also for sockets. fopen is equivalent to the inet control/class of other high-level languages. Compared with fsockopen, it has more advanced operations on URLs.
How to use fopen
$s = fopen ($url, mode);
The mode attribute of fopen:
mode Description
r Open in read-only mode, point the file pointer to File header.
r+ opens in read-write mode and points the file pointer to the file header.
w opens in writing mode, points the file pointer to the file header and truncates the file size to zero. If the file does not exist, try to create it.
w+ opens in read-write mode, points the file pointer to the file header and truncates the file size to zero. If the file does not exist, try to create it.
a opens in writing mode and points the file pointer to the end of the file. If the file does not exist, try to create it.
a+ opens in read-write mode and points the file pointer to the end of the file. If the file does not exist, try to create it.
x is created and opened for writing, pointing the file pointer to the file header. If the file already exists, the fopen() call fails and returns false and generates an e_warning level error message. If the file does not exist, try to create it. This is equivalent to specifying the o_excl|o_creat flag to the underlying open(2) system call. This option is supported by PHP 4.3.2 and later, and can only be used for local files.
x+ creates and opens it for reading and writing, pointing the file pointer to the file header.If the file already exists, the fopen() call fails and returns false and generates an e_warning level error message. If the file does not exist, try to create it. This is equivalent to specifying the o_excl|o_creat flag to the underlying open(2) system call. This option is supported by PHP 4.3.2 and later, and can only be used for local files.
is used for local file operations and can also be used for inet. Isn’t it very cool?
Suppose you want to test whether the iis directory of a website has write permission.
You can write like this
$s = fopen("http://www.bugkidz.org","x+") or die("No write permission exists ”)
If it exists, you can continue to construct the following statement. Use fwrite to write files remotely.
But general websites have read-only permissions
$s =fopen("http://www.bugkidz.org/index.php?id=1","r" );
In this way, the content of http://www.bugkidz.org/index.php?id=1 is read, but it must be processed to obtain the complete file content
This way
while (!feof($s)) {
echo fgets($s, 1024);
}
I think fopen is the most convenient for sql injection.
function phpinet($url)
{
fopen($url,"r") or die("Error opening url");
while (!feof($ s)) {
$cahe = fgets($s, 1024);
}
retrun $cahe;
fclose($s)
}
This function is equivalent to inet.openurl in VB
Usage of fsockopen family functions
fsockopen is also an encapsulated socket function. It is somewhat similar to the winsock control in VB. Regrettably, it supports active socket connection and does not support bind, listen, etc. If you need to implement these functions, you must use advanced socket programming in PHP. Even so, the fsockopen function can meet most needs.
Use fsockopen like this
resource fsockopen ( string target, int port [, int errno [, string errstr [, float timeout]]])
Example:
$sock = fsockopen(" 192.168.0.1",80,$errno,$errstr,30);
The first two are the address and port, the middle two are error-related variables, and the last is the timeout setting.
Usually $sock = fsockopen("192.168.0.1",80); This is enough.
$sock = fsockopen("192.168.0.1",80); This is a typical TCP connection. The UDP connection is like this
$sock = fsockopen("udp://192.168.0.1",53);
It is also possible to use this to write a TFTP client.
Fsockopen application examples:
Example 1, simple HTTP session.
Code
The following is the code:
[ctrl+a select all]
The process is generally like this
Create the fsockopen resource, define the sending content, and use the fwrite function or fputs function Write the definition content and output the obtained content line by line until the end of the file is reached. Use the fgets function or fread. Use fclose to close the created fsockopen resource.
ANGEL has written a PHP port scanning tool and posted it
http://www.4ngel.net/article/20.htm
Select fsockopen to write The simple EXP sending framework is definitely a good idea. becozitssoeasy.
Look at my PHP upload vulnerability exploit.
Code
The following is the code:

计算机编程中常见的if语句是条件判断语句。if语句是一种选择分支结构,它是依据明确的条件选择选择执行路径,而不是严格按照顺序执行,在编程实际运用中要根据程序流程选择适合的分支语句,它是依照条件的结果改变执行的程序;if语句的简单语法“if(条件表达式){// 要执行的代码;}”。

前言本文继续来介绍Python集合模块,这次主要简明扼要的介绍其内的命名元组,即namedtuple的使用。闲话少叙,我们开始——记得点赞、关注和转发哦~ ^_^创建命名元组Python集合中的命名元组类namedTuples为元组中的每个位置赋予意义,并增强代码的可读性和描述性。它们可以在任何使用常规元组的地方使用,且增加了通过名称而不是位置索引方式访问字段的能力。其来自Python内置模块collections。其使用的常规语法方式为:import collections XxNamedT

作为一门高效的编程语言,Go在图像处理领域也有着不错的表现。虽然Go本身的标准库中没有提供专门的图像处理相关的API,但是有一些优秀的第三方库可以供我们使用,比如GoCV、ImageMagick和GraphicsMagick等。本文将重点介绍使用GoCV进行图像处理的方法。GoCV是一个高度依赖于OpenCV的Go语言绑定库,其

最近,PHP8.0发布了一个新的邮件库,使得在PHP中发送和接收电子邮件变得更加容易。这个库具有强大的功能,包括构建电子邮件,发送电子邮件,解析电子邮件,获取附件和解决电子邮件获得卡住的问题。在很多项目中,我们都需要使用电子邮件来进行通信和一些必备的业务操作。而PHP8.0中的邮件库可以让我们轻松地实现这一点。接下来,我们将探索这个新的邮件库,并了解如何在我

随着PHP8.0的发布,DOMDocument作为PHP内置的XML解析库,也有了新的变化和增强。DOMDocument在PHP中的重要性不言而喻,尤其在处理XML文档方面,它的功能十分强大,而且使用起来也十分简单。本文将介绍PHP8.0中DOMDocument的新特性和应用。一、DOMDocument概述DOM(DocumentObjectModel)

Python 中的 main 函数充当程序的执行点,在 Python 编程中定义 main 函数是启动程序执行的必要条件,不过它仅在程序直接运行时才执行,而在作为模块导入时不会执行。要了解有关 Python main 函数的更多信息,我们将从如下几点逐步学习:什么是 Python 函数Python 中 main 函数的功能是什么一个基本的 Python main() 是怎样的Python 执行模式Let’s get started什么是 Python 函数相信很多小伙伴对函数都不陌生了,函数是可

PHP8.0是PHP语言的最新版本,自发布以来已经引发了广泛的关注和争议。其中,最引人瞩目的新特性之一就是Symbol类型。Symbol类型是PHP8.0中新增的一种数据类型,它类似于JavaScript中的Symbol类型,可用于表示独一无二的值。这意味着,两个Symbol类型的值即使完全相同,它们也是不相等的。Symbol类型的使用可以避免在不同的代码段

两年多前,Adobe 发布了一则引人关注的公告 —— 将在 2020 年 12 月 31 日终止支持 Flash,宣告了一个时代的结束。一晃两年过去了,Adobe 早已从官方网站中删除了 Flash Player 早期版本的所有存档,并阻止基于 Flash 的内容运行。微软也已经终止对 Adobe Flash Player 的支持,并禁止其在任何 Microsoft 浏览器上运行。Adobe Flash Player 组件于 2021 年 7 月通过 Windows 更新永久删除。当 Flash


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

Dreamweaver Mac version
Visual web development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

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