├── .gitignore ├── README.md ├── docs └── index.html └── poc.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 如何只用 CSS代码让一台 iPhone/macOS 崩溃重启? 💣 2 | 3 | 来源: [https://gist.github.com/pwnsdx/ce64de2760996a6c432f06d612e33aea](https://gist.github.com/pwnsdx/ce64de2760996a6c432f06d612e33aea) 4 | 5 | 测试链接(点击之前,请保存好重要数据): [https://hilongjw.github.io/safari-reaper-demo/index.html](https://hilongjw.github.io/safari-reaper-demo/index.html) 6 | 7 | 8 | # How to force restart any iOS device with just CSS? 💣 9 | 10 | Source: [https://gist.github.com/pwnsdx/ce64de2760996a6c432f06d612e33aea](https://gist.github.com/pwnsdx/ce64de2760996a6c432f06d612e33aea) 11 | 12 | IF YOU WANT TO TRY (DON’T BLAME ME IF YOU CLICK) : [https://cdn.rawgit.com/pwnsdx/ce64de2760996a6c432f06d612e33aea/raw/23f2faa0aadb4babbfd228c8bb32a26a8c51c741/safari-ripper.html](https://cdn.rawgit.com/pwnsdx/ce64de2760996a6c432f06d612e33aea/raw/23f2faa0aadb4babbfd228c8bb32a26a8c51c741/safari-ripper.html) 13 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 13 | 14 | 15 |
-------------------------------------------------------------------------------- /poc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 13 | 14 | 15 |
--------------------------------------------------------------------------------