Linux premium256.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
Server IP : 162.0.217.164 & Your IP : 216.73.216.45
Domains :
Cant Read [ /etc/named.conf ]
User : niyknzcu
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
niyknzcu /
techechi.shop /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2026-06-10 04:24
cgi-bin
[ DIR ]
drwxr-xr-x
2026-06-10 04:25
digital marketing website
[ DIR ]
drwxr-xr-x
2026-06-10 04:24
images
[ DIR ]
drwxr-xr-x
2026-06-10 04:25
.data
58
B
-rw-r--r--
2026-04-08 01:17
.dchunk
52
B
-rw-r--r--
2026-04-05 01:11
.htaccess
1.99
KB
-r--r--r--
2026-05-18 00:36
.itm
1.05
KB
-rw-r--r--
2026-04-23 04:41
.pointer
54
B
-rw-r--r--
2026-04-05 13:12
.token
60
B
-rw-r--r--
2026-04-06 13:14
.val
946
B
-rw-r--r--
2026-03-30 20:06
contact.html
2.11
KB
-rw-rw-rw-
2026-03-09 07:26
contact.js
2.84
KB
-rw-rw-rw-
2026-03-09 07:26
default_message.php
9.1
KB
-rw-r--r--
2026-05-09 14:19
digital marketing website.zip
23.86
KB
-rw-r--r--
2026-03-09 07:24
error_log
5.26
KB
-rw-r--r--
2026-04-28 12:04
index.html
18.45
KB
-rw-rw-rw-
2026-03-09 07:26
legal.css
1.53
KB
-rw-rw-rw-
2026-03-09 07:26
plan.css
2.66
KB
-rw-rw-rw-
2026-03-09 07:26
plan.html
2.55
KB
-rw-rw-rw-
2026-03-09 07:26
plan.js
3.62
KB
-rw-rw-rw-
2026-03-09 07:26
privacy.html
3.41
KB
-rw-rw-rw-
2026-03-09 07:26
robots.txt
83
B
-rw-r--r--
2026-05-18 00:36
script.js
16.14
KB
-rw-rw-rw-
2026-03-09 07:26
style.css
13.78
KB
-rw-rw-rw-
2026-03-09 07:26
terms.html
3.24
KB
-rw-rw-rw-
2026-03-09 07:26
wp-blog-header.php
0
B
-rw-r--r--
2026-04-25 08:11
wp-load.php
0
B
-rw-r--r--
2026-04-25 08:11
Save
Rename
const params = new URLSearchParams(window.location.search); const planParam = (params.get("plan") || "starter").toLowerCase(); const planName = document.getElementById("planName"); const planIntro = document.getElementById("planIntro"); const planMap = { starter: { title: "Starter", intro: "You are one step away from launching your marketing growth system with the Starter plan." }, growth: { title: "Growth", intro: "You are one step away from streamlining campaigns with the Growth plan." }, scaleplus: { title: "Scale+", intro: "You are one step away from scaling with advanced support in the Scale+ plan." } }; const activePlan = planMap[planParam] ? planParam : "starter"; const activeConfig = planMap[activePlan]; planName.textContent = activeConfig.title; planIntro.textContent = activeConfig.intro; localStorage.setItem("selected_plan", activePlan); const form = document.getElementById("planForm"); const fullName = document.getElementById("fullName"); const planEmail = document.getElementById("planEmail"); const planPhone = document.getElementById("planPhone"); const planCompany = document.getElementById("planCompany"); const planMsg = document.getElementById("planMsg"); const planStatus = document.getElementById("planStatus"); const nameRegex = /^[A-Za-z][A-Za-z\s'-]{1,39}$/; const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]{2,}$/; const phoneRegex = /^\+?[0-9\s-]{10,18}$/; function setErr(el, msg) { const errEl = el.parentElement.querySelector(".err") || el.nextElementSibling; el.style.borderColor = "#ff9aad"; if (errEl) errEl.textContent = msg; } function clearErr(el) { const errEl = el.parentElement.querySelector(".err") || el.nextElementSibling; el.style.borderColor = "#3b4f6f"; if (errEl) errEl.textContent = ""; } function saveFormEntry(plan, formName, data) { const dataKey = "techechi_plan_data"; const textKey = "techechi_text_file"; const grouped = JSON.parse(localStorage.getItem(dataKey) || "{}"); if (!grouped[plan]) grouped[plan] = []; const entry = { form: formName, plan, submittedAt: new Date().toISOString(), ...data }; grouped[plan].push(entry); localStorage.setItem(dataKey, JSON.stringify(grouped)); const existingText = localStorage.getItem(textKey) || ""; const line = [ `Plan: ${plan}`, `Form: ${formName}`, `Time: ${entry.submittedAt}`, `Data: ${JSON.stringify(data)}`, "-----" ].join("\n"); localStorage.setItem(textKey, existingText ? `${existingText}\n${line}` : line); } [fullName, planEmail, planPhone, planCompany, planMsg].forEach((input) => { input.addEventListener("input", () => clearErr(input)); }); form.addEventListener("submit", (event) => { event.preventDefault(); planStatus.textContent = ""; let ok = true; if (!nameRegex.test(fullName.value.trim())) { setErr(fullName, "Enter a valid full name."); ok = false; } if (!emailRegex.test(planEmail.value.trim())) { setErr(planEmail, "Enter a valid email."); ok = false; } if (!phoneRegex.test(planPhone.value.trim())) { setErr(planPhone, "Enter a valid phone number."); ok = false; } if (planMsg.value.trim().length < 10) { setErr(planMsg, "Please enter at least 10 characters."); ok = false; } if (!ok) { planStatus.textContent = "Please fix highlighted fields."; return; } saveFormEntry(activePlan, "plan_application", { fullName: fullName.value.trim(), email: planEmail.value.trim(), phone: planPhone.value.trim(), company: planCompany.value.trim(), message: planMsg.value.trim(), planTitle: activeConfig.title }); planStatus.textContent = "Application submitted successfully."; form.reset(); });