Python crawler is the most important and common library that must be mastered

The text and pictures of this article come from the network, only for learning and communication, and do not have any commercial purpose. If you have any questions, please contact us in time for handling. Start body Requests library is the most important and common library in Python crawlers. You must master it Let's meet this library R ...

Posted by Repgahroll on Tue, 18 Jan 2022 21:10:45 +0100

Digging experience | account hijacking using cross site WebSocket hijacking (CSWH)

*The relevant vulnerabilities involved in this paper have been submitted to the manufacturer and repaired. This paper is only limited to technical research and discussion. It is strictly prohibited to use it for illegal purposes, otherwise all the consequences will be borne by itself. What this article shares is that in a vulnerability test, ...

Posted by FastLaneHosting on Mon, 17 Jan 2022 21:08:46 +0100

OSPF comprehensive experiment

OSPF comprehensive experiment Irregular area of OSPF 1. Non backbone away from backbone 2. Discontinuous backbone Better solution: Multi process two-way republishing; ospf multiple processes: multiple processes on a router. Each process has its own database, calculates routing entries independently, and calculates all non shared; Finally, all ...

Posted by Sangre on Mon, 17 Jan 2022 16:32:15 +0100

muduo network library net source code line by line analysis_ one

1 muduo::net::EchoServer class reference Collaboration diagram of EchoServer: [legend] Public member functionEchoServer (EventLoop *loop, const InetAddress &listenAddr)voidstart () Private member functionvoidonConnection (const TcpConnectionPtr &conn)voidonMessage (const TcpConnectionPtr &conn, Buffer *buf, Timestamp time) Pr ...

Posted by timmy0320 on Mon, 17 Jan 2022 14:57:42 +0100

WebView | network request method | HttpURLConnection | OkHttp | with instance based on Android

WebView brief introduction It is generally used to load some network interfacesAndroid is a high-performance browser with built-in webkit kernel, and WebView is a control encapsulated on this basis. WebView can be simply regarded as a browser control that can be nested on the interface! method WebChromeClient Assist WebView in handling Ja ...

Posted by metalenchantment on Mon, 17 Jan 2022 13:44:54 +0100

Chapter 21 of TCP/IP network programming

Understanding the asynchronous notification I/O model Synchronous and asynchronous The key of synchronization is the call and return time of function, as well as the start and completion time of data transmission. Data transmission starts at the moment when the send function is called, and the data transmission is completed at the moment ...

Posted by Boxerman on Mon, 17 Jan 2022 07:31:07 +0100

Reverse analyze the TCP private protocol of an app and realize batch data capture

1. Preface Steps: analyze Android global Java obfuscator, analyze TCP private protocol, and write socket script to realize data capture The analyzed app is here https://wwo.lanzouy.com/ifKPbytn9mh password:fhj0 This analysis process is limited to learning and use. Do not use it for illegal purposes. If the reader uses it for illegal purpo ...

Posted by husslela03 on Mon, 17 Jan 2022 04:42:52 +0100

Netty learning notes NIO basics-2

1. Preface Notes: Netty teaching based on dark horse, video address: Black horse Netty 2. Network programming (single thread) 1. Block When there is no data readability, including data replication, the thread must block and wait, which will not occupy the cpu, but the thread is equivalent to idleA 32-bit jvm has 320k threads and a 64 ...

Posted by wkoneal on Sun, 16 Jan 2022 22:58:44 +0100

Routing and switching technology

introduction This is my first blog. My writing is limited. I hope you will forgive me. Based on my final comprehensive experiment, I will tell you what routing and switching technology teaches and what we should learn. This comprehensive experiment is based on Huawei ENSP Completed. Experimental requirements The topology diagram is as f ...

Posted by basheer12m on Sun, 16 Jan 2022 19:51:38 +0100

docker basic network - various uses and differences of host, none and bridge

docker network Docker network can be divided into container network on a single host and network across multiple hosts docker network type View docker's native network [root@docker01 ~]# docker network ls NETWORK ID NAME DRIVER SCOPE 68f4c1f9f020 bridge bridge local ...

Posted by Elangler on Sun, 16 Jan 2022 19:03:29 +0100