滲透測試學習(1)
XSS
htmlspecialchars($name)
函式把string中預定義的字元轉換為html實體。str_replace( '<script>', '', $name );
把name中的<script>
標籤轉換為空字元。可用<scr<script>ipt>
繞過。preg_replace( '/<(.*)s(.*)c(.*)r(.*)i(.*)p(.*)t/i', '', $name );
無法用雙寫繞過。可用<img src=1 onerror=alert(/123/)>
繞過。