update version 10

This commit is contained in:
devdatt 2026-01-23 05:39:45 +05:30
parent 12eb8faa99
commit 746d133942
23 changed files with 210 additions and 6 deletions

View File

@ -1,4 +1,14 @@
<?php include 'header.php'; ?>
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
include 'header.php'; ?>
<div class="containerindex">
<div class="grid">

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,14 @@
<?php include 'header.php'; ?>
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
include 'header.php'; ?>
<div class="containerindex">
<div class="grid">

View File

@ -1,5 +1,14 @@
<?php include 'header.php'; ?>
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
$jsonFile = __DIR__ . '/domain.json';
$defaults = [
'domain' => 'example.com',

View File

@ -1,5 +1,13 @@
<?php include 'header.php' ?>
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
$jsonFile = __DIR__ . '/firewall.json';

View File

@ -1,4 +1,12 @@
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
exec("sudo chmod 444 /sys/class/dmi/id/product_uuid");
$version = 10;

View File

@ -3,4 +3,12 @@
</footer>
</body>
</html>
</html>
<!--
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
-->

View File

@ -1,5 +1,13 @@
<?php
declare(strict_types=1);
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
session_start();

View File

@ -1,4 +1,14 @@
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
require 'require_login.php';
include 'static.php';
?>

View File

@ -1,4 +1,15 @@
<?php include 'header.php'; ?>
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
include 'header.php'; ?>
<div class="containerindex">
<div class="grid">

View File

@ -1,5 +1,15 @@
<?php include 'header.php'; ?>
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
$jsonFile = __DIR__ . '/input.json';
$defaults = [
'input' => 'url',

View File

@ -4,6 +4,16 @@ header('Pragma: no-cache');
header('Expires: 0');
session_start();
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
if (!empty($_SESSION['user'])) {
header('Location: /index.php', true, 302);
exit;

View File

@ -1,5 +1,13 @@
<?php
session_start();
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
$_SESSION = [];

View File

@ -1,5 +1,13 @@
<?php include 'header.php'; ?>
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
function rollback(): void
{

View File

@ -1,5 +1,13 @@
<?php include 'header.php'; ?>
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
$jsonFile = __DIR__ . '/output.json';

View File

@ -1,4 +1,12 @@
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
declare(strict_types=1);
include 'header.php';

View File

@ -1,4 +1,14 @@
<?php include 'header.php'; ?>
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
include 'header.php'; ?>
<style>
:root {
--accent: #0b74de;

View File

@ -1,4 +1,13 @@
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
// request_cert.php
// Parameters (POST):
// - domain (required)

View File

@ -1,4 +1,14 @@
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
// auth/require_login.php
declare(strict_types=1);

View File

@ -1,5 +1,14 @@
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
function generateRandomString($length = 16)
{
$bytes = random_bytes(ceil($length / 2));

View File

@ -1,5 +1,13 @@
<?php include 'header.php'; ?>
<?php
/*
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
$domain = "";
$https = false;

View File

@ -183,4 +183,12 @@
</body>
</html>
</html>
<!--
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
-->

View File

@ -1,4 +1,12 @@
<!DOCTYPE html>
<!--
Urmi you happy me happy licence
Copyright (c) 2026 shreebhattji
License text:
https://github.com/shreebhattji/Urmi/blob/main/licence.md
-->
<html lang="en">
<head>
<meta charset="UTF-8" />