telnet: 远程登录协议, 23/tcp C/S S:telnet服务器 C:telnet客户端
ssh:Secure SHell, 应用层协议,22/tcp 通信过程及认证过程是加密的, 主机认证 用户认证过程加密 ...
分类:
其他好文 时间:
2014-05-01 10:14:05
阅读次数:
324
我的strcat: 1 char *strcat(char *dest,char *src)
2 { 3 char * reval = dest; 4 while(*dest) 5 dest++; 6 while(*src) 7 *dest++...
分类:
其他好文 时间:
2014-05-01 08:59:02
阅读次数:
484
关于phpweb后台拿shell简单方法。首先登录后台admin.php登录后台管理系统后,然后把下面的文件保存为xxx.html,修改action,把www.xxx.com改成你的目标网站地址。代码文件如下:然后选择你的马儿再上传上传后如果为iis6,就点击查看源码就可以找到马儿的路径了。菜刀链接...
分类:
Web程序 时间:
2014-05-01 08:46:04
阅读次数:
453
良精南方后台简单拿shell作者:qxz_xp 发布:2013-11-02 00:51
分类:菜鸟入门,黑客技术,黑客攻防5条评论首先必须要先登入管理后台。进入后台管理后,在网站地址后面加上
admin/southidceditor/admin_style.asp 这是良精南方的远程编辑器路径。.....
分类:
其他好文 时间:
2014-05-01 08:42:50
阅读次数:
409
1 保留小数点后两位#include cout const char * spilt="/";char
*p;p=strtok(str,spilt);while(p!=NULL){ //cout
#includesort(Rs.begin(),Rs.end());sort(Rs.begin(),Rs...
分类:
编程语言 时间:
2014-05-01 05:05:45
阅读次数:
409
用c语言实现
#include
#include
#include
using namespace std;
typedef struct node
{
char x;
struct node *next;
}chan;
chan *root = new chan;
char a[100010];
int main()
{
while(scanf("%...
分类:
编程语言 时间:
2014-04-29 13:47:20
阅读次数:
358
在Linux系统中,OpenSSH是目前最流行的远程系统登录与文件传输应用,也是传统Telenet、FTP和R系列等网络应用的换代产品。其中,ssh(Secure Shell)可以替代telnet、rlogin和rsh,scp(Secure Copy)与sftp(Secure FTP)能后替代ftp。...
分类:
其他好文 时间:
2014-04-29 13:28:21
阅读次数:
357
使用函数操作链表
1:计算链表中结点的个数:定义一个Length_list()函数用于计算链表中结点的个数
函数代码:
//计算链表中结点的个数
void Length_list(PNODE pHead)
{
PNODE p = pHead->pNext;
int len = 0;
while(NULL != p)
{
len++;
p = p->pNext;
...
分类:
其他好文 时间:
2014-04-29 13:28:21
阅读次数:
302
floyd求最短路。
注意图是有向图。。。
#include
#include
#include
using namespace std;
struct node
{
int x,y,id;
}edge[205];
int dis[205][205];
int main()
{
int c,T,n,a,b,op;
while(scanf("%d",&T...
分类:
其他好文 时间:
2014-04-29 13:21:23
阅读次数:
313