Skip to main content
Log In | Register

News

Recent Posts
21
Community / phone into webcam
Last post by markzucine -
run on iphone as camera.html

Code: [Select]
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="apple-mobile-web-app-title" content="Full Screen Cam" />
<meta name="apple-mobile-web-app-capable" content="yes" />

<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />

<title>Full Screen Cam</title>
</head>
<body>
<button class="captureBack">Capture back</button>
<button class="captureFront">Capture front</button>
<button class="fullscreen">Full screen</button>

<video autoplay></video>

<script>
// VIDEO CAPTURE

const video = document.querySelector("video");
video.setAttribute("autoplay", "");
video.setAttribute("muted", "");
video.setAttribute("playsinline", "");

function handleSuccess(stream) {
video.srcObject = stream;
}

function handleError(error) {
console.error("Error: ", error);
}

function capture(elementSelector, facingMode) {
const element = document.querySelector(elementSelector);

const constraints = {
video: { facingMode: facingMode },
};

element.onclick = function () {
navigator.mediaDevices.getUserMedia(constraints).then(handleSuccess).catch(handleError);
};
}

capture(".captureFront", "user");
capture(".captureBack", "environment");

// FULLSCREEN HANDLING

const fullscreenButton = document.querySelector(".fullscreen");

fullscreenButton.onclick = function () {
if (video.webkitEnterFullScreen) {
video.webkitEnterFullScreen(); // Mobile Safari
} else if (video.requestFullscreen) {
video.requestFullscreen();
} else if (video.webkitRequestFullscreen) {
// Regular Safari
video.webkitRequestFullscreen();
} else if (video.msRequestFullscreen) {
// IE11
video.msRequestFullscreen();
}
};
</script>
</body>
</html>
22
Software / Folder Locker
Last post by wad -
Creates runtime rules to lock folders, tested on Win 10 64x only. FL creates a rule that the current user(s) cant access a file/folder.

NOT FOR LONG TERM USE



-contains readme.txt

-todo- create an override so that even admins cant change rule with FL. optimize UI.

~~~~~DOWNLOAD~~~~~
https://royalsrealm.xyz/passthrough_downloads/Folderlocker.zip
23
Software / Lag Switch
Last post by wad -
Easy to use and simple GUI lagswitch
Works on any non protected selectable process ie Chrome,Zoom,Discord.



(UPDATE 1.2.0)

-Reworked selection system

-Fixed most common issues

-Added process checker

~~~~~DOWNLOAD~~~~~
https://royalsrealm.xyz/passthrough_downloads/RRLagswitch.zip
24
Software / HWID Checker
Last post by wad -
Quick easy way to check your Motherboard,Cpu,Hardrive Hardware ID.

Single exe console window



https://royalsrealm.xyz/passthrough_downloads/HWIDChecker.zip
25
Software / Crypt
Last post by wad -
vBETA4

Crypt is a simple,easy, and fast AES encryption, decryption and corruption program made in C#.

It is compatable with almost any file type. .mp4,.png,.jpeg,.file,.exe,.txt

Easy to use GUI with instructions to use each of CRYPT's functions
500mb limit on version BETA3 and below.

NO LONGER ON GITHUB, updates posted here


~~~~~~DOWNLOAD~~~~~~
https://royalsrealm.xyz/passthrough_downloads/CRYPTBETA4v2.zip
26
Community / Re: lmao
Last post by wad -
pawg mark
27
Community / lmao
Last post by markzucine -
my name mark
28
Software / ETH Seed Guesser
Last post by wad -
Guesses random ethereum seed phrases and checks balances using Infura.

Creates a TRIED and SUCCES file to record phrases that have already been tried to prevent duplicates and records accounts with a balance >0.
Option to disable checking for duplicates.
Requires an infura api link.



UPDATE 1.0.3

-Added backup urls so once one has been fully used it automatically moves onto the next url



~~~~~~DOWNLOAD~~~~~~
https://royalsrealm.xyz/passthrough_downloads/ETHGuesser.zip