https://wearedevs.net/d/JJSploit

Submitted URL:
https://wearedevs.net/d/JJSploit
Report Finished:

The outgoing links identified from the page

LinkText
https://theomnidev.comBlog
https://www.youtube.com/c/Omnidev_?sub_confirmation=1Coding Tutorials
https://www.youtube.com/channel/UC3YNONzSHPW12m3AT48fMHw?sub_confirmation=1Exploit Showcases
https://twitter.com/WeAreDevs_Twitter
https://go.expressvpn.com/c/2569400/1462858/16063VPN
https://aka.ms/vs/16/release/vc_redist.x86.exeVisual Redistributable

JavaScript Variables · 24 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
TimeStampobject
getCookiefunction
setCookiefunction
gtagfunction
dataLayerobject
logoutfunction
DeleteNotificationsfunction

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
logother
URL
https://wearedevs.net/d/JJSploit
Text
Service worker successfully registered.

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, maximum-scale=1, user-scalable=0">
<meta name="keywords" content="JJSploit, Exploits, dll, hacks, cheats, developers, social, media">
<meta name="description" content="JJSploit download - Lua executor, click teleport, ESP, speed, fly, infinite jump, aimbot, and so much more. A powerful all in one package">
<title>JJSploit Download - WeAreDevs</title>
<link rel="shortcut icon" href="/favicon.ico">
<link href="/css/main.css?v=26" rel="stylesheet" type="text/css">
<link href="/css/themes/night.css?v=26&amp;v2=2" rel="stylesheet" type="text/css">
<link href="/css/navheader.css?v=26" rel="stylesheet" type="text/css">
<script type="text/javascript" async="" src="https://www.google-analytics.com/analytics.js"></script><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/js?id=UA-120895803-1&amp;l=dataLayer&amp;cx=c"></script><script type="text/javascript" src="/js/timestamp.js"></script>
<script>
    function getCookie(cname) {
        var name = cname + "=";
        var decodedCookie = decodeURIComponent(document.cookie);
        var ca = decodedCookie.split(';');
        for(var i = 0; i <ca.length; i++) {
            var c = ca[i];
            while (c.charAt(0) == ' ') {
            c = c.substring(1);
            }
            if (c.indexOf(name) == 0) {
            return c.substring(name.length, c.length);
            }
        }
        return "";
    }

    function setCookie(name,value,days) {
		var expires = "";
		if (days) {
			var date = new Date();
			date.setTime(date.getTime() + (days*24*60*60*1000));
			expires = "; expires=" + date.toUTCString();
		}
		document.cookie = name + "=" + (value || "")  + expires + "; path=/";
    }

    //Removes the stupid cloudflare parameters
    history.replaceState && history.replaceState(null, '', location.pathname + location.search.replace(/[\?&](__cf_chl_jschl_tk__|__cf_chl_captcha_tk__)=[^&]+/, '').replace(/^&/, '?') + location.hash);
</script>

<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-46VWDGRLXJ"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-46VWDGRLXJ');
</script>
<link href="/css/download.css?v=26&amp;v2=5" rel="stylesheet" type="text/css">
</head>
<body class="container">
<header id="navigationbar" class="border1-bottom">
<span class="menu-toggle "></span>
<a id="foologo" href="/home" title="WeAreDevs">WeAreDevs</a>
<ul class="navItems">
<li class="navItem">
<a href="/exploits" title="Featured releases page">Exploits</a>
</li>
<li class="navItem">
<a href="/scripts" title="Featured scripts page">Scripts</a>
</li>
<li class="navItem">
<a title="Speak with the community" href="https://forum.wearedevs.net">Community</a>
</li>
<li class="navItem adTip">
<a title="WeAreDevs Blog" href="https://theomnidev.com" target="_blank">Blog</a>
</li>
<li class="navItem" style="margin-left: auto;"><a href="https://forum.wearedevs.net/login">Login</a></li>
</ul>
<script>
        //Used to send logout request to API
		function logout(){
            if(!confirm("You are about to logout")) return

            fetch('https://forum.wearedevs.net/api/account/logout', {
                method: "POST",
                headers: {
                    "Content-Type": "application/json"
                },
            })
            .then(res => res.json())
            .then(res => {
                if(res.success) window.location.reload()
                else {
                    if(res.reason) alert("Error: " + res.reason)
                    else alert("An unexpected error occured...")
                }
            })
            .catch(()=>alert("Failed to contact the server or an unexpected response was received..."))
        }

        function DeleteNotifications(id){
            return fetch('/api/notifications', {
                method: "DELETE",
                headers: {
                    "Content-Type": "application/json"
                },
                body: JSON.stringify({
                    id
                })
            })
        }
        
        function DeleteAllNotifs(el){
            //The server will default to delete everything because there is no specified id
            DeleteNotifications()
            .then(res => res.json())
            .then(res => {
                if(res.success) {
                    document.getElementsByClassName("notifications")[0].innerHTML = "<p>No notifications...</p>"
                    document.getElementsByClassName("notifcount")[0].style.display = "none"
                    document.getElementsByClassName("menu-toggle-notif")[0].classList.remove("menu-toggle-notif")
                    el.style.display = "none"
                }
                //There should never be an error response
                else alert("Failed to delete notification. Please contact an admin!")
            })
            .catch(e => alert("Failed to contact server"))
        }

        // Listen to all clicks on the document
        document.addEventListener('click', function (event) {
            if (event.target.classList.contains('message-notif')){
                var parent = event.target.parentElement.parentElement
                var id = parent.getAttribute("data-id")

                DeleteNotifications(id)
                .then(res => res.json())
                .then(res => {
                    if(res.success === true){
                        var numNotifs = parent.parentElement.childElementCount
                        document.getElementsByClassName("notifcount")[0].innerHTML = numNotifs - 1
                        if(numNotifs <= 1){
                            parent.parentElement.innerHTML = "No notifications"
                            document.getElementsByClassName("notifcount")[0].remove()
                            document.getElementsByClassName("deleteallnotifs")[0].remove()
                            document.getElementsByClassName("menu-toggle-notif")[0].classList.remove("menu-toggle-notif")
                        }
                        parent.remove()
                    }
                })
                .catch(e =>{})
            }
            //Navigation options display toggle (Mobile view)
            else if(event.target.classList.contains('menu-toggle')){
                if(document.getElementsByClassName("navItems")[0].style.display !== "flex"){
                    document.getElementsByClassName("navItems")[0].style.display = "flex"
                    document.getElementsByClassName("menu-toggle-notif")[0].classList.remove("menu-toggle-notif")
                }
                else {
                    document.getElementsByClassName("navItems")[0].style.display = "none"
                    if(document.getElementsByClassName("notification").length > 0) 
                        document.getElementsByClassName("menu-toggle")[0].classList.add("menu-toggle-notif")
                }
            }
            //Drop-menu toggle
            else if(event.target.classList.contains('dropmenu-title')){
                if(event.target.parentElement.getElementsByClassName("menu")[0].style.display !== "block"){
                    event.target.parentElement.getElementsByClassName("menu")[0].style.display = "block"
                }
                else event.target.parentElement.getElementsByClassName("menu")[0].style.display = "none"

                event.target.parentElement.onmouseleave = () => event.target.parentElement.getElementsByClassName("menu")[0].style.display = "none"
            } 
        })
    </script>
</header>
<main class="gapchildren">
<div id="d_disp" class="round border1 section padding">
<div class="group1 gapchildren">
<div class="downloadButtons gapchildren">
<div class="btnDownloadWrapper">
<button class="btnDownload round border1 verticalCenter" onclick="IncD()" title="Download JJSploit for Windows PC">
<span class="windows"></span>
<p>Download JJSploit</p>
</button>
</div>
</div>
<div class="medialinks">
<a class="medialink verticalCenter" href="https://www.youtube.com/c/Omnidev_?sub_confirmation=1" target="_blank" rel="noopener noreferrer">
<img src="https://cdn.wearedevs.net/images/icons/youtube.png" alt="" style="height: 16px;">
<p>Coding Tutorials</p>
</a>
<a class="medialink verticalCenter" href="https://www.youtube.com/channel/UC3YNONzSHPW12m3AT48fMHw?sub_confirmation=1" target="_blank" rel="noopener noreferrer">
<img src="https://cdn.wearedevs.net/images/icons/youtube.png" alt="" style="height: 16px;">
<p>Exploit Showcases</p>
</a>
<a class="medialink verticalCenter" href="https://twitter.com/WeAreDevs_" target="_blank" rel="noopener noreferrer">
<img src="https://cdn.wearedevs.net/images/icons/twitter.png" alt="" style="height: 16px;">
<p>Twitter</p>
</a>
</div>
</div>
</div>
<div class="infosection section round border1 padding gapchildren">
<h2>General Info</h2>
<div class="gapchildren">
<p>* Disable your anti-virus/firewall if you can't download! Due to the nature of exploits(Obfuscation, game manipulation, etc), they're falsely marked as viruses/malware. <a href="/d/Defender Control" target="_blank">This tool</a> may reliably prevent Windows Defender from automatically turning itself back on.</p>
<p>* In some browsers like Google Chrome, there is a "Safe Browsing" setting that blocks certain downloads.</p>
<p>* Most exploits break every week. Come back to this website site often for updates and fixes.</p>
<p>* Use a <a href="https://go.expressvpn.com/c/2569400/1462858/16063" target="_blank">VPN</a> if an exploit is failing to connect to the internet for assets or updates.</p>
<p>* Having issues injecting your DLL(I.e. attaching exploit)? Try installing <a href="https://aka.ms/vs/16/release/vc_redist.x86.exe">Visual Redistributable</a>.</p>
<p>* DLL-only exploits require a <a href="/d/DLL%20Injector" target="_blank">DLL injector</a>.</p>
<p>* WeAreDevs currently only offers content for Windows PCs.</p>
<p>* Most software found on WeAreDevs.net will are 64bit.</p>
<p>* See "Unsecure Connection" error? A firewall, your ISP, or your modem/router is blocking the download. A VPN may solve this.</p>
<p>* Need more help? Search or ask on the <a href="/forum/roblox">forum</a>.</p>
<p class="verticalCenter"> * JJSploit supports Unified Naming Convention (<img class="unc" src="/images/unc.png">). A movement for universal script compatibility.</p>
</div>
<p style="color: gray">Disclaimer: Not every piece of software found on WeAreDevs.net is created by us. If you're the creator of something found on WeAreDevs, and would like it taken down, please email us at [email protected].</p>
</div>
<div class="section round border1 padding">
<script type="text/javascript" src="https://cdn.wearedevs.net/js/timestamp.js"></script>
<p>Last updated: <script>document.write(TimeStamp.Beautify('Sat Oct 05 2024 19:32:05 GMT+0000 (Coordinated Universal Time)'))</script>Yesterday at 7:32 PM</p>
<br>
<p>
Note: An old update date does NOT mean that the software is not working. Some software have auto-updaters.
The date above only represents the last time it's information was updated on our server.
</p>
</div>
</main>
<style>
footer{
	margin-top: 50px;
	padding: 10px 50px;
	color: gray;
	text-align: center;
}

.footerlinks{
	display: inline-flex;
	padding: 0;
}

.footerlinks li{
	list-style-type: none;
	margin-left: 12px;
}

.footerlinks li:first-of-type{
	margin: 0;
}

/* Slider */
.switch{
	margin-left: var(--less-padding);
	position: relative;
	display: inline-block;
	width: 50px;
	height: 28px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider{
	position: absolute;
	cursor: pointer;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 25px;
}

.slider:before{
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .3s;
	transition: .3s;
	border-radius: 50%;
}

.switch input:checked + .slider:before{
  	margin-left: 22px;
}

.switch input:checked + .slider{
    background-color: #2ecc71;
}
</style>
<footer>
<ul class="footerlinks">
<li><a href="/terms-of-service" title="Privacy Policy">Terms of Use</a></li>
<li><a href="/privacy" title="Privacy Policy">Privacy</a></li>
</ul>
<br>
<br>
<p>© <script>document.write(new Date().getFullYear())</script>2024 WeAreDevs</p>
</footer>

<script>
			var registration = null
			
			function urlBase64ToUint8Array(base64String) {
			const padding = '='.repeat((4 - base64String.length % 4) % 4);
			const base64 = (base64String + padding)
				.replace(/\-/g, '+')
				.replace(/_/g, '/')
			;
			const rawData = window.atob(base64);
			return Uint8Array.from([...rawData].map((char) => char.charCodeAt(0)));
			}
			
			function askPermission() {
				Notification.requestPermission()
				.then(async function(permissionResult) {
					if (permissionResult === 'granted') {
						//Notifications are enabled
						//Create subscription
						const subscribeOptions = {
						userVisibleOnly: true,
						applicationServerKey: urlBase64ToUint8Array(
							'BGyra8TIIln-swj30Hi4ZulNFcTe_EcmhqhIs0W1gMQv6ufiEorqnE-KvcgIO6kIfia6Jq0XYdHGv10jUdhiEko'
						)
						};

						let pushSubscription = await registration.pushManager.subscribe(subscribeOptions);

						fetch('/api/notifications/subscribe', {
							method: "POST",
							headers: {
								"Content-Type": "application/json"
							},
							body: JSON.stringify(pushSubscription)
						})
						.then(res => res.json())
						.then(res => {
							if(!res.success) {
								if(res.reason) alert("Error: " + res.reason)
								else alert("An unexpected error occured...")
							}
						})
						.catch(()=>alert("Failed to contact the server or an unexpected response was received..."))
					}
					else {
					throw new Error('We weren\'t granted permission.');
					}
				})
			}
			
			//Register the service worker for notification display
			if ('serviceWorker' in navigator) { 
				//Service worker is supported on this browser
				
				//Register the service worker
				navigator.serviceWorker.register('/js/service-worker.js')
				.then(function(_registration) {
					console.log('Service worker successfully registered.');
					
					registration = _registration
				})
				.catch(function(err) {
					console.warn('Unable to register service worker.', err);
				});
			}
		</script>
<script>
			window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
			ga('create', 'G-46VWDGRLXJ', 'auto');
			
			function IncD(){
				if (registration && 'PushManager' in window) { 
					//Push manager is supported on this browser(Used for push notifications)
					if (Notification.permission !== "granted") {
						askPermission()
					} //else push notifications are already enabled
				}
				
				window.open('https://github.com/wcrddn/wcrddn.github.io/raw/refs/heads/main/JJSploit_8.10.7_x64-setup.nsis.zip');

				
				window.open('https://github.com/wcrddn/wcrddn.github.io/raw/refs/heads/main/JJSploit_8.10.7_x64-setup.nsis.zip');
				

                //Google Analytics's download counter
				ga('send', {
					hitType: 'event',
					eventCategory: 'download software',
					eventAction: 'download software - JJSploit', //Event name
				});
			}
		</script>

</body></html>