SearcharxivSearch

arXiv subjects

Zeng Zhang

Publications and source records attributed to Zeng Zhang.

14 recordsLinked to original sources

The mean-field control problem for heterogeneous forward-backward systems

We study the problem of mean-field control when the state dynamics are given by general systems of forward-backward stochastic differential equations (FBSDEs) with heterogeneous mean-field interactions. Firstly, we introduce a novel methodology for reducing the well-posedness of such systems to that of a single randomized mean-field FBSDE. As a consequence, we show that, in the fully coupled case, smallness conditions yield existence and uniqueness for both the system itself and the associated variational and adjoint systems. Secondly, we derive a stochastic maximum principle and a verification for the mean-field control problem. This provides necessary and sufficient conditions for optimality.

math.OC

AtomGraph: Tackling Atomicity Violation in Smart Contracts using Multimodal GCNs

Smart contracts are a core component of blockchain technology and are widely deployed across various scenarios. However, atomicity violations have become a potential security risk. Existing analysis tools often lack the precision required to detect these issues effectively. To address this challenge, we introduce AtomGraph, an automated framework designed for detecting atomicity violations. This framework leverages Graph Convolutional Networks (GCN) to identify atomicity violations through multimodal feature learning and fusion. Specifically, driven by a collaborative learning mechanism, the model simultaneously learns from two heterogeneous modalities: extracting structural topological features from the contract's Control Flow Graph (CFG) and uncovering deep semantics from its opcode sequence. We designed an adaptive weighted fusion mechanism to dynamically adjust the weights of features from each modality to achieve optimal feature fusion. Finally, GCN detects graph-level atomicity violation on the contract. Comprehensive experimental evaluations demonstrate that AtomGraph achieves 96.88% accuracy and 96.97% F1 score, outperforming existing tools. Furthermore, compared to the concatenation fusion model, AtomGraph improves the F1 score by 6.4%, proving its potential in smart contract security detection.

cs.CR

A Novel GPT-Based Framework for Anomaly Detection in System Logs

Identification of anomalous events within system logs constitutes a pivotal element within the frame- work of cybersecurity defense strategies. However, this process faces numerous challenges, including the management of substantial data volumes, the distribution of anomalies, and the precision of con- ventional methods. To address this issue, the present paper puts forward a proposal for an intelligent detection method for system logs based on Genera- tive Pre-trained Transformers (GPT). The efficacy of this approach is attributable to a combination of structured input design and a Focal Loss op- timization strategy, which collectively result in a substantial enhancement of the performance of log anomaly detection. The initial approach involves the conversion of raw logs into event ID sequences through the use of the Drain parser. Subsequently, the Focal Loss loss function is employed to address the issue of class imbalance. The experimental re- sults demonstrate that the optimized GPT-2 model significantly outperforms the unoptimized model in a range of key metrics, including precision, recall, and F1 score. In specific tasks, comparable or superior performance has been demonstrated to that of the GPT-3.5 API.

cs.CR

Immutable Digital Recognition via Blockchain

The development of blockchain technology has significantly enhanced the security and transparency of personal information and transaction records. Concurrent with the advancement of blockchain technology and the emergence of the digital currency ecosystem, the internet has evolved from a paradigm dominated by information flow to one driven by value flow. Consequently, the concept of token has gained widespread dissemination, and the electronic token under investigation in this thesis is a development of this concept. The application of electronic tokens has become pervasive with the development of the internet, but the functionality of these tokens is often limited, and issues related to trust remain significant challenges. This study proposes innovative solutions to address the deficiencies in traditional electronic token systems, including the issuance of tokens, the heterogeneity of issuance standards, and the lack of democracy. The solutions are based on distributed storage, anti-tampering mechanisms, consensus protocols, and transparent, traceable storage. Additionally, the study employs NFTs, smart contracts, and RSA blind signatures, among other key technologies, to construct a system based on blockchain technology. The process integrates the decentralised management and centralised operation models, aligning them with the national policy directives. The developed solution enables the full utilisation of blockchain technology's advantages while also fostering community participation. Consequently, it establishes a secure, legal, reliable, and dynamic electronic certification system.

cs.CR

On the convergence to the Navier-Stokes-Maxwell system with solenoidal Ohm's law

The incompressible Navier-Stokes-Maxwell system with solenoidal Ohm's law can be viewed as as the asymptotic limit of the two-fluid incompressible Navier-Stokes-Maxwell system as the momentum transfer coefficient tends to zero (see [1], Ars\'enio, Ibrahim and Masmoudi, Arch. Ration. Mech. Anal., 2015). We prove this limit rigorously without loss of regularity by using the idea of frequency envelope.

math.AP

SmartBugBert: BERT-Enhanced Vulnerability Detection for Smart Contract Bytecode

Smart contracts deployed on blockchain platforms are vulnerable to various security vulnerabilities. However, only a small number of Ethereum contracts have released their source code, so vulnerability detection at the bytecode level is crucial. This paper introduces SmartBugBert, a novel approach that combines BERT-based deep learning with control flow graph (CFG) analysis to detect vulnerabilities directly from bytecode. Our method first decompiles smart contract bytecode into optimized opcode sequences, extracts semantic features using TF-IDF, constructs control flow graphs to capture execution logic, and isolates vulnerable CFG fragments for targeted analysis. By integrating both semantic and structural information through a fine-tuned BERT model and LightGBM classifier, our approach effectively identifies four critical vulnerability types: transaction-ordering, access control, self-destruct, and timestamp dependency vulnerabilities. Experimental evaluation on 6,157 Ethereum smart contracts demonstrates that SmartBugBert achieves 90.62% precision, 91.76% recall, and 91.19% F1-score, significantly outperforming existing detection methods. Ablation studies confirm that the combination of semantic features with CFG information substantially enhances detection performance. Furthermore, our approach maintains efficient detection speed (0.14 seconds per contract), making it practical for large-scale vulnerability assessment.

cs.CR

Enhancing Smart Contract Vulnerability Detection in DApps Leveraging Fine-Tuned LLM

Decentralized applications (DApps) face significant security risks due to vulnerabilities in smart contracts, with traditional detection methods struggling to address emerging and machine-unauditable flaws. This paper proposes a novel approach leveraging fine-tuned Large Language Models (LLMs) to enhance smart contract vulnerability detection. We introduce a comprehensive dataset of 215 real-world DApp projects (4,998 contracts), including hard-to-detect logical errors like token price manipulation, addressing the limitations of existing simplified benchmarks. By fine-tuning LLMs (Llama3-8B and Qwen2-7B) with Full-Parameter Fine-Tuning (FFT) and Low-Rank Adaptation (LoRA), our method achieves superior performance, attaining an F1-score of 0.83 with FFT and data augmentation via Random Over Sampling (ROS). Comparative experiments demonstrate significant improvements over prompt-based LLMs and state-of-the-art tools. Notably, the approach excels in detecting non-machine-auditable vulnerabilities, achieving 0.97 precision and 0.68 recall for price manipulation flaws. The results underscore the effectiveness of domain-specific LLM fine-tuning and data augmentation in addressing real-world DApp security challenges, offering a robust solution for blockchain ecosystem protection.

cs.CR

Enhancing Code LLMs with Reinforcement Learning in Code Generation: A Survey

With the rapid evolution of large language models (LLM), reinforcement learning (RL) has emerged as a pivotal technique for code generation and optimization in various domains. This paper presents a systematic survey of the application of RL in code optimization and generation, highlighting its role in enhancing compiler optimization, resource allocation, and the development of frameworks and tools. Subsequent sections first delve into the intricate processes of compiler optimization, where RL algorithms are leveraged to improve efficiency and resource utilization. The discussion then progresses to the function of RL in resource allocation, emphasizing register allocation and system optimization. We also explore the burgeoning role of frameworks and tools in code generation, examining how RL can be integrated to bolster their capabilities. This survey aims to serve as a comprehensive resource for researchers and practitioners interested in harnessing the power of RL to advance code generation and optimization techniques.

cs.SE

On the well-posedness of the compressible Navier-Stokes equations

We consider the Cauchy problem to the barotropic compressible Navier-Stokes equations. We obtain optimal local well-posedness in the sense of Hadamard in the critical Besov space $\mathbb{X}_p=\dot{B}_{p,1}^{\frac{d}{p}}\times \dot{B}_{p,1}^{-1+\frac{d}{p}}$ for $1\leq p<2d$ with $d\geq2$. The main new result is the continuity of the solution maps from $\mathbb{X}_p$ to $C([0,T]: \mathbb{X}_p)$, which was not proved in previous works \cite{D2001, D2005, D2014}. To prove our results, we derive a new difference estimate in $L_t^1L_x^\infty$. Then we combine the method of frequency envelope (see \cite{Tao04}) but in the transport-parabolic setting and the Lagrangian approach for the compressible Navier-Stokes equations (see \cite{D2014}). As a by-product, the Lagrangian transform $(a,u)\to (\bar a, \bar u)=(a\circ X, u\circ X)$ used in \cite{D2014} is a continuous bijection and hence bridges the Eulerian and Lagrangian methods.

math.AP

Unusual Formation of Point Defect Complexes in the Ultra-wide Band Gap Semiconductor beta-Ga2O3

Understanding the unique properties of ultra-wide band gap semiconductors requires detailed information about the exact nature of point defects and their role in determining the properties. Here, we report the first direct microscopic observation of an unusual formation of point defect complexes within the atomic scale structure of beta-Ga2O3 using high resolution scanning transmission electron microscopy (STEM). Each complex involves one cation interstitial atom paired with two cation vacancies. These divacancy - interstitial complexes correlate directly with structures obtained by density functional theory, which predicts them to be compensating acceptors in beta-Ga2O3. This prediction is confirmed by a comparison between STEM data and deep level optical spectroscopy results, which reveals that these complexes correspond to a deep trap within the band gap, and that the development of the complexes is facilitated by Sn doping through the increase in vacancy concentration. These findings provide new insight on this emerging material's unique response to the incorporation of impurities that can critically influence their properties.

cond-mat.mtrl-sci

Well-posedness, global existence and blow-up phenomena for an integrable multi-component Camassa-Holm system

This paper is concerned with a multi-component Camassa-Holm system, which has been proven to be integrable and has peakon solutions. This system includes many one-component and two-component Camassa-Holm type systems as special cases. In this paper, we first establish the local well-posedness and a continuation criterion for the system, then we present several global existence or blow-up results for two important integrable two-component subsystems. Our obtained results cover and improve recent results in \cite{Gui,yan}.

math-ph

Well-posedness for the Euler-Nernst-Planck-Possion system in Besov spaces

In this paper, we mainly study the Cauchy problem of the Euler-Nernst-Planck-Possion ($ENPP$) system. We first establish local well-posedness for the Cauchy problem of the $ENPP$ system in Besov spaces. Then we present a blow-up criterion of solutions to the $ENPP$ system. Moreover, we prove that the solutions of the Navier-Stokes-Nernst-Planck-Possion system converge to the solutions of the $ENPP$ system as the viscosity $ν$ goes to zero, and that the convergence rate is at least of order $ν^\frac{1}{2}$.

math.AP

Global Well-posedness for the Generalized Navier-Stokes System

In this paper we investigate well-posedness of the Cauchy problem of the three dimensional generalized Navier-Stokes system. We first establish local well-posedness of the GNS system for any initial data in the Fourier-Herz space $χ^{-1}$. Then we show that if the $χ^{-1}$ norm of the initial data is smaller than C$ν$ in the GNS system where $ν$ is the viscosity coefficient, the corresponding solution exists globally in time. Moreover, we prove global well-posedness of the Navier-Stokes system without norm restrictions on the corresponding solutions provided the $χ^{-1}$ norm of the initial data is less than $ν.$ Our obtained results cover and improve recent results in \cite{Zhen Lei,wu}.

math.AP