whojoe
码龄4年
  • 281,992
    被访问
  • 205
    原创
  • 8,771
    排名
  • 737
    粉丝
关注
提问 私信

个人简介:一个想学reverse的web狗

  • 加入CSDN时间: 2018-11-08
博客简介:

whojoe的博客

博客描述:
一个想要学reverse的web狗
查看详细资料
  • 5
    领奖
    总分 1,720 当月 93
个人成就
  • 获得131次点赞
  • 内容获得150次评论
  • 获得497次收藏
创作历程
  • 21篇
    2022年
  • 97篇
    2021年
  • 87篇
    2020年
成就勋章
TA的专栏
  • 工具编译开发
    22篇
  • 其他环境配置
    27篇
  • 环境搭建
    58篇
  • 内网蠕动
    40篇
  • 漏洞复现
    44篇
  • 漏洞分析
    26篇
  • 编程开发
    22篇
  • java安全
    4篇
  • 权限维持
    18篇
  • idea
    1篇
  • 汇编学习
    6篇
  • 代码审计
    14篇
  • 老毛子
    2篇
  • web安全
    9篇
兴趣领域 设置
  • 安全
    web安全
  • 最近
  • 文章
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

跨平台编译frp

跨平台编译frp前言步骤参考文章前言frp可能是用的比较多的反向代理工具,一些时候需要自己修改并且进行跨平台编译一直忙着工作,好久没写博客。。步骤安装golang和gitapt update -yapt install golang git -ygit clone --depth=1 https://github.com/fatedier/frpcd frpgo env -w GOPROXY=https://goproxy.cn,directgo mod downloadmake
原创
发布博客 前天 22:57 ·
27 阅读 ·
0 点赞 ·
0 评论

centos7修改ssh端口

centos7修改ssh端口修改端口参考文章修改端口vim /etc/ssh/sshd_config修改Port 1234selinux开放端口semanage port -a -t ssh_port_t -p rcp 1234防火墙开放端口firewall-cmd --zone=public --add-port=1234/tcp --permanentfirewall-cmd --reload重启服务service sshd restart参考文章https://blo
原创
发布博客 2022.04.20 ·
409 阅读 ·
0 点赞 ·
0 评论

搭建Gitea和Drone环境

搭建Gitea和Drone环境参考文章前言环境参考文章https://docs.gitea.io/zh-cn/comparison/https://github.com/go-gitea/giteahttps://www.drone.io/https://blog.csdn.net/tergou/article/details/120322269前言本来是打算搞gitlab,结果发现最低2g内存的要求过高,就找到了gitea+drone环境gitea:1.16.5drone:2dron
原创
发布博客 2022.04.19 ·
731 阅读 ·
0 点赞 ·
0 评论

关闭windows defender

前言windows defender是越来越难关闭了,之前的直接修改注册表关闭已经不可以用,开机之后注册表项会被删除参考官方https://support.microsoft.com/zh-cn/windows/%E7%94%A8-%E7%AF%A1%E6%94%B9%E4%BF%9D%E6%8A%A4-%E9%98%BB%E6%AD%A2%E6%9B%B4%E6%94%B9%E5%AE%89%E5%85%A8%E8%AE%BE%E7%BD%AE-31d51aaa-645d-408e-6ce7-8d7
原创
发布博客 2022.03.27 ·
357 阅读 ·
0 点赞 ·
0 评论

mariadb10忘记密码

mariadb10忘记密码版本参考文章版本service mysql stopmysqld_safe --skip-grant-tables --skip-networkingmysql -u rootuse mysql;update user set authentication_string=PASSWORD("xxxxxx") where user='root';flush privileges;quitservice mysql restart参考文章https://b
原创
发布博客 2022.03.26 ·
148 阅读 ·
0 点赞 ·
0 评论

esxi添加8168网卡驱动

esxi添加8168网卡驱动下载安装VMware PowerCLIpowershellVMware PowerCLI参考文章下载esxi6.7https://blog.whsir.com/post-5720.htmlESXi-Customizer-PS下载地址https://vibsdepot.v-front.de/tools/ESXi-Customizer-PS-v2.6.0.ps1VMware PowerCLI 下载地址:https://customerconnect.vmware.c
原创
发布博客 2022.03.15 ·
802 阅读 ·
0 点赞 ·
0 评论

windows命令行压缩解压缩

windows命令行压缩解压缩前言压缩解压参考文章前言在没有压缩软件情况下 可能想windows是不是有linux下的tar一样 可以压缩和解压压缩compact /c xxx.txt解压compact /u xxx.txt参考文章https://jingyan.baidu.com/article/c910274bd7ed3a8c371d2d39.html...
原创
发布博客 2022.03.13 ·
554 阅读 ·
0 点赞 ·
0 评论

tcpdump实时查看post包和get包

tcpdump实时查看post包和get包getpost参考文章gettcpdump -s 0 -A 'tcp dst port 80 and (tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x47455420)'posttcpdump -s 0 -A 'tcp dst port 80 and (tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x504f5354)'参考文章https://www.cnb
原创
发布博客 2022.03.09 ·
90 阅读 ·
0 点赞 ·
0 评论

Go get报错 fatal: could not read Username for ‘https://xxx‘: terminal prompts disabled【解决方案】

git config --global --add url."git@github.com:".insteadOf "https://github.com/"注意:可以通过git config --global -e修改参考文章https://www.jianshu.com/p/dbbdfbb7ab74
原创
发布博客 2022.02.21 ·
232 阅读 ·
0 点赞 ·
0 评论

go 1.17 安装go-bindata

go 1.17 安装go-bindata参考go install -a -v github.com/go-bindata/go-bindata/...@latest参考https://github.com/go-bindata/go-bindata/issues/77
原创
发布博客 2022.02.21 ·
294 阅读 ·
1 点赞 ·
0 评论

python grpc学习

python grpc学习环境helloworld.protoserverclient编译proto文件参考文章环境pip install grpciopip install grpcio-toolshelloworld.protosyntax = "proto3";service Greeter { rpc SayHello(HelloRequest) returns (HelloReply) {} rpc SayHelloAgain(HelloRequest) retur
原创
发布博客 2022.02.20 ·
384 阅读 ·
0 点赞 ·
0 评论

openwrt配置doh

openwrt配置doh命令参考命令opkg install https-dns-proxy luci-app-https-dns-proxy luci-i18n-https-dns-proxy-zh-cn查看结果ping whoami.akamai.net -n 1如果返回的ip是自己所在ip段就证明错了参考https://yanke.info/?id=143
原创
发布博客 2022.01.23 ·
544 阅读 ·
0 点赞 ·
0 评论

edge配置doh

edge配置doh打开配置界面参考文章打开配置界面edge://settings/privacy安全性-》使用安全的 DNS 指定如何查找网站的网络地址https://dns.alidns.com/dns-query{?dns}参考文章https://www.icoa.cn/a/953.html
原创
发布博客 2022.01.23 ·
447 阅读 ·
0 点赞 ·
0 评论

FFMPEG让群晖DSM7.X版本的Video Station支持DTS视频编码和EAC3音频编码

FFMPEG让群晖DSM7.X版本的Video Station支持DTS视频编码和EAC3音频编码安装ffmpeg参考文章安装ffmpeg群晖 》套件中心 》设置》套件来源 》新增https://packages.synocommunity.com/套件中心左边就会多出一个社群,点社群,找到ffmpeg,安装套件或者直接去下载https://synocommunity.com/package/ffmpeg在这里找对应版本https://github.com/SynoCommunity
原创
发布博客 2022.01.19 ·
4904 阅读 ·
0 点赞 ·
7 评论

No response to 5 echo-requests宽带链接断开

No response to 5 echo-requests宽带链接断开日志中出现5次echo-requests无返回,断开链接参考日志中出现5次echo-requests无返回,断开链接修改配置参考https://www.haiyun.me/archives/pppoe-modem-hangup.html
原创
发布博客 2022.01.18 ·
106 阅读 ·
0 点赞 ·
0 评论

nginx代理开启对http1.1的支持

nginx代理开启对http1.1的支持前言修改参考文章前言部分web服务器使用http1.0请求时候返回404,nginx默认使用导致请求无效抓包发现http1.1可用修改 location / { proxy_pass http://127.0.0.1:3000$request_uri; proxy_http_version 1.1; proxy_set_header X-Real-IP $remote_addr; proxy_set_header REMOTE-HO
原创
发布博客 2022.01.14 ·
1174 阅读 ·
0 点赞 ·
0 评论

esxi查看硬盘健康状况以及卸载软件包

esxi查看硬盘健康状况esxcli列出硬盘社区支持smartctl卸载软件包参考文章esxcli列出硬盘esxcli storage core device list|grep "Display Name"查看smartesxcli storage core device smart get -d t10.ATAxxxxxx社区支持smartctl下载http://pfoo.unscdf.org/esxi/smartctl-6.6-4433.x86_64.vib使用winscp传到
原创
发布博客 2022.01.14 ·
355 阅读 ·
0 点赞 ·
0 评论

远程修改ESXi 6.7管理IP地址

远程修改ESXi 6.7管理IP地址安装SecureCRT远程修改esxi安装SecureCRTSecureCRT-8.3安装&破解文章中文件不保证安全 请尽量使用虚拟机运行远程修改esxi远程修改ESXi 6.7管理IP地址启用sshdcui之后就是正常控制台修改步骤...
原创
发布博客 2022.01.14 ·
1247 阅读 ·
0 点赞 ·
0 评论

通过vmm获取群晖的SN和网卡MAC(未成功待续)

通过vmm获取群晖的SN和网卡MAC前提步骤未完待续前提需要开启虚拟化步骤打开群晖套件中心 安装之后添加虚拟机创建映像这里可以考虑从官网下载之后上传下一步即可等待安装完成之后从新创建虚拟机之后按照提示下一步无法打开虚拟机未完待续...
原创
发布博客 2022.01.12 ·
419 阅读 ·
0 点赞 ·
0 评论

编译群晖引导

编译群晖引导参考链接过程参考链接https://www.openos.org/threads/20211205dsm7-0-1-_esata___.3773/https://github.com/s1oz/redpill-loader-actionhttps://wp.gxnas.com/11358.htmlhttps://post.smzdm.com/p/awk2zg5p/过程fork https://github.com/s1oz/redpill-loader-action自动编译或
原创
发布博客 2022.01.11 ·
480 阅读 ·
0 点赞 ·
0 评论
加载更多