Groups | Search | Server Info | Login | Register
Groups > alt.privacy.anon-server > #93649
| From | Gabx <dogfromhell666@mail2tor.com> |
|---|---|
| Newsgroups | alt.privacy.anon-server |
| Subject | Re: mail2usenet |
| Date | 2025-03-20 07:38 +0100 |
| Organization | Victor Hostile Communication Center |
| Message-ID | <m41reoFluujU1@mid.individual.net> (permalink) |
| References | <vrbv31$1jebr$1@paganini.bofh.team> <vrc1ok$1jh1c$1@paganini.bofh.team> <vrc533$1jnqr$1@paganini.bofh.team> <a8b813cec1.1742417380@eqxkb.yj> |
Mini Mailer wrote:
> I am not aware of that, because a hashcash[1] token means that a user
> whishing to post via an m2n has to generate a token, which takes some
> time, to avoid spam, and then the m2n would check that token, and if
> it is valid the article gets postet.
def generate_hashcash(resource, bits=HASHCASH_BITS):
version = "1"
date = time.strftime("%y%m%d%H%M%S", time.gmtime())
rand =
''.join(random.choices("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
k=8))
counter = 0
target = "0" * (bits // 4)
while True:
stamp = f"{version}:{bits}:{date}:{resource}:::{rand}:{counter}"
hash_val = hashlib.sha1(stamp.encode('utf-8')).hexdigest()
if hash_val.startswith(target):
return stamp
counter += 1
hashcash_token = generate_hashcash(from_addr)hashcash_token =
generate_hashcash(from_addr)
That said, i modified my python script also adding a function def
renew_tor_identity(): but my posts are sent but not accepted 441 Too
many errors for your IP.
Gabx
Back to alt.privacy.anon-server | Previous | Next — Previous in thread | Find similar
mail2usenet Gabx <victor@domain.invalid> - 2025-03-17 07:12 +0000
Re: mail2usenet Nobody <Nobody@nowhere.not> - 2025-03-17 07:36 +0000
Re: mail2usenet carltonH@not-giggles.com - 2025-03-17 09:26 -0500
Re: mail2usenet The Holy Ghost <the_holy_ghost@heaven.invalid> - 2025-03-17 20:15 +0000
[Spam] Re: mail2usenet Nomen Nescio <nobody@dizum.com> - 2025-03-17 09:56 +0100
Re: mail2usenet S.A. <personne@null.domain> - 2025-03-17 14:02 +0000
Re: mail2usenet D <noreply@mixmin.net> - 2025-03-17 15:18 +0000
Re: mail2usenet Stefan Claas <fgrsna.pynnf@vagrearg.eh> - 2025-03-18 12:13 +0100
Re: mail2usenet Gabx <personne@zero.null> - 2025-03-18 14:13 +0000
Re: mail2usenet Stefan Claas <fgrsna.pynnf@vagrearg.eh> - 2025-03-18 15:59 +0100
Re: mail2usenet Gabx <personne@zero.null> - 2025-03-18 15:56 +0000
Re: mail2usenet Mini Mailer <noreply@mini.mailer.msg> - 2025-03-19 20:50 +0000
Re: mail2usenet Gabx <dogfromhell666@mail2tor.com> - 2025-03-20 07:38 +0100
csiph-web