How to change the computer IP address limit to vote on the list

I believe you will receive the link from your friends. Open it and take a look. Oh, you need to vote. After voting, a page pops up (Congratulations, you have successfully voted), when you click again, you find that, aha, your IP (***.***.***.***) has already voted No duplicate voting is allowed. At this time, we might think, can we break through the ip address restrictions to swipe tickets? Today, the editor will teach you how to solve this problem!

Tools/Materials

computer

Change ip tool

Insert picture description here

Method/Step

1. The main realization of the system is to break through the IP limit to swipe tickets. Among them, the IP collection module is responsible for crawling the proxy IP from the Internet and placing it in the blocking queue. This task will be executed regularly. After that, the voting module obtains the IP from the blocking queue, sets it, and then votes.

2. The system uses HttpClient + JSoup + multi-threading to complete the voting, HttpClient is used to vote, JSoup is used to parse the page, and multi-threaded technology is used to separate tasks, making the division of labor more clear. The producer consumer model is used, which is implemented directly using BlockingQueue.

3. The IP collection module mainly crawls the IP proxy information from the Internet and puts the information into the blocking queue, so that the IP can be forged and voted multiple times.

The voting module puts the IP information into the blocking queue from the IP collection module, sets up our IP proxy, finds the voting entry address, and then performs the voting operation.

The IP information module mainly encapsulates the crawled IP information to facilitate other modules to operate.

4. In fact, we can use some software to achieve the effect of automatically changing the IP address and brushing the ticket. Download and use our IP tool, select the node link after running, so that the program will automatically replace the proxy to refresh IE. The local ip address will change and we will take advantage of this time to vote. Although manual operation is required, the efficiency has been greatly improved.

Guess you like

Origin blog.csdn.net/weixin_43795605/article/details/108471551