上一页 1 2 3 4 5 6 7 8 ··· 21 下一页
该文被密码保护。 阅读全文
posted @ 2021-03-10 08:05 东坡肉肉君 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 第二章 题目1 5.试分别构造一个UNIX/Linux与Windows环境下循环UDP服务器例程,要求该服务器例程能够反复读取来自客户的任何请求,且一旦客户的请求中包含"time"字段,则该服务器例程将计算服务器的当前时间,并将该时间值作为响应返回给发送请求的客户。(发送close,服务器断开连接) 阅读全文
posted @ 2020-12-07 21:26 东坡肉肉君 阅读(207) 评论(0) 推荐(0) 编辑
摘要: ftp服务器 客户端 #include<stdio.h> #include<stdlib.h> #include<string.h> #include<errno.h> #include<sys/socket.h> #include<arpa/inet.h> #include<netinet/in. 阅读全文
posted @ 2020-11-25 00:24 东坡肉肉君 阅读(79) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-11-21 22:59 东坡肉肉君 阅读(79) 评论(0) 推荐(0) 编辑
摘要: L1 Hello World! #include<iostream> using namespace std; int main() { cout<<"Hello World!"; return 0; } 打印沙漏 #include<stdio.h> #include<math.h> #includ 阅读全文
posted @ 2020-11-19 15:32 东坡肉肉君 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 第一章 主机序与网络序转换函数 #include<netinet/in.h>uint32_t htonl(uint32_t hosttolong);uint32_t ntohl(uint32_t nettohostlong);uint16_t htons(uint16_t hosttoshort); 阅读全文
posted @ 2020-11-05 09:31 东坡肉肉君 阅读(473) 评论(0) 推荐(1) 编辑
摘要: 编程实现创建2个新进程,每个新进程负责打印出: (1)“Hello!My father is+父进程号” (2)“I am +子进程号” (3)50以内的质数 #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <s 阅读全文
posted @ 2020-11-02 21:13 东坡肉肉君 阅读(204) 评论(0) 推荐(0) 编辑
摘要: IN A Mess :PHP 连出题人自己都忘了flag放哪了,只记得好像很混乱的样子。 题目入口:http://web.jarvisoj.com:32780/ 题解: f12获得源码: <?php error_reporting(0); echo "<!--index.phps-->"; if(! 阅读全文
posted @ 2020-10-25 08:26 东坡肉肉君 阅读(777) 评论(0) 推荐(0) 编辑
摘要: https://unctf.hackingfor.fun/#/train 这是unctf2019的题目哟,flag格式:FLAG{} payload: 扒了一圈,人都傻了,还以为数据库里没有,万分感谢ningyu学长的提示哇 query GetAlluser { allUsers{ pageInfo 阅读全文
posted @ 2020-10-20 19:57 东坡肉肉君 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 客户端发送文件名给服务器,服务器接受文件名,将对应的文件发送给客户端 基于TCP的Linux文件传输 客户端: #include <stdio.h> #include <sys/socket.h> #include <string.h> #include <arpa/inet.h> #include 阅读全文
posted @ 2020-10-12 12:50 东坡肉肉君 阅读(173) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 21 下一页