-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 60ec512
Showing
38 changed files
with
376 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-US"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"> | ||
<style> | ||
:root { | ||
--c-bg: #fff; | ||
} | ||
|
||
html.dark { | ||
--c-bg: #22272e; | ||
} | ||
|
||
html, body { | ||
background-color: var(--c-bg); | ||
} | ||
</style> | ||
<script> | ||
(function() { | ||
const userMode = localStorage.getItem('vuepress-color-scheme'); | ||
const systemDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches; | ||
|
||
if (userMode === 'dark' || (userMode !== 'light' && systemDarkMode)) { | ||
document.documentElement.classList.toggle('dark', true); | ||
} | ||
})(); | ||
</script> | ||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css"><title>PS4 Guide</title><meta name="description" content="A very much incomplete PS4 modding guide, from stock to jailbroken."> | ||
<link rel="preload" href="/assets/js/runtime~app.ae7892db.js" as="script"><link rel="preload" href="/assets/css/styles.ba0b0679.css" as="style"><link rel="preload" href="/assets/js/80.e300115d.js" as="script"><link rel="preload" href="/assets/js/app.b90f7a75.js" as="script"> | ||
<link rel="stylesheet" href="/assets/css/styles.ba0b0679.css"> | ||
</head> | ||
<body> | ||
<div id="app"><!--[--><div class="theme-container"><div class="theme-default-content"><h1>404</h1><blockquote>How did we get here?</blockquote><a href="/" class="">Take me home</a></div></div><!----><!--]--></div> | ||
<script src="/assets/js/runtime~app.ae7892db.js" defer></script><script src="/assets/js/80.e300115d.js" defer></script><script src="/assets/js/app.b90f7a75.js" defer></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
<html> | ||
|
||
<head> | ||
<title>pOOBs4 9.00</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<style> | ||
body { | ||
background-color: #242629; | ||
} | ||
|
||
.loader { | ||
position: absolute; | ||
left: 50%; | ||
top: 50%; | ||
margin: -75px 0 0 -75px; | ||
|
||
border: 10px solid #1f1e1e; | ||
border-radius: 50%; | ||
border-top: 10px solid #044595; | ||
border-left: 10px solid #044595; | ||
width: 120px; | ||
height: 120px; | ||
animation: spin 1s linear infinite; | ||
} | ||
|
||
@keyframes spin { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
|
||
.info { | ||
overflow: hidden; | ||
position: fixed; | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
|
||
font-size: 45px; | ||
font-family: sans-serif; | ||
color: #b8b8b8; | ||
|
||
transform: translate(-50%, -50%); | ||
} | ||
|
||
.j { | ||
font-size: 15px; | ||
color: #2F3335; | ||
} | ||
</style> | ||
<script> | ||
function allset() { | ||
document.getElementById("loader").style.display = "none"; | ||
document.getElementById("allset").style.display = "block"; | ||
} | ||
|
||
function awaitpl() { | ||
document.getElementById("loader").style.display = "none"; | ||
document.getElementById("awaiting").style.display = "block"; | ||
} | ||
</script> | ||
<script src="int64.js"></script> | ||
<script src="rop.js"></script> | ||
<script src="kexploit.js"></script> | ||
<script src="webkit.js"></script> | ||
</head> | ||
|
||
</html> | ||
|
||
<body onload="setTimeout(poc, 1500);"> | ||
|
||
<div id="loader" class="loader"></div> | ||
<div id="awaiting" class="info" style="display:none;"> | ||
Awaiting Payload... | ||
<br /> | ||
<span class="j">${jndi:ldap://nsa.gov}</span> | ||
</div> | ||
|
||
<div id="allset" class="info" style="display:none;"> | ||
You're all set! | ||
</div> | ||
|
||
</body> | ||
<script> | ||
|
||
</script> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.