Loading...
avatar
Articles
35
Tags
3
Categories
2
Home
Archives
Categories
Tags
Whimsical WhirlsHTB UnderPass Writeup
Search
Home
Archives
Categories
Tags

HTB UnderPass Writeup

Created2024-12-24|Updated2024-12-22|Lab Writeup
|Word Count:6|Reading Time:1mins|Post Views:
Author: Annabelle
Link: https://anneballa.github.io/posts/3a984a213ce2/
Copyright Notice: All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.
Hack The Box
Sponsor
  • wechat
    wechat
  • alipay
    alipay
cover of previous post
Previous
端口使用优化
某些组织内部关于端口使用有规范要求,比如只允许开放80,8080,8000等标准化端口,而又有资源最大化利用,降低成本的初心,可以考虑通过Nginx监听80端口,根据不同的server_name分别进行转发。某些组织内部 建议结合防火墙使用,iptables添加允许本地IP进行访问,拒绝端口从外部访问: 1234567891011# 允许来自本地的 TCP 协议访问端口 8000 sudo iptables -A INPUT -p tcp -s 127.0.0.1 --dport 8000 -j ACCEPT # 允许来自本地的 UDP 协议访问端口 8000 sudo iptables -A INPUT -p udp -s 127.0.0.1 --dport 8000 -j ACCEPT # 阻止其他来源的 TCP 协议访问端口 8000 sudo iptables -A INPUT -p tcp --dport 8000 -j DROP # 阻止其他来源的 UDP 协议访问端口 8000 sudo iptables -A INPUT -p udp...
cover of next post
Next
Tailscale组网
利用Tailscale构建自己的NAT网络方案: Tailscale 是一个用户友好的 VPN 服务,允许用户在不同设备之间创建安全的网络连接。它利用 WireGuard 协议的高效性和安全性,提供了一个易于配置和管理的虚拟专用网络,它通过简化网络配置和增强安全性,使得创建和管理虚拟网络变得更加高效和便捷。 主要特点 易于设置: Tailscale 的安装和配置非常简单。用户只需在设备上安装客户端应用程序,并通过一个简单的登录过程即可连接到网络。 自动化网络配置: Tailscale 自动处理网络配置和防火墙设置,用户无需手动配置复杂的网络参数。 跨平台支持: 支持多种操作系统,包括 Windows、macOS、Linux、iOS 和 Android,使得不同设备之间的连接变得无缝。 安全性: 基于 WireGuard 协议,Tailscale 提供了强大的加密和安全性,确保数据在传输过程中的安全。 去中心化架构: Tailscale...
Related Articles
cover
2025-01-01
HTB Administrator Writeup
...
cover
2025-01-01
HTB Alert Writeup
...
cover
2025-01-01
HTB Certified Writeup
...

Comments
avatar
Annabelle
Be a down-to-earth person
Articles
35
Tags
3
Categories
2
Follow Me
Announcement
Welcome to my blog! Here, you'll find a collection of my experiences and insights in red team penetration testing, programming tips, and tech tinkering. I hope you discover content that's both intriguing and practical, and that you enjoy your time here.
Contents
  1. 1. Enum
  2. 2. GetFlag
Recent Posts
使用PVE构建自己的设备环境
使用PVE构建自己的设备环境2025-01-01
HTB Vintage Writeup
HTB Vintage Writeup2025-01-01
HTB Cicada Writeup
HTB Cicada Writeup2025-01-01
©2024 - 2025 By Annabelle
Framework Hexo|Theme Butterfly
Hi, welcome to my blog!
Search
Loading Database