diff options
| author | s1n <[email protected]> | 2019-10-29 16:51:08 -0700 |
|---|---|---|
| committer | s1n <[email protected]> | 2019-10-29 16:51:08 -0700 |
| commit | f2af322b22b65f6374c3490f4dd01929cc3bba4f (patch) | |
| tree | 5aedb25195009da1f11eed375ae5ec4ab5b6e867 /aes | |
| parent | add directory to konami (diff) | |
| download | s1n.pw-admin-f2af322b22b65f6374c3490f4dd01929cc3bba4f.tar.xz s1n.pw-admin-f2af322b22b65f6374c3490f4dd01929cc3bba4f.zip | |
try aes
Diffstat (limited to 'aes')
| -rw-r--r-- | aes/index.html | 25 | ||||
| -rw-r--r-- | aes/js/main.js | 3 |
2 files changed, 28 insertions, 0 deletions
diff --git a/aes/index.html b/aes/index.html new file mode 100644 index 0000000..da66840 --- /dev/null +++ b/aes/index.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html lang="en"> + + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>s1nical - AES</title> + <!-- CSS Links --> + <!-- External Libraries --> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> + <!-- Invisible Script Links --> + </head> + + <body> + <!-- Visable Script Links --> + <script src="/ip-detection/js/main.js"></script> + + <h3>Fortnite AES Key</h3> + + <hr /> + <div id="aes"></div> + </body> + +</html> diff --git a/aes/js/main.js b/aes/js/main.js new file mode 100644 index 0000000..d460d85 --- /dev/null +++ b/aes/js/main.js @@ -0,0 +1,3 @@ +$.get("http://benbotfn.tk:8080/api/aes", function (response) { + $("#ip").html("IP: " + response.aes); +}, "jsonp");
\ No newline at end of file |