DTECH Student Information Hub

Centralized Student Resources
Back to Gateway

Table of Contents

1. [Project Overview](#project-overview)

2. [System Architecture & Request Flow](#system-architecture--request-flow)

3. [Monetization & Ad Integrations](#monetization--ad-integrations)

4. [File-by-File Analysis](#file-by-file-analysis)

5. [Conclusion](#conclusion)

---

Project Overview

What is it?

The D-TECH Student Information Hub is a web-based portal designed to assist students of Nelson Mandela University (NMU). It acts as an independent resource center where students can find answers to frequently asked questions, download important academic documents (such as timetables and maps), and submit their own inquiries to a support team.

What is it for?

The primary purpose of the website is to streamline the dissemination of information for NMU students, providing quick access to guides covering orientation, NSFAS (financial aid), accommodation, and course changes. It is a student-led initiative, completely independent of the university itself.

How does it work?

The application is a collection of static HTML files (front-end only) enhanced with CSS for styling and lightweight JavaScript for interactivity (like accordion menus, timers, and redirects). Since it lacks a traditional backend server, it relies on third-party services to handle data processing (like form submissions) and monetization.

---

System Architecture & Request Flow

The website operates on a Static Site Architecture, meaning there is no backend database or server-side scripting (like PHP or Node.js) processing requests directly.

Here is how the system handles different types of requests:

1. Hosting & Delivery: The site is hosted statically. A user requests the site, and the web server simply delivers the HTML, CSS, and JS files to the user's browser. The custom domain is managed via the CNAME file.

2. Form Submissions: When a student has a specific question not covered in the FAQs, they use the form in ask.html. Instead of a backend saving this data, the form action points to https://formsubmit.co, a third-party service that takes the form input and emails it directly to the site administrator ([email protected]).

3. File Downloads: Documents are not hosted directly on the server to save bandwidth. Instead, the site links to files hosted on Google Drive.

4. Monetization Redirects: The site heavily utilizes JavaScript-based redirects to guide users through ad networks before they reach their desired destination (like a file download or after submitting a form).

---

Monetization & Ad Integrations

A core part of the system's design is its monetization strategy. The site is designed to generate revenue by showing advertisements to users at specific interaction points.

1. Meta Tag Monetization: The index.html file includes a monetag meta tag (<meta name="monetag" content="9d6cc85df2a817b4449f426a23933d6a">). Monetag is an audience monetization platform, and this tag is used to verify domain ownership to serve ads or collect analytics.

2. Download Interstitials: When a user tries to download a document from doc.html, the system intercepts the click. It opens an Adsterra ad link in a new tab, and then uses a timer to automatically redirect the original tab to the actual Google Drive download link.

3. Post-Submission Ads: After submitting a question, the user is taken to thankyou.html. This page forces the user to wait for 10 seconds before automatically redirecting them to an ad URL (https://otieu.com/4/9956333). It also loads an external script (al5sm.com) which is likely another ad tracking or pop-under script.

4. Advanced Evasion Tactics: The redirect.html file contains sophisticated scripts designed to bypass VPN detection and spoof the user's origin, attempting to make the ad network believe the traffic is coming from a clean, non-VPN IP address (specifically, spoofing a Google IP).

---

File-by-File Analysis

This section breaks down exactly what every file in the repository does, how it works under the hood, and includes code examples.

1. `index.html`

Purpose: The main landing page of the application. It provides quick access to FAQs and links to other parts of the site.

How it works:

*Explanation for non-developers:* This script looks at all the questions on the page. When you click one, it automatically closes any other question you might have open, and then slides open the answer for the one you just clicked.

2. `ask.html`

Purpose: Provides a contact form for students to submit personalized questions to the support team.

How it works:

*Explanation for non-developers:* When the user clicks "Send Question", this script silently waits for 1 second (to allow the form data to be sent in the background) and then immediately sends the user to our custom "Thank You" screen.

3. `thankyou.html`

Purpose: To confirm receipt of the student's question and simultaneously monetize the user's wait time.

How it works:

*Explanation for non-developers:* This acts like a stopwatch ticking down every 1 second. It updates the number on the screen, and when the stopwatch hits zero, it automatically transports the user to a new website (the advertisement).

4. `doc.html`

Purpose: A portal for students to download required PDFs, maps, and application forms.

How it works:

*Explanation for non-developers:* When a student clicks "Download", the browser opens a brand-new tab showing an advertisement. Meanwhile, the original tab waits for 2 seconds and then begins downloading the actual document from Google Drive. This ensures the user sees the ad before getting their file.

5. `redirect.html`

Purpose: This is an advanced script page designed specifically to bypass VPN and bot detection systems used by ad networks, ensuring that ad clicks register as legitimate traffic.

How it works:

*Explanation for non-developers:* Think of WebRTC as a caller ID that can bypass a VPN's disguise. This script permanently unplugs the caller ID system in the browser before clicking the ad. It then puts on a mask (spoofing headers) pretending to be Google itself to ensure the ad network accepts the visit.

6. `term.html`

Purpose: Displays the Terms and Conditions for using the D-TECH service.

How it works:

7. `CNAME`

Purpose: Custom Domain Mapping.

How it works:

---

Conclusion

The D-TECH Student Information Hub is a lightweight, frontend-only application that effectively provides resources to NMU students. However, beneath the surface of its helpful FAQs and document downloads, the system is intricately designed to generate ad revenue. It utilizes clever JavaScript techniques to intercept user actions (like submitting forms or downloading files), enforce waiting periods, trigger pop-under advertisements, and even attempt to bypass ad-network security systems by spoofing IP addresses and disabling browser data-leak vectors.

Visit Live Platform