-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Baccount/download_tor
Large refactor and lots of new features
- Loading branch information
Showing
7 changed files
with
742 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ | |
|
||
# Python Cache | ||
/**/__pycache__ | ||
README.md | ||
.DS_Store | ||
server/private_key |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# AnonChat - Secure Terminal Chatroom Over Tor Onion Service | ||
|
||
AnonChat is a secure, anonymous, and terminal-based chatroom application that operates over the Tor network. With AnonChat, you can communicate with others in a private and encrypted manner, ensuring that your conversations remain untraceable and protected from prying eyes. | ||
|
||
## Key Features | ||
|
||
- Secure and anonymous communication over the Tor network | ||
- Terminal-based interface for a unique and intuitive experience | ||
- Strong encryption to protect your conversations | ||
- Easy to use and fast-loading interface | ||
|
||
## Getting Started | ||
|
||
AnonChat can be installed and run on most operating systems, including macOS, Linux and Windows. To get started with AnonChat, simply follow these steps: | ||
|
||
1. Install the Tor on your computer. | ||
2. Clone this repository to your local machine using the following command: | ||
|
||
`git clone https://github.com/Baccount/Anon_Chat.git` | ||
|
||
`pip install -r requirements.txt` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,27 @@ | ||
from client.client import Client | ||
#from download_tor import start | ||
|
||
# downlaod to support work in progress | ||
|
||
client = Client() | ||
client.start() | ||
#start("macos") | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
try: | ||
client = Client() | ||
client.start() | ||
except KeyboardInterrupt: | ||
# clear the terminal screen | ||
print('\033[2J') | ||
exit(0) |
Oops, something went wrong.