|
| 1 | + |
| 2 | +<!DOCTYPE html> |
| 3 | +<html lang="en-us"> |
| 4 | +<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script> |
| 5 | + <meta charset="utf-8"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> |
| 7 | + <title>Java安全 | GSBP's Blog</title> |
| 8 | + <meta name="description" |
| 9 | + content="A CTFER && JavaSecurity Researcher"> |
| 10 | + <link rel="canonical" href="http://localhost:1313/categories/java%E5%AE%89%E5%85%A8/" /> |
| 11 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.4/css/bulma.min.css"> |
| 12 | + |
| 13 | + <link rel="stylesheet" href="http://localhost:1313/scss/style.min.badf012c7f163854e3d9c3287a1df0863ae1974f62e123bbf1f2948b58ed39cf.css"> |
| 14 | + |
| 15 | + <meta property="og:url" content="http://localhost:1313/categories/java%E5%AE%89%E5%85%A8/"> |
| 16 | + <meta property="og:site_name" content="GSBP's Blog"> |
| 17 | + <meta property="og:title" content="Java安全"> |
| 18 | + <meta property="og:description" content="A CTFER && JavaSecurity Researcher"> |
| 19 | + <meta property="og:locale" content="en_us"> |
| 20 | + <meta property="og:type" content="website"> |
| 21 | + |
| 22 | + |
| 23 | + <meta name="twitter:card" content="summary"> |
| 24 | + <meta name="twitter:title" content="Java安全"> |
| 25 | + <meta name="twitter:description" content="A CTFER && JavaSecurity Researcher"> |
| 26 | + |
| 27 | + |
| 28 | + |
| 29 | +</head> |
| 30 | +<body><nav class="navbar is-light" role="navigation"> |
| 31 | + <div class="container"> |
| 32 | + <div class="navbar-brand"> |
| 33 | + <a href="/" title="home" class="navbar-item"> |
| 34 | + <span class="logo"> |
| 35 | + <h1>GSBP's Blog</h1> |
| 36 | + </span> |
| 37 | + </a> |
| 38 | + |
| 39 | + |
| 40 | + <a id="theme-toggle" class="theme-toggle" href="#"> |
| 41 | + <img src="http://localhost:1313/svg/sun.svg" alt="sun icon" class="theme-icon" /> |
| 42 | + </a> |
| 43 | + |
| 44 | + <a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false"> |
| 45 | + <span aria-hidden="true"></span> |
| 46 | + <span aria-hidden="true"></span> |
| 47 | + <span aria-hidden="true"></span> |
| 48 | + </a> |
| 49 | + </div> |
| 50 | + |
| 51 | + <div class="navbar-menu"> |
| 52 | + <div class="navbar-start"> |
| 53 | + |
| 54 | + <a href="/about" class="navbar-item">About</a> |
| 55 | + |
| 56 | + <a href="/post" class="navbar-item">Blog</a> |
| 57 | + |
| 58 | + <a href="/categories" class="navbar-item">Categories</a> |
| 59 | + |
| 60 | + <a href="/friend" class="navbar-item">Friends</a> |
| 61 | + |
| 62 | + </div> |
| 63 | + |
| 64 | + </div> |
| 65 | + <div class="search"> |
| 66 | + <div id="fastSearch"> |
| 67 | + <input id="searchInput" tabindex="0" placeholder="Search.."> |
| 68 | + <ul id="searchResults"> |
| 69 | + |
| 70 | + </ul> |
| 71 | + </div> |
| 72 | + <a id="search-btn" style="display: inline-block;" href="# "> |
| 73 | + <div class="icon-search"><svg class="search-svg" xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentcolor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg></div> |
| 74 | + </a> |
| 75 | + </div> |
| 76 | + |
| 77 | + <script src="/js/fuse.min.js"></script> |
| 78 | + <script src="/js/fastsearch.js"></script> |
| 79 | + |
| 80 | + </div> |
| 81 | +</nav> |
| 82 | + |
| 83 | +<script> |
| 84 | + |
| 85 | + document.addEventListener('DOMContentLoaded', function() { |
| 86 | + var burger = document.querySelector('.navbar-burger'); |
| 87 | + burger.addEventListener('click', function() { |
| 88 | + burger.classList.toggle('is-active'); |
| 89 | + document.querySelector('.navbar-menu').classList.toggle('is-active'); |
| 90 | + }); |
| 91 | + }); |
| 92 | + |
| 93 | + |
| 94 | + function setTheme(theme) { |
| 95 | + let body = document.body; |
| 96 | + let themeIcon = document.querySelector(".theme-icon"); |
| 97 | + if (theme === "dark") { |
| 98 | + body.classList.add("dark-mode"); |
| 99 | + themeIcon.src = "http:\/\/localhost:1313\/svg/moon.svg"; |
| 100 | + themeIcon.alt = "moon icon"; |
| 101 | + } else { |
| 102 | + body.classList.remove("dark-mode"); |
| 103 | + themeIcon.src = "http:\/\/localhost:1313\/svg/sun.svg"; |
| 104 | + themeIcon.alt = "sun icon"; |
| 105 | + } |
| 106 | + |
| 107 | + localStorage.setItem("theme", theme); |
| 108 | + } |
| 109 | + |
| 110 | + |
| 111 | + let theme = localStorage.getItem("theme") || "light"; |
| 112 | + const isDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches; |
| 113 | + if (isDarkMode) { |
| 114 | + |
| 115 | + setTheme('dark'); |
| 116 | + |
| 117 | + } else { |
| 118 | + |
| 119 | + setTheme('light'); |
| 120 | + } |
| 121 | + setTheme(theme); |
| 122 | + |
| 123 | + |
| 124 | + document.getElementById("theme-toggle").addEventListener("click", function() { |
| 125 | + if (theme === "light") { |
| 126 | + theme = "dark"; |
| 127 | + } else { |
| 128 | + theme = "light"; |
| 129 | + } |
| 130 | + setTheme(theme); |
| 131 | + }); |
| 132 | + |
| 133 | + |
| 134 | + |
| 135 | +</script> |
| 136 | + |
| 137 | +</header><main> |
| 138 | +<div class="container"> |
| 139 | + <div class="section"> |
| 140 | + <h2 class="archive-title">Category: Java安全</h2> |
| 141 | +</div> |
| 142 | +</div> |
| 143 | +<div class="each-category column is-centered"> |
| 144 | + |
| 145 | + |
| 146 | + |
| 147 | + |
| 148 | + <article class="archive-item"> |
| 149 | + <a href="http://localhost:1313/post/jdk17%E6%89%93jackson%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96/" class="archive-item-link hover-underline-animation">JDK17打Jackson反序列化</a> |
| 150 | + <span class="archive-item-date"> |
| 151 | + January 20, 2025 |
| 152 | + </span> |
| 153 | + |
| 154 | + </article> |
| 155 | + |
| 156 | + |
| 157 | + |
| 158 | +</div> |
| 159 | + |
| 160 | + </main><footer class="footer"> |
| 161 | + <div class="content has-text-centered"> |
| 162 | + <span>© 2025 <a href="http://localhost:1313/">GSBP's Blog</a></span> |
| 163 | + <span> |
| 164 | + Powered by |
| 165 | + <a href="https://gohugo.io/" target="_blank">Hugo</a> & |
| 166 | + <a href="https://github.com/hotjuicew/hugo-JuiceBar" target="_blank">JuiceBar</a> |
| 167 | + </span> |
| 168 | + </div> |
| 169 | + </footer></body> |
| 170 | +</html> |
| 171 | + |
0 commit comments