Blog Platform Image Upload and Category Management Implementation
Bug Fixes
Article Archive Query
SELECT
FROM_UNIXTIME(create_date/1000,'%Y') AS year,
FROM_UNIXTIME(create_date/1000,'%m') AS month,
COUNT(*) AS count
FROM ms_article
GROUP BY year, month
File Upload Functionality
API Specification
Endpoint: /upload
Method: POST
Parameters:
Parameter
Type
Description
image
file
Uploaded file
...
Posted on Sun, 14 Jun 2026 16:28:07 +0000 by sampledformat
ExtJS HtmlEditor Add Image Paste Plugin
Overview
Users requested the ability to paste screenshots directly into ExtJS HtmlEditor without saving the image locally first. This enhancement reduces the number of steps from seven to just two, significantly improving usability.
Implementation Details
By default, users had to folow a multi-step process:
Capture screenshot using QQ
Save ima ...
Posted on Fri, 22 May 2026 17:54:03 +0000 by joshbb
Implementing Multi-File Upload with Ant Design Pro 5 and Express
Ant Design Upload Component Configuration
The Ant Design upload component supports batch file selection through the multiple attribute. Here's how to configure the component for handling multiple file uploads:
<Dragger
name="file"
multiple={true}
action="/api/upload/batch"
onChange={handleUploadChange}
fileList= ...
Posted on Thu, 14 May 2026 23:42:59 +0000 by Napster
Upload-Labs File Upload Bypass Techniques and Implementation Strategies
Overview
File upload vulnerabilities arise when web applications inadequately validate or sanitize user-supplied files before storing and serving them. Exploiting these flaws allows attackers to inject executable code—such as PHP webshells—into the server’s filesystem, often leading to remote code execution. Upload-Labs is a deliberately vulner ...
Posted on Thu, 14 May 2026 14:50:47 +0000 by jrforrester
Web Application File Upload Vulnerabilities
1 File Upload Vulnerability Overview
File upload functionality is a common feature in virtually all web applications and server-client systems. Users need to upload images for articles and blog posts, profile pictures, or various files to cloud storage services. If servers lack proper filtering mechanisms, allowing webshells, executable files, ...
Posted on Thu, 14 May 2026 07:14:53 +0000 by Jacquelyn L. Ja
Implementing File Uploads in Node.js Applications
HTML Form Configuration
For file uploads, the HTML form must include the enctype="multipart/form-data" attribute and use the POST method:
<form action="/api/user/create" method="post" enctype="multipart/form-data">
<div class="form-header"><span>User Registration</span>< ...
Posted on Mon, 11 May 2026 03:49:00 +0000 by metalblend