Skip to content

Commit

Permalink
added always randomized randid to avoid detections
Browse files Browse the repository at this point in the history
  • Loading branch information
xyba1337 committed May 11, 2023
1 parent 5251998 commit 73c97e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions config.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
misc:
threads: 20 # Number of threads to use for sending messages
lang: "en" # Language to use for Omegle (en, de, es, fr, and so on...) -> "Alpha 2"-> https://www.nationsonline.org/oneworld/country_code_list.htm
threads: 100 # Number of threads to use for sending messages
lang: "de" # Language to use for Omegle (en, de, es, fr, and so on...) -> "Alpha 2"-> https://www.nationsonline.org/oneworld/country_code_list.htm
channel_type: "text" # Text/Cam
show_typing: true # Shows the "Typing..." message to the user on the other end before sending the message
proxy:
use_own: true # "true" if using own proxies, "false" if scraping proxies
type: "http" # http/socks4/socks4a/socks5
timeout: 10 # Proxy timeout in seconds
timeout: 25 # Proxy timeout in seconds
message:
delay: 2 # Delay in seconds between each message
use_emoji: true # Adds a random emoji to the end of each message
delay: 1 # Delay in seconds between each message
use_emoji: false # Adds a random emoji to the end of each message
use_prefix: false # Adds a random string to the end of each message
use_suffix: false # Adds a random string to the start of each message
delay_after: 2 # How long until disconnect after the message has been sent
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def grabCCparam(self, s: requests.Session) -> str:
def connectToServer(self, s: requests.Session, ccParam: str) -> str:
# Connect to server
if ccParam is not None:
characters = string.ascii_uppercase + string.digits
characters = ''.join(c for c in string.ascii_uppercase + string.digits if c not in 'IO')
randid = ''.join(random.choice(characters) for i in range(7))

if self.channel_type == "cam":
Expand Down

0 comments on commit 73c97e4

Please sign in to comment.