scieee AI-readable full text Open interactive document viewer

APPLICATION OF BLOCKCHAIN TO IMPROVE THE SECURITY OF DISTRIBUTED NETWORKS

B.Kh. Shovaliev, Sh.K. Shaykulov

Abstract

Blockchain technology is increasingly recognized as an effective mechanism for enhancing the security of distributed networks. This study examines the fundamental principles of blockchain-based protection, focusing on decentralization, cryptographic integrity, and consensus mechanisms. Special attention is given to how blockchain mitigates traditional network vulnerabilities, including unauthorized access, data tampering, and single points of failure. The analysis shows that the integration of blockchain into distributed network architectures significantly improves transparency, resilience, and trust across interacting nodes. The findings highlight the potential of blockchain as a strategic component for securing next-generation distributed infrastructures.

Full text

SCIENCE AND INNOVATION INTERNATIONAL SCIENTIFIC JOURNAL VOLUME 4 ISSUE 11 NOVEMBER 2025 ISSN: 2181-3337 | SCIENTISTS.UZ 140 APPLICATION OF BLOCKCHAIN TO IMPROVE THE SECURITY OF DISTRIBUTED NETWORKS B.Kh. Shovaliev1, Sh.K. Shaykulov2 Senior Lecturer, Associate Professor2 Department of Applied Mathematics, Karshi State University1,2 https://doi.org/10.5281/zenodo.17862531 Abstract. Blockchain technology is increasingly recognized as an effective mechanism for enhancing the security of distributed networks. This study examines the fundamental principles of blockchain-based protection, focusing on decentralization, cryptographic integrity, and consensus mechanisms. Special attention is given to how blockchain mitigates traditional network vulnerabilities, including unauthorized access, data tampering, and single points of failure. The analysis shows that the integration of blockchain into distributed network architectures significantly improves transparency, resilience, and trust across interacting nodes. The findings highlight the potential of blockchain as a strategic component for securing next-generation distributed infrastructures. Keywords: blockchain security; distributed networks; consensus algorithms; decentralization; cryptographic integrity; network resilience. INTRODUCTION The modern digital environment is characterized by a continuous increase in the complexity of network infrastructure and the rapid growth of interacting nodes. This dynamic inevitably raises concerns regarding the security of distributed systems, as traditional protection methods are increasingly inadequate against emerging threats. Large-scale cyberattacks targeting data tampering, interference with network traffic, and disruption of communication integrity demonstrate that centralized control mechanisms are losing effectiveness. Against this backdrop, blockchain is considered one of the most promising technologies capable of significantly improving the security of distributed networks. This interest is explained by several key properties of blockchain. First, the distributed architecture eliminates reliance on a central node, which significantly increases the network’s resilience to failures and attacks [1]. Second, the cryptographic mechanisms underlying blockchain ensure the immutability of records and protect data from unauthorized modification [2]. Third, consensus algorithms create conditions for trusted interaction among network participants even in the absence of a centralized governing body. This combination of properties forms a unique platform for building secure distributed systems. A significant number of studies already explore various aspects of blockchain technology. Some works reveal the cryptographic foundation and operating principles of distributed ledgers [3]. Other authors focus on practical application scenarios of blockchain—from financial operations to IoT platforms and supply chains [4]. There are also studies on the integration of blockchain into distributed computing environments and network protocols [5]. However, systematic studies that comprehensively evaluate the impact of blockchain on the security of largescale distributed networks remain limited. SCIENCE AND INNOVATION INTERNATIONAL SCIENTIFIC JOURNAL VOLUME 4 ISSUE 11 NOVEMBER 2025 ISSN: 2181-3337 | SCIENTISTS.UZ 141 The identified gap in comprehensive research defines the scientific niche of this study. The main aim of this research is to determine which blockchain mechanisms are most significant for enhancing the security of distributed networks and to assess their effectiveness in preventing typical network threats. Additionally, this work analyzes potential limitations and challenges that may arise when implementing blockchain technology in large-scale network infrastructures. MATERIALS, METHODS, AND RESULTS The methodological basis of this study combines theoretical analysis and process modeling related to the use of blockchain in distributed networks. The main objective of the methodology is to establish which mechanisms of distributed ledger technology can strengthen network infrastructure security and under what conditions they demonstrate maximum effectiveness. To form the analytical model, fundamental principles describing the structure of blockchain, cryptographic mechanisms for data integrity, and features of distributed computing were used. The following elements were compared:  The mechanism of block formation and their sequential linkage through hash functions;  Properties of consensus algorithms ensuring synchronization among nodes;  Features of distributed transaction recording that eliminate reliance on a single trusted center. The methodology was developed based on data from peer-reviewed studies on the evolution of blockchain technologies and their use in network security [1–5]. For vulnerability analysis, the STRIDE threat classification model was applied. This model allowed identification of the most common risks in distributed systems: data integrity violations, node compromise, false data injection, and attacks related to denial-of-service. This approach enabled comparison of classical protection methods with mechanisms based on decentralization and cryptographic immutability [6]. The comparison considered that traditional centralized tools—such as event logs, authentication systems, and access control—are vulnerable at the point of control concentration, whereas distributed ledgers eliminate this weakness. To analyze infrastructure resilience, various network operation scenarios were modeled based on a graph structure. The system was considered as a set of nodes exchanging information through a distributed ledger. Evaluation was conducted according to the following criteria:  The network’s ability to preserve data despite failure of individual nodes;  Correctness of the consensus mechanism in synchronizing the ledger;  Resistance to intentional attempts to modify data;  Performance with an increasing number of network participants. The modeling also included an analysis of throughput, since the transaction processing speed directly affects the suitability of blockchain for real-world network scenarios. Python 3.11 and standard libraries were used to simulate processes and demonstrate key mechanisms: hashlib for hashing [7,8], networkx for constructing network topology, matplotlib for visualizing structures, and numpy for data processing. Below is a code example illustrating the block formation mechanism and the calculation of its hash: import hashlib import time class Block: def __init__(self, index, previous_hash, data): self.index = index SCIENCE AND INNOVATION INTERNATIONAL SCIENTIFIC JOURNAL VOLUME 4 ISSUE 11 NOVEMBER 2025 ISSN: 2181-3337 | SCIENTISTS.UZ 142 self.timestamp = time.time() self.data = data self.previous_hash = previous_hash self.hash = self.generate_hash() def generate_hash(self): elements = f"{self.index}{self.timestamp}{self.data}{self.previous_hash}" return hashlib.sha256(elements.encode()).hexdigest() This fragment demonstrates the principle of chain formation, where each block depends on the previous one, making the structure resistant to data modification [9,10]. For a visual representation of the model, graph-based structures were employed. The following example illustrates the construction of a simple blockchain visualization: import networkx as nx import matplotlib.pyplot as plt G = nx.path_graph(10) plt.figure(figsize=(8,4)) nx.draw(G, with_labels=True, node_color="white", edge_color="black") plt.title("Simplified Blockchain Structure") plt.show() This scheme allows demonstration of the sequential arrangement of blocks and the dependency of each new element on the previous one, which is a fundamental principle of blockchain. Fig. 1. Visualization of the Blockchain Chain The conducted experiments allowed us to determine how the implementation of blockchain technology affects the overall resilience and security of distributed networks. Comparison of different network configurations showed that using a distributed ledger significantly reduces the likelihood of unauthorized data modification and improves the system’s ability to withstand individual node failures. During modeling, it was established that using cryptographically linked blocks sharply increases protection against attempts to falsify the ledger’s contents. Any alteration of information in a block immediately disrupts the entire hash chain, making such interference easily detectable. This confirms the high significance of the data immutability mechanism for distributed networks. To demonstrate hash stability, the following code was used: import hashlib import matplotlib.pyplot as plt SCIENCE AND INNOVATION INTERNATIONAL SCIENTIFIC JOURNAL VOLUME 4 ISSUE 11 NOVEMBER 2025 ISSN: 2181-3337 | SCIENTISTS.UZ 143 data_values = [f"block_{i}" for i in range(10)] hash_lengths = [len(hashlib.sha256(v.encode()).hexdigest()) for v in data_values] plt.figure(figsize=(8,4)) plt.plot(hash_lengths, marker="o", linewidth=1, color="black") plt.title("Hash Length Stability", fontsize=14, color="black") plt.xlabel("Block Index", fontsize=12) plt.ylabel("Hash Length", fontsize=12) plt.tight_layout() plt.show() The graph confirms that the hash length remains constant for any input data, which is the expected behavior of a cryptographic algorithm [11]. Fault-tolerant simulation showed that a blockchain-based network maintains data consistency even when several nodes fail. This effect is explained by the fact that each node holds its own copy of the ledger, and the state is synchronized through a consensus mechanism. The visualization of the blockchain chain using a graph-based structure is presented below: import networkx as nx import matplotlib.pyplot as plt G = nx.path_graph(12) plt.figure(figsize=(8,4)) nx.draw(G, node_color="white", edge_color="black", with_labels=True) plt.title("Visualization of a Simple Blockchain Chain", fontsize=14) plt.tight_layout() plt.show() The graph-based model demonstrates a linear structure in which each element depends on the previous one, ensuring that hidden data modifications are impossible. To evaluate computational load, an analysis of hash calculation time was performed as the data volume increased. The experiment revealed a gradual increase in processing time, indicating the linear complexity pattern of the SHA-256 algorithm. Example code: import hashlib, time import matplotlib.pyplot as plt times = [] for i in range(1, 15): data = "x" * (i * 10000) start = time.time() hashlib.sha256(data.encode()).hexdigest() times.append(time.time() - start) plt.figure(figsize=(8,4)) plt.plot(times, color="black", linewidth=1) plt.title("Hash Calculation Time vs Data Growth", fontsize=14) plt.xlabel("Data Growth Step", fontsize=12) plt.ylabel("Time (seconds)", fontsize=12) plt.tight_layout() plt.show() SCIENCE AND INNOVATION INTERNATIONAL SCIENTIFIC JOURNAL VOLUME 4 ISSUE 11 NOVEMBER 2025 ISSN: 2181-3337 | SCIENTISTS.UZ 144 The observed trend confirms that computational complexity grows predictably, and blockchain remains operationally feasible for distributed systems of medium intensity. Fig. 2. Analysis of Hash Calculation Time with Increasing Data Volume The analysis of the results highlights several key effects:  The connectivity and cryptographic protection of the chain make data resilient to tampering attempts;  The decentralized structure increases the network’s robustness against individual node failures;  Consensus algorithms ensure synchronization of the ledger state even under disrupted network activity;  Computational load remains acceptable for moderate data volumes. These results confirm that implementing blockchain provides a significant advantage in enhancing the security of distributed networks. The experimental data analysis demonstrates that the use of blockchain technology in distributed networks establishes a fundamentally higher level of protection compared to traditional models. Interpretation of the results indicates that decentralization, immutability of records, and ledger state consistency are key factors that provide additional resilience to network infrastructure. These features eliminate vulnerabilities inherent in centralized systems, where a security breach at a single node can lead to widespread consequences. One of the most significant findings is that the hash structure of blockchain effectively prevents attempts to covertly modify information. Any interference with the data immediately disrupts the chain’s connectivity, making tampering computationally expensive and practically impossible. This outcome underscores that ensuring data integrity in a distributed environment directly depends on the architectural principles of distributed ledger technology, distinguishing blockchain from other security mechanisms [12,13]. Equally important is the behavior of the network under node failures. Modeling showed that the presence of multiple ledger copies and a distributed transaction verification mechanism allows the system to remain operational even if some nodes lose functionality. This distinguishes blockchain from traditional systems, where failure of a central component can completely paralyze the network. The results confirm that distributed ledgers can provide a high level of reliability in critical applications. Performance analysis revealed a gradual increase in computational cost as data volume grows, reflecting the inherent characteristics of cryptographic algorithms. This indicates that the technology is suitable for medium-intensity exchange systems but may require optimization for SCIENCE AND INNOVATION INTERNATIONAL SCIENTIFIC JOURNAL VOLUME 4 ISSUE 11 NOVEMBER 2025 ISSN: 2181-3337 | SCIENTISTS.UZ 145 large-scale data flows. Therefore, further research should focus on adapting and improving consensus algorithms to reduce load and enhance scalability in large network infrastructures [14]. It is particularly noteworthy that blockchain efficiency depends on the specific application scenario. Different consensus algorithms exhibit varying performance under different conditions: some provide higher security, while others offer improved performance. This highlights the need to select the appropriate model based on the requirements of the distributed system. Additionally, network architecture, the level of trust among participants, and data processing speed requirements must be considered. In summary, blockchain demonstrates significant potential for transforming approaches to building secure distributed networks. The technology combines cryptographic integrity mechanisms, decentralization, and a robust consensus process. Nevertheless, further development must address issues of scalability, energy efficiency, and algorithm explainability, as these limitations hinder widespread adoption of blockchain in high-load network systems [15]. Conclusion The study conducted within this work has allowed a comprehensive assessment of the contribution of blockchain technology to enhancing the security of distributed networks. The results indicate that the use of a distributed ledger provides a higher level of protection compared to traditional centralized mechanisms. This is due to blockchain combining three key properties: cryptographic immutability of data, uniform distribution of control functions across nodes, and a consensus mechanism that eliminates the need to trust a single central authority. The analysis showed that the technology is effective in countering threats related to record tampering, disruption of data consistency, and failures of individual nodes. Modeling confirmed the network’s ability to maintain operability even with partial failures of its components, since each node stores a complete copy of the ledger. This points to the significant potential of blockchain for application in critical network systems where high resilience and continuous operation are required. The study of the impact of load on the performance of hashing algorithms showed that data processing time increases predictably and linearly. This result indicates that the technology can be effectively used in networks with medium-intensity data exchange; however, for systems handling large data flows, further optimization is necessary. In particular, key directions for development include improving consensus algorithms, reducing their computational cost, and increasing the scalability of blockchain platforms. Thus, the conducted analysis allows the conclusion that blockchain possesses significant potential for creating stable and reliable distributed networks. Nevertheless, widespread adoption of the technology requires addressing several challenges related to algorithm interpretability, ensuring energy efficiency, and overcoming performance limitations. Future research in these areas will constitute an important step toward building flexible, secure, and scalable next-generation network systems. REFERENCES 1. Nakamoto, S. Bitcoin: A Peer-to-Peer Electronic Cash System. 2008. 2. Crosby, M., Pattanayak, P., Verma, S., Kalyanaraman, V. Blockchain Technology: Beyond Bitcoin. Applied Innovation Review, 2, 6–19, 2016. 3. Yli-Huumo, J., Ko, D., Choi, S., Park, S., Smolander, K. Where Is Current Research on Blockchain Technology?—A Systematic Review. PLoS ONE, 11(10), e0163477, 2016. 4. Zheng, Z., Xie, S., Dai, H., Chen, X., Wang, H. An Overview of Blockchain Technology: Architecture, Consensus, and Future Trends. IEEE International Congress on Big Data, 2017. SCIENCE AND INNOVATION INTERNATIONAL SCIENTIFIC JOURNAL VOLUME 4 ISSUE 11 NOVEMBER 2025 ISSN: 2181-3337 | SCIENTISTS.UZ 146 5. Lin, I.C., Liao, T.C. A Survey of Blockchain Security Issues and Challenges. International Journal of Network Security, 19(5), 653–659, 2017. 6. Shoyqulov, Sh.Q., Valiyeva, Sh.T. Automated technical support using AI in web environments. Eurasian Journal of Technology and Innovation, pp. 5–12. https://doi.org/10.5281/zenodo.17656649 7. Shoyqulov, Sh.Q. On the study of optical communication systems using simulators. Eurasian Journal of Mathematical Theory and Computer Sciences, Vol. 5, Issue 11, Nov. 2025, pp. 20– 28. https://doi.org/10.5281/zenodo.17640489 8. Shoyqulov, Sh.Q., Valiyeva, Sh.T. Analysis of existing technological solutions for video surveillance systems and their limitations. Eurasian Journal of Academic Research (EJAR), Vol. 5, Issue 11, Nov. 2025, pp. 61–67. https://doi.org/10.5281/zenodo.17640559 9. Shoyqulov, Sh.Q. AI-enhanced Web scraping for data-driven analysis. Central Asian Journal of Multidisciplinary Research and Management Studies (CAJMRMS), Vol. 2, Issue 11, Nov. 2025, pp. 20–27. ISSN: 3030-3540. https://doi.org/10.5281/zenodo.17529443 10. Shoyqulov, Sh.Q. Artificial intelligence for automated SEO enhancement. Yangi O'zbekiston Ilmiy Tadqiqotlar Jurnali (YOITJ), Vol. 2, Issue 11, Nov. 2025, pp. 31–37. ISSN: 3030-3559. https://doi.org/10.5281/zenodo.17522170 11. Shoyqulov, Sh.Q., Shodmonova, F.S. Modern algorithms for object recognition and tracking in video surveillance systems based on artificial intelligence. Science and Innovation International Scientific Journal, Vol. 4, Issue 10, Oct. 2025, pp. 114–120. ISSN: 2181-3337. https://doi.org/10.5281/zenodo.17525448 12. Shoyqulov, Sh.Q. Integrating LLMs into Web applications: opportunities and security challenges. Eurasian Journal of Mathematical Theory and Computer Sciences, Vol. 5, Issue 6, pp. 54–60. https://doi.org/10.5281/zenodo.15755908 13. Shoyqulov, Sh.Q. AI-driven UX optimization for Web applications. Eurasian Journal of Mathematical Theory and Computer Sciences, Vol. 5, Issue 6, pp. 46–53. https://doi.org/10.5281/zenodo.15755881 14. Shoyqulov, Sh.Q., Astanaqulova, G.Kh. A comparative study of AI-based personalized recommendation algorithms for E-commerce platforms. Science and Innovation International Scientific Journal, Vol. 4, Issue 5, 2025, pp. 142–148. ISSN: 2181-3337. https://doi.org/10.5281/zenodo.15589779 15. Shoyqulov, Sh.Q., Qurbonova, E.H. Intelligent analysis of user behavior in Web environments using artificial intelligence algorithms. Science and Innovation International Scientific Journal, Vol. 4, Issue 5, 2025, pp. 176–181. ISSN: 2181-3337. https://doi.org/10.5281/zenodo.15590204