Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This small tool will help you to increase your blog view traffic with Differnet
2) stem library
3) Python3

# Tested on kali Linux
# Tested on kali Linux, Pop OS

works only on Linux

Expand All @@ -22,11 +22,15 @@ Linux

`apt-get install tor`

Now open tor configuration file it is usually located in /etc/tor/torrc and uncomment following lines.
Set your Password for Tor

`tor --hash-password "ThePassCode"`. It will give a hashcode for the string "ThePassCode", Copy the Hashcode.

Now open tor configuration file it is usually located in /etc/tor/torrc and uncomment following lines. And edit the `HashedControlPassword 16:` attribute.

`ControlPort 9051`

`HashedControlPassword "your password"`
`HashedControlPassword 16:<Put the previously copied hashcode here>`

Save the file and exit.

Expand All @@ -49,11 +53,11 @@ If you are using both python version on single machine use pip3 for python3

`python3 breakfold.py`

`enter your tor password from torrc file`
`enter the tor password what you set earlier (for example: "ThePassCode")`
Copy link

@maximilian-V maximilian-V Dec 25, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'that you set earlier' would be perfect, but thanks a lot for your contribution!


`enter blog address with protocol`
`enter blog address with protocol (for example: https://abstractblog.blogspot.com/paper1.html)`

`enter number of views you want`
`enter number of views you want (for example: 5)`

`Now blog will be visited with different ip and User-Agent`

Expand Down
4 changes: 2 additions & 2 deletions breakfold.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
By chaskar_shubham\033[00m
""")

#tor_password = input("\033[92m Enter your tor password: \033[00m")
tor_password = input("\033[92m Enter your tor password: \033[00m")

address = input("\033[92m Enter blog address: \033[00m")

Expand All @@ -50,7 +50,7 @@ def renew_connection():

with Controller.from_port(address="127.0.0.1", port = 9051) as controller:

controller.authenticate(password="") #password can be found in torrc file(HashedControlPassword)
controller.authenticate(password=tor_password) #password can be found in torrc file(HashedControlPassword)

controller.signal(Signal.NEWNYM)

Expand Down