Files
PSFree/index.html
T
Kameleon 20e4aa2747 Update index.html
function added by EchoStrech
2024-02-20 03:37:04 -06:00

54 lines
2.1 KiB
HTML

<!-- Copyright (C) 2023 anonymous
This file is part of PSFree.
PSFree is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
PSFree is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<script>
//function added By EchoSrech
var fwFromUA = parseFloat(navigator.userAgent.substring(navigator.userAgent.indexOf('PlayStation ') + 14, navigator.userAgent.indexOf(') Apple')));
if (navigator.userAgent.includes('PlayStation 4')) {
if (fwFromUA >= 6.00 && fwFromUA <= 9.60) {
alert(`Current PS4 Firmware: ${fwFromUA.toFixed(2)}. Are You Ready?`);
} else {
alert(`Current PS4 Firmware ${fwFromUA.toFixed(2)} Is Not Supported`);
window.stop();
}
} else if (navigator.userAgent.includes('PlayStation 5')) {
if (fwFromUA >= 1.00 && fwFromUA <= 5.50) {
alert(`Current PS5 Firmware: ${fwFromUA.toFixed(2)}. Are You Ready?`);
} else {
alert(`Current PS5 Firmware ${fwFromUA.toFixed(2)} Is Not Supported`);
window.stop();
}
} else {
alert(`Current System Is Not Supported`);
window.stop();
}
</script>
<html>
<head>
<meta charset='utf-8'>
<title>PSFree 1.4.0 Beta 4</title>
</head>
<body>
PS4/PS5 exploit using CVE-2022-22620<br>
PS4 versions vulnerable: 6.xx-9.xx (tested 6.00-9.60)<br>
PS5 versions vulnerable: 1.xx-5.xx (tested 1.00-5.50)<br>
<a href="./about.html" data-jslicense="1">JavaScript license information</a>
</body>
<script type='module' src='alert.mjs'></script>
</html>