会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
东坡肉肉君
我自关山点酒,千秋皆入喉
博客园
首页
新随笔
联系
管理
上一页
1
2
3
4
5
6
7
8
···
21
下一页
2021年3月10日
PwDump的使用
该文被密码保护。
阅读全文
posted @ 2021-03-10 08:05 东坡肉肉君
阅读(3)
评论(0)
推荐(0)
2020年12月7日
Socket网络编程 : 综合训练
摘要: 第二章 题目1 5.试分别构造一个UNIX/Linux与Windows环境下循环UDP服务器例程,要求该服务器例程能够反复读取来自客户的任何请求,且一旦客户的请求中包含"time"字段,则该服务器例程将计算服务器的当前时间,并将该时间值作为响应返回给发送请求的客户。(发送close,服务器断开连接)
阅读全文
posted @ 2020-12-07 21:26 东坡肉肉君
阅读(218)
评论(0)
推荐(0)
2020年11月25日
Socket网络编程: 应用
摘要: 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 东坡肉肉君
阅读(84)
评论(0)
推荐(0)
2020年11月21日
项目日志
该文被密码保护。
阅读全文
posted @ 2020-11-21 22:59 东坡肉肉君
阅读(79)
评论(0)
推荐(0)
2020年11月19日
PTA的刷题记录
摘要: 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 东坡肉肉君
阅读(239)
评论(0)
推荐(0)
2020年11月5日
《TCP/IP网络编程》函数整理
摘要: 第一章 主机序与网络序转换函数 #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 东坡肉肉君
阅读(504)
评论(0)
推荐(1)
2020年11月2日
Socket网络编程: 多进程
摘要: 编程实现创建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 东坡肉肉君
阅读(209)
评论(0)
推荐(0)
2020年10月25日
Jarvis OJ 刷题之旅 【填坑中】
摘要: 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 东坡肉肉君
阅读(812)
评论(0)
推荐(0)
2020年10月20日
unctf2019 简单的备忘录
摘要: https://unctf.hackingfor.fun/#/train 这是unctf2019的题目哟,flag格式:FLAG{} payload: 扒了一圈,人都傻了,还以为数据库里没有,万分感谢ningyu学长的提示哇 query GetAlluser { allUsers{ pageInfo
阅读全文
posted @ 2020-10-20 19:57 东坡肉肉君
阅读(433)
评论(0)
推荐(0)
2020年10月12日
Socket网络编程:文件传输
摘要: 客户端发送文件名给服务器,服务器接受文件名,将对应的文件发送给客户端 基于TCP的Linux文件传输 客户端: #include <stdio.h> #include <sys/socket.h> #include <string.h> #include <arpa/inet.h> #include
阅读全文
posted @ 2020-10-12 12:50 东坡肉肉君
阅读(183)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
21
下一页
公告