• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Modern AAC/Gesior AAC] Homepage Script v2.0

Status
Not open for further replies.

Archez

'
Senator
Joined
Jun 26, 2008
Messages
6,589
Solutions
1
Reaction score
70
Location
Mexico
Hello, OtLand.

As most of you know, I released this http://otland.net/f118/homepage-script-v1-0-a-61239/ a long time ago, a simple script to present your website, however, it's an old script and outdated code that I am not willing to keep working on.

So I've come up with this idea of creating a new script, still 'homepage script', but better. It works for Modern AAC and Gesior AAC, actually, for any kind of AAC.

Well, I am pretty bad at writing my own scripts features, so I will let you discover that by checking out the preview...






Easy to install, if your intelligence quotient is over 99 you won't have any problem. The variables have a comment to tell you what's going on there. I used thunderion.net as an example cuz' of barker, he is funny.


You must put this code into your index.php file, a few lines after session_start();:

PHP:
require('homepage/config.php');

	if(isset($_SESSION['homepage']))
	{
	
		$homepage = time() - $_SESSION['homepage'];
		
		if($homepage > ($config['homepage']['time'] * 60) && $config['homepage']['status'] == 'enabled')
        {
		
			unset($_SESSION['homepage']);
			header('Location: homepage.php');
		
		}
		
	}
	
	$_SESSION['homepage'] = time();


Downloads:

ZIP: http://armentaa.com/websolutions/downloads/homepagev2.0.zip
RAR: http://armentaa.com/websolutions/downloads/homepagev2.0.rar


Any question, suggestion, feedback is welcome, unnecessary replies are not.
If something is missing or something is wrong, please let me know!


Thank you, and enjoy!
 
Last edited:
[Modern AAC/Gesior AAC] Homepage Script v2.0


on topic have only gesior?? lol

AND MODERN?
 
I used thunderion.net as an example cuz' of barker, he is funny.

:eek: very funy :D repped

mewantcookie.jpg
 
the copyright isn't hard to remove if you know how to decrypt.

Code:
Homepage Script v2.0 :: by <a href="http://otland.net/members/archez/" target="_blank">Archez</a>

can easily edit ;)
 
the copyright isn't hard to remove if you know how to decrypt.

Code:
Homepage Script v2.0 :: by <a href="http://otland.net/members/archez/" target="_blank">Archez</a>

can easily edit ;)

wow u r the best
 
decode the base64, quite easy, lets see if anyone can decode the following:

Code:
g50RMkhKDxBeHjX=HikIngc8ntTYHIXBi50DMk03g50A+gBlgHgkfHAjTHX5+xrki6XiMhTZMG0DSxX=H5nuiIT9D5HiSJNkHGHMpIQBegcHHJKki5L5pHQo0o6LMlAtgfQT0xHoH4hYSoA=LIu50HL9p8AXM6BHfgXRAhTZLoAASyX=fJHeTiHon8heMk6mHHXa0kKqfxh6HxAuHiuz+iT9f5uUA5BJfg0ipxQHAj0A+xqJKJXipiStH5A6+f6SHH0egkhiby6H+H5JK6gqpHHjAfhjMkQBi503AhAP+oAiS5LzKlkipHLhMGHLpf6kKl9JMITPD5k4SkLhHGX=SHh=i5XiSgQSHi9NSiAHg5QHiIcmixuIpHQhAx9OSl0NH4PrMkLhgjQ4S65sij5ub6AVHjLXA5BXLg0aTG9ZMh1MA5B=gHAMglHonoXLpfXli5LA0Jk3KtQDSIXUKxBiSxTin8TYAfHoHh0MflHBejXgMmAfixr50hLZb5TfSg6NH4TiiIQ3b4HeMkBGij5ub6hVnoBiiGBBi5XMpiQGHjXe+gBzH4QDM5ugA6X4MkQAi5HMHhQ7ix6YAfHDH5nuTIAjDjL4iGBtLHnupIAjg6XgMkzkH8QDpiHIH5c5HHQBgfQRTh03AxXAS4hUHiueihGsTjBgAxbrK4h5pxT7iyHg+6L=H41eT6hjnhQiAInJi6XRMGkHfx6SSJLhLIBi0GcoTgujDGufHG0aS6Lono1g+fhzK5XRHihZbxreMxrtHIuqDhBID506HjSsij5uihBgi5kY+5B7LgAiflQP+8Q4MmXtHI3kfhKsSfhLiGuQgHAL0xh7MoAYSJBfK6XT0WCC
 
Nice release archez, I'll be sure to use this when i start my server.
 
good luck trying to decrypt with that ;) i use more advanced encryption methods such as ZARA-130, SERPENT, AES-128, etc

Smart one but even smarter claiming that base64 can be decoded easily while challenging people with something that ain't base64 ;)
 
base64 isn't even an encryption, it's a way to represent (aga encode) text and numbers...

AES is a key based encryption, it's not even comparable.
 
Status
Not open for further replies.
Back
Top