破解windows sublime text 3的php代码
给大家分享一个 破解windows sublime text 3的php代码, 可以用于最新版本的3176
PHP Code复制内容到剪贴板
- $file = 'D:\Sublime Text\sublime_text.exe';
- $pos = filepos($file, "\x45\x8B\xF0\x41\x83\xCE\x04\x38\x5A\x01\x45\x0F\x44\xF0");
- if ($pos !== false)
- {
- $fp = fopen($file, 'cb');
- fseek($fp, $pos);
- fwrite($fp, "\xC6\x02\x01\x41\xBE\x00\x00\x00\x00\x90\x90\x90\x90\x90");
- fclose($fp);
- echo 'crack!';
- } else
- echo 'fail.';
下一篇 vscode常用配置