mirror of
https://github.com/AsamK/signal-cli.git
synced 2026-09-01 06:28:11 +00:00
Updated Registration with captcha (markdown)
parent
432aacbb6c
commit
dac0a9ba47
@ -11,6 +11,22 @@ Check the console in the developer tools for a redirect starting with `signalcap
|
||||
Everything after `signalcaptcha://` is the captcha token.
|
||||

|
||||
|
||||
Using Linux with Firefox, you are prompted what program to open the link with. You can create the following python file, browse to it in Firefox, and select it. This scirpt will output the captcha link to /tmp/captcha.txt
|
||||
|
||||
```
|
||||
#!/usr/bin/python3
|
||||
from sys import argv
|
||||
|
||||
def write_file(content,file):
|
||||
fh = open(file,'w')
|
||||
fh.write(content)
|
||||
fh.close()
|
||||
|
||||
write_file(str(argv[1]), "/tmp/captcha.txt")
|
||||
|
||||
```
|
||||
|
||||
|
||||
Then execute the `register` command again with the `--captcha` argument (https://github.com/AsamK/signal-cli/blob/master/man/signal-cli.1.adoc#register)
|
||||
|
||||
```
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user