上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页
摘要: mariadb 一、用户新建与权限 新建用户(管理员权限) #查看用户列表 select host,user,authentication_string from mysql.user; #新建用户 insert into mysql.user(user,host,password) values( 阅读全文
posted @ 2022-05-28 17:40 nsfoxer 阅读(205) 评论(0) 推荐(0)
摘要: VIM使用 | 操作 | 效果 | | : : | : : | | f | | | t | 只把光标移动到目标字符的前一个字符上 | | [num]% | "50%" 移动到文件的中间, 而 "90%" 移到差不多结尾的位置 | | % | 括号匹配 | | CTRL-U | 向下(文本向上)滚动半 阅读全文
posted @ 2022-05-28 17:40 nsfoxer 阅读(49) 评论(0) 推荐(0)
摘要: ​ 懂了!VMware/KVM/Docker原来是这么回事儿 云计算时代,计算资源如同小马哥当年所言,已经成为了互联网上的水和电。 虚拟主机、web服务器、数据库、对象存储等等各种服务我们都可以通过各种各样的云平台来完成。 而在云计算欣欣向荣的背后,有一个重要的功臣,那就是虚拟化技术。可以毫不客气的 阅读全文
posted @ 2022-05-28 17:40 nsfoxer 阅读(60) 评论(0) 推荐(0)
摘要: 进程 进程号 getpid() pid_t getpid(void) ​ Linux内核2.4与其更早版本,进程号上限32767。上限由内核常量PID_MAX定义。Linux2.6之后可更改/proc/sys/kernel/pid_max。内核参数修改:/etc/sysctl.d/99-sysctl 阅读全文
posted @ 2022-05-28 17:40 nsfoxer 阅读(35) 评论(0) 推荐(0)
摘要: 多线程 Hello world线程 线程创建pthread_create() int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine) (void *), void *arg); 阅读全文
posted @ 2022-05-28 17:40 nsfoxer 阅读(51) 评论(0) 推荐(0)
摘要: cmd 渗透 下载文件 vbs iLocal = LCase(WScript.Arguments(1)) iRemote = LCase(WScript.Arguments(0)) Set xPost = CreateObject("Microsoft.XMLHTTP") xPost.Open "G 阅读全文
posted @ 2022-05-28 17:40 nsfoxer 阅读(50) 评论(0) 推荐(0)
摘要: cmd防火墙 管理员权限 netsh firewall set opmode mode=disable #防火墙关闭 netsh firewall set opmode mode=enable #防火墙开启 防火墙配置查看 netsh advfirewall firewall show rule n 阅读全文
posted @ 2022-05-28 17:40 nsfoxer 阅读(68) 评论(0) 推荐(0)
摘要: 查找进程文件位置 wmic 1. 使用get查询 wmic process get name,executablepath 2 无条件查询 wmic process list brief wmic process list full 3 加where条件查询 wmic process where n 阅读全文
posted @ 2022-05-28 17:40 nsfoxer 阅读(223) 评论(0) 推荐(0)
摘要: U1FMaXRlIGZvcm1hdCAzABAAAgIAQCAgAAABJgAAAAYAAAAAAAAAAAAAAAIAAAAEAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEmAC5XSA0AAAACDaAADmUNoA 阅读全文
posted @ 2022-05-28 17:40 nsfoxer 阅读(40) 评论(0) 推荐(0)
摘要: socket 理解socket ​ Socket是应用层与TCP/IP协议族通信的中间软件抽象层,它是一组接口。在设计模式中,Socket其实就是一个门面模式,它把复杂的TCP/IP协议族隐藏在Socket接口后面,对用户来说,一组简单的接口就是全部,让Socket去组织数据,以符合指定的协议。 套 阅读全文
posted @ 2022-05-27 14:41 nsfoxer 阅读(53) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页